Dice Matrix is a puzzle made of several dice. The rules of this puzzle are as follows.
Dice with six faces as shown in following figure are used in the puzzle.
The direction of each die is also shown as in the following figure initially.
The dice are arranged in n rows and m columns. The following figure shows a 3 * 3 dice matrix.
Each time you can select a row or a column to rotate.
You can rotate any angle you like.
All the dice in that row/column must be rotated the same angle in the same direction.
The dice can only be rotated perpendicular to the row/column. You can't rotate the dice along the row/column. (You can see the sample for more details.)
Given the target top faces of a dice matrix, your task is to find the minimum steps from the initial configuration to the target one.
Input
Standard input will contain multiple test cases. The first line of the input is a single integer T (1 <= T <= 2000) which is the number of test cases. And it will be followed by T consecutive test cases.
The first line of each test case contains two integers n and m (1 <= n, m <=4, n * m <= 10), indicating the number of rows and the number of columns of the dice matrix. The next n lines will contain m integers separated by one space each, which are between 1 and 6 inclusive, indicating the target top faces of the dice matrix.
Output
If you can make it to the target result in 5 steps, print the number of minimum steps in one line; otherwise print the word "Impossible" on a single line.
Sample Input
5
2 2
2 1
2 1
2 2
6 1
6 1
1 2
2 2
1 1
1
2 2
1 3
2 4
Sample Output
1
1
2
0
Impossible