#5706. CSES2208 另一个游戏

0

CSES2208 另一个游戏

Another Game

There are n heaps of coins and two players who move alternately. On each move, a player selects some of the nonempty heaps and removes one coin from each heap. The player who removes the last coin wins the game. Your task is to find out who wins if both players play optimally.

Input

The first input line contains an integer t: the number of tests. After this, t test cases are described: The first line contains an integer n: the number of heaps. The next line has n integers x_1,x_2,\ldots,x_n: the number of coins in each heap.

Output

For each test case, print "first" if the first player wins the game and "second" if the second player wins the game.

Constraints

1t21 \le t \le 2 \cdot 10^5$

1n21 \le n \le 2 \cdot 10^5$

1xi1091 \le x_i \le 10^9

thesumofallnisatmost2105the sum of all n is at most 2 \cdot 10^5

Example

Input

3
3
1 2 3
2
2 2
4
5 5 4 5

Output

first
second
first