You are given a positive integer $$$n$$$.
Your task is to find a permutation $$$p$$$ of size $$$n$$$ that satisfies the following conditions:
Here $$$\operatorname{gcd}$$$ denotes the greatest common divisor.
A permutation of length $$$n$$$ is an array consisting of $$$n$$$ distinct integers from $$$1$$$ to $$$n$$$ in arbitrary order. For example, $$$[2,3,1,5,4]$$$ is a permutation, but $$$[1,2,2]$$$ and $$$[1,3,4]$$$ are not permutations.
Output any valid permutation that satisfies these conditions. If a valid permutation does not exist, output $$$-1$$$ instead.
The first line contains the number of test cases $$$t$$$ ($$$1 \le t \le $$$ $$$10 ^ 3$$$). The description of the test cases follows.
A single line of each test case contains a single integer $$$n$$$ ($$$2 \le n \le 2 \cdot 10^{5}$$$).
It is guaranteed that the sum of $$$n$$$ over all test cases does not exceed $$$2 \cdot 10 ^ 5$$$.
For each test case, output any valid permutation. If multiple solutions exist, output any one of them. If no valid permutations exist, output $$$-1$$$ instead.
226
-1 4 1 2 5 6 3