Problem Statement
Alice and Bob are going to play a variant of the traditional rock-paper-scissors game. Their game is played using cards. Each card shows one of the three pictures: a rock, a paper, or scissors. There is a sufficient supply of cards of each type. Bob has already chosen a sequence of cards and he has arranged them into a row, face down. It is now Alice's turn to do the same. Once she does that, they will use the two sequences of cards to play the game: For each i, Alice's i-th card and Bob's i-th card will be revealed and compared using the standard rules of rock-paper-scissors. The winner of each such game gets win points and the loser gets lose points. In case of a draw, each player gets tie points.
Alice has noticed that somebody has marked Bob's cards.
Using those marks she can tell which cards have the same picture but she has no idea what that picture is.
You are given this information as a
Alice wants to surprise Bob by giving an accurate prediction: She will announce her final score, then she will lay down her sequence of cards, and finally they will reveal all cards, add together all the scores, and presto: Alice's final score will match the score she announced at the beginning.
You are given the
Definition
- Class:
- RockPaperScissorsMagic
- Method:
- count
- Parameters:
- int, int, int, int[]
- Returns:
- int
- Method signature:
- int count(int win, int lose, int tie, int[] card)
- (be sure your method is public)
Constraints
- The number of elements in card will be between 1 and 1,000, inclusive.
- Elements in card will be between 0 and 2, inclusive.
- win, lose,and tie will be between 0 and 1,000, inclusive.
Examples
2
0
1
{0,1,2}
Returns: 3
There are 2 points for a win, 0 for a loss, and 1 for a tie. Bob has played three different cards. In this setting there are three ways how Alice can perform her trick. In each of the ways she will announce that she will score 3 points. Then, she will play three cards of the same type.
2
0
1
{0,0,0}
Returns: 6
The scores for win/loss/draw are the same as in Example 0 but now Bob has played three cards of the same kind. Alice should announce that she will score 3 points, and then she should play three distinct cards. There are 3! = 6 ways in which Alice can order the cards she plays.
0
0
0
{1,0,2,2,2,0}
Returns: 729
514
451
145
{0,0,0,0,0,1,1,1,1,1,1,2,2,2}
Returns: 0
3
6
9
{0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2}
Returns: 2336040
514
451
145
{0,0,0,1,1,1,1,1,1,2,2,2,2,2,2}
Returns: 116100
732
732
732
{2,1,1,2,2,2,1,2,1,1,1,1,0,2,0,1,1,1,1,2,0,2,2,1,2,2,0,1,2,2,2,2,0,1,1,1,2,2,0,0,1,2,1,1,0,1,1,2,1,1,1,2,2,2,2,2,2,0,2,2,0,0,1,1,2,0,0,2,1,1,1,1,0,1,0,0,1,2,0,1,2,2,1,2,1,2,0,0,1,2,2,2,1,0,1,1,0,1,1,0,1,2,0,1,0,1,1,2,0,2,0,2,1,2,1,1,1,1,1,2,2,0,2,2,2,2,0,0,2,1,0,0,2,2,2,0,0,2,2,0,1,1,2,2,1,1,0,0,2,1,2,1,2,2,1,1,1,1,1,0,0,0,1,2,0,0,0,0,0,1,1,2,0,1,2,0,1,1,0,0,0,0,1,2,0,2,2,0,1,2,1,0,0,1,0,0,2,1,1,0,0,1,2,0,2,2,2,2,0,0,0,2,2,0,0,0,0,1,1,0,2,2,0,1,1,0,2,2,1,1,0,2,0,0,1,2,1,0,1,0,2,1,1,2,1,1,0,1,2,1,0,1,0,1,2,1,2,0,1,1,2,0,0,1,1,0,1,0,1,2,2,0,2,1,2,1,2,1,2,2,0,2,2,0,0,0,2,1,2,2,0,1,0,2,0,1,1,1,0,0,1,2,1,2,1,1,1,0,2,1,2,2,0,1,2,0,1,0,0,0,1,2,2,2,0,2,0,2,0,1,1,2,1,1,2,1,1,1,2,0,2,1,2,0,0,1,1,0,2,2,0,2,0,1,1,2,1,1,2,0,0,1,1,2,1,2,1,1,1,1,1,0,0,1,2,1,2,1,1,0,1,2,0,0,1,1,1,0,1,2,1,0,0,1,0,2,1,0,0,1,1,2,2,1,1,2,0,0,2,1,2,1,0,2,0,1,0,2,1,2,2,0,1,0,1,1,2,1,2,2,0,0,0,2,2,0,2,1,0,2,1,1,2,1,2,0,0,0,0,0,2,2,0,0,1,1,2,1,1,0,1,0,1,0,1,1,1,2,2,2,0,1,2,2,1,1,2,2,2,0,1,1,2,2,2,2,0,1,0,0,1,2,0,0,2,0,1,1,2,1,2,2,1,1,1,2,1,2,2,1,0,0,2,0,1,0,0,0,2,0,1,1,0,2,1,2,0,0,0,1,0,0,2,2,1,2,0,1,0,1,2,2,0,0,0,1,2,2,1,2,2,2,1,2,2,0,1,2,0,0,2,0,1,2,1,2,2,0,0,2,0,2,0,1,0,1,2,2,2,2,0,2,2,1,1,0,2,0,0,0,2,0,2,1,0,1,0,1,1,1,1,2,0,1,0,2,0,1,1,0,0,0,0,2,2,2,2,0,0,1,2,1,2,1,2,2,0,0,1,1,1,1,0,1,1,0,0,0,0,1,0,2,2,2,0,1,2,2,2,2,1,0,1,1,0,0,0,1,0,0,1,2,1,0,0,2,0,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,0,2,1,1,0,0,2,1,2,1,2,1,2,0,1,2,2,0,0,2,0,1,2,0,1,1,1,2,1,1,1,1,1,0,2,1,1,0,2,1,1,0,2,2,1,1,1,1,0,2,0,1,0,2,1,0,1,0,1,0,2,1,2,2,1,2,1,2,1,2,0,0,2,2,1,1,0,0,1,2,1,0,0,1,2,2,2,0,0,0,1,2,1,2,1,0,1,1,1,1,1,0,0,2,0,2,2,1,0,1,1,2,2,1,0,2,0,2,2,1,0,2,0,2,2,0,1,0,0,2,2,0,2,2,0,0,0,1,1,2,1,2,1,1,2,0,0,1,0,0,0,0,1,1,2,1,2,1,0,0,1,0,0,0,0,1,0,0,2,1,1,2,2,0,1,2,1,2,1,1,2,0,2,2,0,2,1,0,2,2,2,0,0,2,0,0,2,1,1,0,2,2,1,0,1,1,2,0,0,1,1,0,0,1,0,1,0,2,0,1,2,1,2,1,2,0,0,2,1,2,2,1,2,2,0,1,0,2,0,2,0,2,0,1,0,2,0,1,2,2,0,1,2,0,2,1,2,0,0,2,1,0,2,2,0,1,0,1,0,2,1,2,2,2,0,2,0,1,2,1,2,0,2,1,1,2,0,2,1,0,0,2,0,2,1,2,0,1,0,2,1,0,0,0,0,2,2,2,1,1,2,0,1,2,0,1,2,2}
Returns: 56888193
217
217
217
{1,0,2,0,2,2,1,2,0,1,0,0,2,1,2,2,2,1,0,1,2,1,0,2,2,2,0,0,2,1,2,1,1,0,0,0,0,0,0,1,2,2,1,1,2,2,0,0,1,2,2,0,1,0,2,2,0,1,2,2,2,1,0,1,1,0,2,1,2,1,0,1,1,1,0,0,0,1,2,1,2,2,0,2,2,1,1,2,1,1,0,1,0,0,2,0,2,0,0,0,0,2,0,2,2,2,0,0,0,2,2,0,2,2,0,2,0,1,0,0,0,2,1,1,0,0,2,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,1,1,1,2,0,0,1,1,0,2,2,2,0,0,0,2,2,0,0,2,0,2,2,1,0,1,1,2,0,0,2,2,0,1,1,0,1,2,1,1,1,1,1,1,2,2,2,1,2,0,1,1,0,1,2,1,1,2,0,1,0,0,2,0,1,0,2,1,2,2,2,2,1,2,1,1,1,0,2,0,2,0,1,0,2,1,2,2,0,0,0,2,0,0,0,0,2,0,2,2,1,1,2,1,1,2,0,0,1,1,0,1,1,2,1,0,0,0,2,1,1,2,1,1,2,1,1,1,0,0,1,2,1,0,2,1,1,0,0,2,2,2,0,1,2,0,0,1,1,0,2,2,0,1,2,2,0,0,0,0,2,2,2,2,2,0,2,0,0,1,0,2,2,0,1,0,1,1,2,0,2,0,2,2,2,2,2,1,2,0,0,2,1,2,0,0,2,1,2,0,2,0,2,2,1,2,2,2,1,2,1,0,2,0,1,2,2,1,1,0,2,0,1,0,0,0,1,1,2,0,2,0,1,2,2,2,1,1,0,0,0,0,0,2,1,2,0,2,1,2,0,0,0,0,2,0,0,0,1,2,2,1,0,0,0,2,0,2,2,0,2,1,0,0,2,2,1,1,2,2,2,2,0,0,0,0,1,2,1,1,1,2,2,2,0,0,1,2,2,2,2,1,0,1,2,0,1,0,1,2,1,2,0,0,2,0,0,1,0,0,2,1,1,1,2,1,1,2,2,2,0,1,2,2,0,0,1,2,0,1,1,0,1,2,1,0,1,1,0,1,1,1,2,0,0,0,0,2,1,2,2,1,1,0,1,1,1,0,1,0,2,1,0,0,1,1,1,2,2,2,1,0,2,1,1,1,2,2,1,0,0,2,1,0,0,2,0,1,1,0,1,2,1,2,1,2,1,1,0,0,1,1,2,0,1,2,0,0,2,1,0,2,2,0,2,0,0,2,1,1,1,2,2,2,1,1,0,2,0,2,1,0,0,1,1,2,2,0,2,1,1,2,1,2,0,1,1,1,0,2,0,0,1,2,1,0,0,0,2,1,0,0,2,1,0,2,1,1,0,2,2,2,2,2,1,2,2,2,2,1,0,1,1,2,1,1,0,0,1,1,0,2,1,0,1,1,2,0,2,2,0,1,2,2,2,1,2,0,2,0,2,2,2,0,1,2,0,0,1,2,2,1,0,0,2,0,2,0,0,1,2,1,1,0,2,1,0,2,1,0,1,0,1,0,1,1,1,2,1,2,2,0,1,1,2,1,0,2,2,1,1,2,2,2,1,0,2,1,1,1,1,0,2,1,2,1,1,1,0,2,0,2,0,0,1,0,2,2,0,1,2,2,0,1,0,0,0,0,1,2,1,0,2,2,2,0,2,0,0,1,1,1,0,1,0,0,2,0,2,2,0,1,2,0,1,1,1,2,2,1,2,1,2,1,1,2,0,0,2,1,0,1,0,2,2,1,0,1,1,0,2,1,0,2,1,2,0,1,0,1,2,0,1,2,0,2,0,2,0,1,2,0,2,1,0,2,0,2,0,1,2,1,0,0,1,2,1,1,2,0,0,2,1,1,1,1,0,0,2,0,2,2,1,2,2,0,2,1,0,1,1,2,2,2,1,1,1,2,0,0,2,0,1,1,1,0,2,0,0,2,1,0,2,2,2,2,1,0,0,0,0,1,0,2,2,0,0,1,0,2,0,2,1,0,1,1,2,1,2,2,2,0,1,2,0,0,0,2,0,1,1,2,1,0,2,1,1,1,1,0,1,0,2,0,1,2,2,2,1,1,1,0,2,1,0,1,1,0,1,0,0,0,1,2,1,2,1,2,2,0,2,2,2,2,2,1,1,0,1,0,2,0,2,0,0,2,0,0,0,0,1,1,0,2,2,0,1,1,1,2,2,2,1,2,2,0,0}
Returns: 18962731
548
548
548
{2,1,1,1,0,2,2,0,1,0,0,2,0,2,0,1,1,0,1,2,2,1,1,2,2,2,2,0,1,2,0,1,2,0,0,1,2,2,0,1,2,0,1,2,1,0,1,2,1,1,1,2,1,2,0,0,2,1,1,1,0,1,1,1,2,2,0,2,0,0,1,0,2,1,0,1,1,0,1,0,1,0,0,1,1,1,1,0,2,0,0,1,2,1,2,0,2,2,2,1,0,0,1,0,0,2,0,0,2,0,1,0,2,1,0,0,0,1,0,2,1,0,0,0,2,1,1,1,0,1,0,1,1,1,2,1,1,1,2,2,2,2,0,1,2,1,1,2,0,1,2,1,2,2,2,0,1,1,2,2,1,2,1,1,1,2,0,0,2,2,1,2,1,2,1,0,2,2,1,0,1,1,0,0,1,2,1,1,1,0,0,1,0,0,1,1,2,0,0,0,0,2,0,1,1,2,0,1,1,2,2,2,0,1,1,1,2,1,2,2,2,1,1,0,1,1,1,1,0,2,1,2,2,2,2,0,0,1,0,0,2,2,2,1,1,2,1,0,1,1,0,2,1,2,1,0,2,1,1,2,2,2,1,2,1,0,0,1,2,1,1,1,0,0,1,1,1,2,2,2,0,2,1,1,2,1,0,1,0,2,1,2,2,2,0,1,2,1,0,0,2,2,0,0,0,0,1,2,0,0,1,1,1,0,0,0,2,0,2,0,1,1,1,0,0,2,2,0,2,1,0,1,1,2,2,2,1,0,2,0,0,0,0,2,1,2,2,2,0,0,2,1,1,0,2,0,1,1,1,0,0,2,2,2,2,1,1,0,2,2,0,0,1,1,1,1,1,1,2,2,1,1,2,0,1,1,2,2,1,0,1,2,2,1,2,1,0,0,2,0,1,2,1,2,0,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,0,1,0,1,0,1,0,1,0,1,2,0,2,0,2,1,0,2,2,0,0,1,2,2,1,1,0,0,2,0,0,1,1,0,1,1,1,0,2,1,2,1,1,1,0,2,0,1,2,2,0,2,1,2,0,1,2,2,1,2,0,0,2,0,2,1,1,1,1,0,0,0,1,2,1,0,2,2,1,1,0,1,0,1,1,0,1,2,0,2,1,2,1,2,2,2,0,1,0,2,0,1,2,0,1,1,0,2,1,0,2,2,2,0,1,1,0,0,1,2,2,1,2,0,2,1,1,1,1,1,0,1,0,1,1,1,1,0,0,2,2,2,0,1,1,1,2,2,2,1,2,0,1,0,2,0,1,0,1,0,1,2,2,1,2,2,1,2,2,0,2,2,2,2,1,2,2,0,0,1,2,0,0,0,0,2,2,0,0,0,2,0,0,0,1,0,2,1,2,2,2,0,1,0,1,1,0,0,1,0,1,2,2,1,1,1,1,0,1,0,2,1,2,2,2,0,2,1,0,0,2,0,2,1,1,0,1,2,0,0,2,1,2,0,1,0,2,0,0,0,0,1,1,2,0,0,0,1,0,2,2,0,0,1,1,1,0,0,2,0,0,2,1,2,0,1,0,2,2,2,0,2,1,1,0,0,0,2,1,0,2,1,1,2,0,1,1,1,2,0,0,0,0,0,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,0,1,2,0,0,0,0,2,0,2,0,0,2,2,1,1,0,1,2,0,2,1,0,1,0,0,1,0,2,0,2,0,1,2,1,0,2,0,0,1,0,0,0,1,2,2,0,1,2,1,0,2,2,1,1,2,2,1,0,2,1,1,1,1,0,1,0,0,0,2,2,0,1,0,2,2,0,0,0,0,2,0,0,2,2,1,0,0,1,2,2,2,2,1,0,1,2,1,1,1,0,1,0,0,2,2,1,2,1,1,1,2,2,1,1,2,2,2,1,2,1,2,2,0,2,1,1,2,0,1,2,0,1,2,2,0,2,2,1,2,2,2,2,0,0,0,2,1,1,1,2,2,2,2,1,1,2,1,0,1,1,2,1,0,0,1,1,0,1,2,1,0,1,2,1,0,0,2,0,1,1,1,0,1,1,1,2,0,1,2,2,0,1,2,1,2,0,1,0,0,2,2,2,2,1,0,0,2,1,1,1,0,0,0,1,0,0,2,2,2,0,1,0,0,2,1,1,2,0,2,0,1,1,2,0,2,2,1,0,2,0,0,2,1,1,2,0,2,1,0,0,0,0,0,2,1,0,2,2}
Returns: 339654246
483
483
483
{2,0,1,2,0,0,0,1,1,1,2,2,2,2,2,1,2,1,2,2,0,1,2,0,1,2,1,1,1,0,1,0,1,1,0,0,2,0,0,0,1,1,0,1,1,2,0,0,0,0,1,2,1,1,0,0,0,2,0,1,0,1,0,1,0,0,1,0,0,1,1,1,1,0,2,2,2,1,0,2,2,1,2,0,0,1,2,0,1,1,2,1,1,1,2,1,1,1,2,1,1,0,2,2,1,0,1,2,2,2,1,1,0,0,2,2,1,2,2,2,0,0,1,0,1,0,1,1,1,0,0,1,0,0,2,2,2,0,0,2,0,2,0,1,1,0,1,0,1,2,2,0,0,2,1,1,0,1,2,1,1,0,1,1,1,0,2,2,0,1,1,2,2,1,1,0,2,1,0,1,2,1,0,2,0,0,1,1,0,1,0,0,2,1,2,0,1,1,1,0,2,0,1,2,0,1,0,2,2,2,2,0,1,2,1,0,1,0,1,1,2,0,1,1,2,1,0,2,0,0,1,1,2,0,2,0,1,1,0,0,0,0,0,2,2,1,1,2,1,2,0,1,2,2,0,2,0,0,1,1,0,0,1,0,2,1,0,1,1,0,1,1,2,1,1,1,1,2,2,2,2,1,1,2,2,0,0,1,1,0,0,0,1,0,0,0,0,2,2,2,0,2,1,0,2,1,0,2,0,2,2,2,0,0,0,0,2,2,0,1,1,2,1,1,0,1,2,0,2,2,2,0,2,0,0,0,0,0,2,2,2,2,1,2,0,2,0,1,0,2,1,1,1,0,2,2,2,2,2,0,2,1,1,1,1,1,0,1,1,0,0,0,2,1,0,1,2,1,2,1,0,2,0,0,1,0,0,2,1,0,1,0,2,0,2,1,0,2,1,1,0,0,0,1,0,1,1,0,1,0,1,2,1,0,2,0,1,2,0,2,2,1,2,1,1,2,1,0,0,2,2,2,1,0,2,1,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,2,0,0,0,1,1,0,2,0,0,2,1,2,2,1,2,2,0,2,1,1,0,2,0,0,0,2,1,1,0,1,0,1,0,0,1,2,0,0,0,1,2,0,1,2,0,0,2,0,0,0,1,2,2,1,0,1,1,2,0,0,2,1,1,0,0,1,2,1,0,2,0,2,1,0,1,1,1,0,2,0,0,1,0,1,1,1,1,0,0,1,0,1,0,1,2,0,0,1,1,2,0,2,0,1,0,2,1,1,2,0,0,0,0,2,2,2,1,2,0,2,1,2,1,2,2,1,2,2,1,1,2,2,1,0,0,1,1,1,1,0,0,1,2,0,2,0,0,1,0,2,2,0,2,0,2,2,0,1,2,1,1,2,0,0,0,1,2,2,2,0,2,2,0,1,2,1,0,2,1,1,0,0,0,2,0,1,1,2,2,1,1,2,0,0,2,0,0,1,0,0,2,1,2,0,2,2,2,2,0,1,1,0,0,2,0,1,1,2,1,0,2,1,0,1,0,2,0,0,1,1,1,1,1,0,1,0,1,2,2,1,2,0,2,2,1,2,2,2,0,1,0,0,1,1,0,1,1,2,0,0,1,0,1,1,0,2,1,2,1,2,1,0,0,1,2,2,0,0,1,1,1,2,0,0,1,0,1,1,2,2,2,0,0,1,0,1,1,1,2,0,2,2,2,0,0,0,0,0,0,0,0,0,2,0,0,2,2,1,1,1,1,0,1,1,1,0,2,0,1,1,2,1,2,0,0,1,1,0,0,2,0,0,1,0,1,0,1,1,1,0,2,0,1,1,1,0,0,0,2,0,2,0,0,2,1,1,2,1,1,1,1,2,1,0,0,0,1,1,1,0,0,0,1,2,2,0,2,1,0,0,1,1,1,2,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,2,2,0,0,2,2,2,0,1,1,1,0,1,0,0,1,2,1,1,0,2,2,0,1,2,1,2,0,0,1,1,1,2,1,1,2,2,1,0,2,1,2,0,0,0,0,0,0,2,1,1,2,2,1,1,2,1,0,1,0,2,1,2,2,2,0,0,2,1,1,2,2,1,2,2,2,0,1,2,0,0,0,2,1,1,1,2,1,1,1,0,2,2,0,2,1,2,0,1,1,1,0,2,0,0,0,2,2,2,1,1,0,0,1,2,1,0,2,2,2,1,0,2,0,0,0,1,1,2,0,2,1,0,0,2,0,0}
Returns: 18962731
243
243
243
{2,2,1,0,1,2,2,2,1,2,2,2,0,1,0,2,0,1,1,0,2,1,1,1,0,2,2,1,0,1,1,0,2,0,1,0,1,2,0,1,0,1,0,2,1,2,1,2,0,0,2,0,1,2,1,1,0,0,0,1,1,1,2,2,1,0,0,2,1,0,0,0,1,1,1,2,0,2,0,0,1,2,2,0,1,2,1,1,1,1,0,0,2,1,2,0,0,2,1,2,0,0,1,0,1,2,1,1,0,2,0,1,2,0,2,2,0,1,1,0,2,0,0,1,2,2,0,1,2,0,2,2,2,0,0,1,2,2,0,2,2,2,1,2,2,0,0,1,1,2,0,0,1,2,1,2,1,2,2,1,1,2,2,0,0,2,1,0,2,1,0,2,2,2,0,2,0,2,0,2,0,0,2,2,0,1,2,0,0,1,2,1,2,1,0,2,1,1,1,0,0,2,2,0,1,1,1,1,2,0,2,0,0,2,0,0,2,1,2,1,2,0,0,1,0,0,1,2,1,2,0,0,1,1,2,2,1,0,2,1,2,0,2,2,2,0,2,1,0,0,1,2,1,1,0,2,0,2,1,0,1,2,1,0,0,0,1,0,2,2,0,0,2,2,1,0,2,2,1,1,1,1,2,0,1,2,0,1,2,2,0,2,0,1,2,2,0,1,0,0,2,0,0,0,1,0,2,2,2,0,2,0,1,2,0,1,0,0,2,0,2,2,1,2,2,1,1,1,2,1,1,1,0,0,1,2,2,1,0,1,1,1,1,2,0,0,1,0,1,2,0,2,2,1,1,1,2,1,2,2,2,0,1,2,1,0,0,2,0,1,2,0,2,0,2,2,0,1,0,2,2,0,2,0,2,2,0,1,0,1,0,0,0,0,0,0,1,2,1,0,1,2,0,0,0,2,2,2,2,0,1,0,0,2,0,1,2,1,2,2,1,2,2,1,2,1,1,0,2,2,0,1,2,0,1,0,2,2,0,2,1,2,0,2,0,2,1,2,0,0,2,2,2,2,0,0,2,0,0,2,0,0,0,1,2,2,0,0,0,1,2,1,1,2,1,0,2,1,2,1,1,0,0,1,2,1,0,2,1,0,0,1,0,2,2,0,2,1,2,2,1,1,1,1,2,0,1,1,2,0,0,2,2,2,0,1,2,0,1,2,1,2,1,1,2,1,0,2,1,2,2,2,0,2,1,2,0,0,1,1,1,2,1,1,0,0,1,1,2,0,0,0,1,1,1,2,0,0,0,1,2,1,0,0,2,1,1,1,1,2,1,0,1,2,1,1,0,1,0,1,0,2,2,2,1,1,2,0,0,2,1,1,1,0,0,0,1,2,2,0,1,1,0,2,0,0,1,0,1,0,2,0,0,1,1,0,1,0,1,0,0,0,1,0,1,2,0,0,2,2,0,1,2,1,2,0,0,1,0,1,0,1,2,1,0,1,2,0,2,1,0,2,1,1,2,1,2,2,0,1,1,1,1,0,0,2,0,2,0,1,1,0,0,0,0,2,1,1,1,0,0,2,1,2,2,1,0,2,2,0,0,2,1,0,1,0,0,2,1,0,1,1,1,0,2,0,1,2,2,0,0,0,0,0,1,0,2,0,2,2,1,0,0,1,1,1,2,1,1,0,2,1,2,1,1,0,2,2,0,0,1,2,1,0,2,2,2,1,0,2,2,0,2,2,0,1,1,1,0,0,0,1,2,1,1,0,0,1,0,0,2,2,1,2,0,2,0,1,0,0,1,0,1,1,0,0,0,0,0,2,2,1,2,1,1,2,2,2,2,0,2,1,0,1,2,0,0,0,0,0,2,2,1,0,1,2,2,2,1,0,2,0,2,2,2,0,0,2,2,0,1,2,1,1,0,0,2,2,1,0,2,0,0,1,2,0,0,2,0,2,0,0,2,2,0,1,2,0,1,1,2,1,1,0,2,1,1,1,1,1,2,1,0,0,2,1,2,2,1,1,0,0,1,1,1,0,1,2,1,2,0,0,0,1,1,0,1,2,2,1,2,1,2,1,2,2,2,2,0,2,0,2,2,0,1,0,0,1,2,2,1,1,2,2,0,1,1,0,2,0,0,0,1,2,2,0,2,2,2,0,2,1,0,2,2,0,0,1,2,1,0,2,1,0,0,2,2,2,0,1,0,0,0,0,1,1,1,1,0,2,2,2,2,1,0,1,0,1,0,2,1,1,0,2,0,1,0,0,2,0,0,2,2,1,0,2,1,2}
Returns: 339654246
58
58
58
{1,0,1,2,1,0,1,2,0,1,2,1,2,2,0,1,1,0,0,1,0,1,0,1,1,2,0,0,1,1,1,1,1,0,1,0,2,2,0,2,0,0,2,2,1,0,1,1,0,1,0,0,2,2,0,2,0,1,0,0,0,0,2,2,0,1,2,0,0,1,2,2,2,0,2,1,0,2,1,0,0,1,1,0,1,2,1,1,2,2,2,0,2,1,0,1,1,2,2,1,0,2,0,0,0,0,1,1,0,1,1,2,1,2,0,0,0,1,1,2,0,0,1,0,2,0,2,1,0,1,0,0,1,2,2,0,0,2,1,1,1,1,2,1,1,0,1,0,2,2,0,0,2,0,0,0,2,0,1,2,0,0,1,2,2,0,2,1,2,0,0,2,2,1,1,0,2,2,1,2,0,0,2,1,0,2,1,1,2,0,2,0,1,2,2,2,0,2,2,0,2,0,2,1,1,2,1,1,1,0,2,0,2,0,0,1,1,2,1,1,0,2,1,0,0,1,0,0,0,2,2,0,0,0,2,0,1,0,1,0,2,0,1,1,1,2,1,0,0,2,1,2,0,1,1,1,1,0,0,1,0,1,1,2,0,0,0,0,0,2,2,1,1,1,0,2,1,0,1,2,0,0,0,0,0,1,0,1,1,1,1,2,1,0,1,2,0,1,1,2,0,2,0,0,2,1,1,0,2,1,2,0,2,2,2,1,2,1,1,2,1,2,1,0,0,1,0,2,1,1,1,2,0,2,1,1,2,0,1,2,0,0,1,2,1,2,0,2,1,2,1,1,2,0,2,0,2,2,2,2,0,0,0,0,2,2,1,1,0,1,2,2,2,0,0,1,1,1,0,1,0,1,0,0,2,0,0,1,2,0,0,2,0,1,0,2,0,1,1,1,2,0,1,2,1,2,2,2,0,1,0,1,0,2,1,1,2,2,0,0,0,0,2,1,2,1,2,2,0,1,2,1,0,1,1,0,2,0,1,0,0,0,2,1,2,2,1,1,1,1,1,0,1,2,0,2,1,2,1,2,2,0,1,1,2,2,1,2,1,1,0,2,2,2,2,1,1,1,0,0,2,1,2,0,1,1,1,1,0,2,0,0,0,2,0,1,2,2,1,0,2,1,0,2,1,2,2,2,2,1,1,0,0,1,0,1,0,2,0,1,1,1,0,2,2,2,2,0,0,2,0,0,1,1,1,1,0,1,0,0,2,0,0,1,0,1,0,1,2,2,2,0,1,2,1,1,0,2,0,2,1,1,0,0,1,0,1,1,0,1,2,1,2,2,2,0,0,1,1,0,1,1,2,1,2,2,1,1,1,1,1,0,0,0,1,1,2,0,2,0,2,0,1,2,0,0,1,1,1,1,0,1,1,2,2,2,0,0,0,0,0,2,0,2,1,0,2,0,1,2,0,0,0,0,0,0,2,0,0,1,2,1,1,2,1,0,0,2,0,1,1,2,2,1,1,0,2,0,0,0,2,1,1,1,1,2,1,1,1,0,2,2,1,0,1,1,1,1,1,2,2,2,1,2,0,1,0,1,1,2,1,0,1,0,2,2,1,0,0,0,1,0,2,0,0,0,2,1,1,2,2,0,1,2,1,2,0,1,0,2,0,2,0,2,0,1,2,1,1,2,2,1,1,1,0,1,0,2,1,0,2,1,1,2,2,2,0,0,1,1,1,1,1,2,1,0,0,2,1,0,0,0,0,0,1,2,1,1,2,2,1,2,0,0,2,0,2,0,1,1,0,2,0,2,2,0,2,1,1,1,1,1,0,1,0,2,0,1,1,0,0,0,0,0,0,1,0,0,1,2,0,0,1,0,0,1,2,0,0,1,0,0,2,0,2,2,1,1,1,0,2,1,0,1,2,2,2,0,1,2,0,0,2,1,1,1,2,1,1,2,0,0,0,1,1,0,1,0,0,0,1,1,2,1,2,0,2,1,1,0,2,2,2,2,1,2,2,0,0,0,1,2,0,2,1,0,2,2,0,1,0,0,1,2,1,0,0,2,0,0,0,0,0,0,2,2,0,0,1,1,1,0,1,2,1,0,2,0,0,2,0,2,2,2,2,2,2,1,1,0,2,0,1,1,0,0,1,2,0,1,1,1,0,0,2,2,0,1,2,2,1,2,0,1,1,0,2,1,0,0,2,2,2,0,2,0,0,0,1,0,2,1,0,1,1,2,1,1,0,2,0,0,0,1,0,2,2,2,1,1,1,1,0,2,1,0,1}
Returns: 113218082
492
492
492
{0,2,2,1,1,2,1,1,1,1,0,2,1,0,2,0,2,2,2,2,1,2,2,2,1,1,0,1,0,0,1,2,1,2,1,0,0,0,2,0,2,0,2,0,0,1,2,0,0,2,2,0,1,2,1,0,0,2,0,2,0,1,2,0,0,0,1,2,1,0,1,2,2,2,0,2,1,0,0,2,0,1,0,0,2,2,1,1,1,1,1,1,1,1,0,0,0,0,2,1,0,2,1,2,2,1,1,1,0,2,2,2,2,0,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,0,2,2,1,1,2,2,1,1,0,2,2,0,0,2,2,0,1,2,2,0,0,1,2,2,0,2,1,2,1,1,2,1,2,2,1,1,1,2,0,1,2,0,1,0,2,1,1,1,2,1,1,2,0,0,1,0,0,2,2,2,0,1,1,0,2,0,2,2,0,2,2,2,0,0,0,0,1,2,0,2,1,0,2,1,2,1,2,1,2,1,1,0,2,2,2,1,2,0,1,1,0,2,2,2,0,1,2,1,0,2,0,2,2,0,1,1,1,0,1,1,0,0,0,0,1,1,1,1,0,2,0,0,1,0,1,0,0,2,2,2,2,0,1,1,1,2,2,2,0,0,0,0,2,1,2,2,2,2,2,2,2,0,1,0,0,1,2,0,2,2,1,1,0,2,0,1,0,1,1,2,2,1,1,0,2,2,2,1,2,0,0,2,1,0,1,0,0,1,0,0,1,2,0,1,0,2,0,0,0,2,2,1,1,2,2,2,1,0,0,0,1,1,0,0,0,0,2,1,0,1,2,0,1,1,2,1,2,0,0,0,0,1,2,1,0,1,2,2,2,2,1,2,2,0,0,0,2,0,2,2,1,2,2,1,2,2,2,1,1,1,2,0,1,0,1,2,0,0,1,0,1,2,2,2,1,2,0,0,0,2,0,0,2,0,1,2,1,0,1,0,1,0,0,1,2,1,1,1,1,2,2,0,1,0,2,2,1,0,2,2,1,2,0,1,1,2,1,1,2,2,2,1,2,1,0,0,0,0,0,2,2,1,0,0,2,1,1,1,1,2,2,2,2,2,1,2,2,2,0,2,1,2,1,1,1,1,1,0,2,0,1,2,2,0,2,2,1,1,0,0,0,0,0,2,0,1,0,0,2,1,1,2,0,1,1,2,2,0,1,0,2,2,2,1,0,0,0,1,2,1,1,0,2,2,2,1,1,2,2,2,2,2,0,0,1,2,2,1,1,2,2,0,2,0,2,2,0,0,1,0,2,2,2,1,1,2,0,1,0,1,0,1,2,2,1,2,1,0,0,1,1,2,1,2,0,1,2,2,2,2,2,1,0,0,0,0,2,2,0,1,0,2,1,0,0,2,2,1,1,0,1,2,2,0,0,0,2,2,0,2,0,1,1,2,0,1,0,2,0,2,2,2,1,2,2,0,0,2,1,0,1,0,0,1,2,2,0,0,1,1,1,1,0,0,2,2,1,0,1,2,2,2,0,1,2,1,1,0,1,2,0,2,2,0,2,2,0,1,0,1,1,0,0,2,1,0,2,1,0,1,0,0,0,1,2,2,0,2,0,0,0,0,0,2,0,1,0,1,1,1,1,2,0,0,0,2,2,0,1,1,1,0,2,2,0,2,2,1,2,1,2,2,2,2,2,2,1,0,2,0,1,2,1,1,2,1,2,1,2,1,0,2,0,1,2,2,1,1,2,1,2,0,1,1,1,0,0,1,0,0,2,2,0,1,0,2,0,0,2,2,0,0,0,2,1,2,0,2,2,2,0,2,0,1,2,2,2,0,0,2,2,1,2,2,1,1,2,1,0,0,0,0,1,0,2,0,1,1,0,0,2,0,1,2,0,2,1,1,1,2,1,0,0,0,1,0,0,2,0,1,2,2,2,1,0,2,2,2,0,1,2,0,1,1,2,0,2,0,2,2,1,2,2,2,2,0,0,0,2,2,2,2,2,1,1,0,1,0,1,2,1,1,1,0,2,0,1,2,1,2,0,2,2,0,1,2,2,0,2,2,0,0,1,2,0,2,0,2,0,1,0,1,0,0,2,1,0,2,2,1,1,1,2,2,1,0,2,2,2,2,0,1,1,1,2,1,0,2,1,2,2,2,2,1,2,0,2,2,0,0,2,2,1,2,0,0,2,2,1,0,1,1,2,2,2,1,2,2,0,1,2,1,0,2,2,0,1,2,1,1,0,0,2,0,2,1,1,2}
Returns: 339654246
794
794
794
{1,0,1,2,0,1,1,2,0,2,1,0,1,1,1,1,0,0,2,2,1,0,0,2,1,0,0,2,1,1,1,2,0,1,2,0,2,0,1,1,0,2,0,2,1,1,1,2,0,1,1,0,1,1,1,2,2,2,0,0,1,0,2,0,2,2,1,2,2,2,0,0,2,0,1,0,2,2,2,2,2,2,1,1,1,2,0,0,0,2,2,1,0,1,2,2,0,1,2,1,2,1,2,2,2,1,2,0,1,2,0,1,2,0,1,2,1,1,0,0,0,2,0,2,2,0,2,1,2,2,1,1,0,0,0,1,1,2,0,0,2,0,2,2,2,0,2,0,1,2,2,1,2,1,0,2,2,2,2,2,0,2,0,0,0,1,0,2,0,1,0,0,2,1,2,2,0,2,0,1,0,2,2,2,0,0,0,2,0,1,2,0,1,0,2,2,0,0,2,0,0,2,2,1,1,0,1,1,0,1,1,2,0,0,0,2,2,0,2,1,2,2,0,1,2,1,0,0,2,2,1,2,0,0,1,1,2,2,2,1,2,0,0,2,2,0,1,2,1,2,1,2,2,2,1,1,1,2,0,1,1,1,2,1,0,2,1,0,2,2,2,2,2,2,2,2,2,1,0,2,1,2,0,1,2,1,0,2,0,2,1,2,1,1,0,2,0,1,0,2,2,2,1,0,1,2,1,0,2,2,1,2,2,0,2,2,2,0,2,0,1,1,2,0,1,1,0,1,0,1,0,1,0,2,1,0,2,0,0,0,2,2,1,2,1,2,1,2,2,1,1,2,2,2,0,1,2,0,2,1,2,0,0,0,0,0,0,2,1,0,1,2,2,0,2,2,1,0,0,1,0,0,0,0,1,1,2,2,2,1,1,2,0,2,1,2,2,2,0,2,1,2,0,1,2,2,1,1,1,1,0,2,0,0,2,0,2,2,2,0,0,0,1,2,0,2,1,2,2,1,0,2,1,1,2,0,0,0,0,1,1,0,2,1,1,2,0,1,0,0,0,1,2,2,0,1,2,2,2,2,2,1,1,0,0,1,2,2,0,1,0,0,2,0,2,1,2,0,1,2,0,2,2,1,2,2,2,0,1,0,1,1,1,0,0,1,2,2,1,1,1,1,0,2,0,1,0,2,0,0,2,1,0,0,1,0,0,1,2,1,1,2,2,2,1,0,2,0,2,0,1,2,0,2,1,1,2,2,2,0,2,2,1,2,1,2,0,0,0,0,0,0,1,2,2,1,1,1,2,2,1,0,1,1,2,0,1,0,2,1,0,0,1,1,1,0,2,0,2,2,0,0,1,2,1,0,2,2,2,2,0,1,2,1,1,0,1,0,2,0,1,0,1,0,1,1,2,1,2,2,1,0,2,1,1,1,0,0,0,0,2,0,1,2,0,0,2,0,1,1,1,2,0,2,1,0,0,0,1,2,1,0,1,1,0,2,2,0,0,2,2,1,2,0,0,0,0,1,2,1,2,0,2,2,0,0,1,2,2,0,2,1,2,0,0,1,1,0,0,1,1,2,0,0,1,0,0,2,2,0,1,0,2,0,0,2,1,2,2,1,0,1,1,2,2,2,2,0,1,1,0,2,1,0,2,2,0,0,1,2,1,1,1,2,2,2,0,2,0,0,0,1,1,2,0,0,0,0,1,2,0,2,1,2,2,2,1,0,2,0,2,1,2,0,2,0,2,1,2,1,1,2,0,2,2,1,1,1,0,2,0,2,2,2,2,2,2,0,1,1,2,0,0,1,1,0,0,2,1,2,0,0,2,1,1,1,0,2,0,2,1,0,0,1,0,2,1,2,2,2,0,2,1,2,2,1,2,1,2,2,2,2,2,1,0,2,0,2,1,0,1,1,2,2,2,2,0,1,1,0,1,0,2,2,1,2,2,1,2,2,0,1,2,2,2,2,2,2,1,1,0,1,2,0,2,2,1,2,2,2,0,1,1,2,1,1,0,2,1,0,0,1,1,2,1,2,2,0,2,2,2,2,1,0,1,2,2,2,0,1,0,0,1,1,1,2,2,0,1,2,2,0,2,0,2,0,2,0,0,0,0,1,0,1,0,0,2,0,0,2,0,1,0,2,2,0,0,1,0,1,2,0,2,1,1,1,1,0,1,2,0,2,0,1,1,0,1,2,0,0,0,2,2,2,2,1,1,2,1,1,1,1,2,2,2,2,0,0,2,0,1,0,2,2,2,2,1,1,0,1,1,0,0,1,1,2,2}
Returns: 113218082
882
882
882
{0,0,0,0,0,2,1,2,0,2,1,1,0,2,1,1,1,0,1,2,0,0,0,2,1,0,0,1,2,1,0,1,0,2,2,2,1,0,2,0,0,1,1,1,1,1,1,2,1,2,1,1,1,2,1,2,1,1,0,0,1,1,2,1,2,2,2,1,1,1,0,2,0,2,0,0,2,2,2,2,1,0,1,2,0,1,2,0,0,2,1,1,2,2,2,2,1,0,2,0,2,2,2,0,2,2,2,1,2,1,0,0,2,0,1,0,0,1,2,2,1,2,2,2,0,2,0,2,2,2,0,0,1,0,1,2,1,2,2,1,2,2,0,2,2,2,2,2,0,2,0,2,1,1,1,1,2,0,1,2,0,0,2,1,2,0,2,2,0,1,0,0,1,1,1,0,0,2,0,1,1,1,0,2,0,0,1,2,0,1,1,2,2,2,0,2,0,2,0,0,1,0,1,2,0,2,1,0,1,0,2,1,0,2,0,0,1,2,2,1,1,2,2,2,0,2,1,2,2,1,2,2,1,1,0,0,1,1,0,2,2,0,0,1,1,0,1,0,1,2,1,1,2,1,0,1,2,0,1,0,1,2,1,0,2,1,2,2,1,0,0,0,0,0,0,2,1,0,2,2,1,0,2,2,1,0,2,1,1,0,1,1,1,1,0,2,1,1,0,0,1,1,0,1,1,2,1,2,2,0,2,1,2,1,1,0,1,0,1,0,1,2,1,2,2,0,0,2,1,1,1,1,2,0,0,0,2,2,0,0,2,0,2,2,1,1,0,0,2,0,2,0,1,1,2,1,2,0,1,1,1,1,0,1,2,1,1,2,0,2,1,0,0,1,1,0,0,1,2,2,0,2,0,0,1,2,1,2,1,2,1,0,0,0,1,1,2,0,1,2,0,1,2,0,2,2,0,2,2,1,0,2,2,1,0,0,0,0,1,2,0,2,1,0,0,0,0,0,0,0,1,0,1,1,2,2,0,1,0,1,1,1,0,2,0,1,1,1,2,1,2,1,1,2,1,1,0,1,1,1,2,1,0,1,2,2,1,2,2,2,0,1,0,2,0,0,0,0,2,2,2,1,1,0,0,2,2,0,0,0,1,1,0,0,2,2,2,0,2,0,1,1,0,2,2,2,0,0,2,2,0,0,1,1,0,1,0,1,2,2,1,0,1,2,2,2,2,1,2,0,2,1,2,1,0,2,2,1,1,1,0,1,2,1,0,2,0,1,1,2,0,0,0,0,1,2,0,2,1,0,2,0,0,0,0,2,1,1,1,2,1,1,2,1,0,1,1,1,2,0,0,1,2,0,1,1,2,0,2,1,0,1,2,0,1,0,1,0,0,1,2,1,0,0,2,2,0,0,1,0,1,0,0,1,2,0,0,0,2,2,0,1,1,1,2,2,1,1,0,2,0,1,2,2,0,1,2,1,2,0,2,2,1,0,2,1,2,0,1,0,0,0,2,0,1,1,0,2,2,0,2,0,2,0,1,1,2,2,1,2,0,1,1,1,2,0,2,1,0,0,2,1,0,2,0,2,2,2,1,0,2,0,0,1,2,2,1,0,2,2,1,1,0,1,0,2,0,1,1,0,2,2,0,1,0,2,2,1,0,0,2,1,0,0,2,1,0,2,1,2,2,2,1,2,0,1,0,0,2,1,1,2,0,0,0,0,0,2,2,2,1,1,0,2,2,2,2,2,2,0,0,1,1,2,0,1,0,2,0,0,2,2,2,1,1,0,1,0,2,0,0,2,1,1,2,1,0,1,1,1,2,2,2,0,1,1,2,1,0,2,1,0,2,0,1,2,2,1,0,0,0,2,1,2,1,1,2,2,0,2,2,0,1,1,2,1,1,2,1,0,2,1,1,1,2,2,1,0,0,2,0,2,1,0,2,2,2,0,0,2,2,2,1,0,1,1,2,0,1,1,0,0,1,1,2,0,1,2,1,1,1,1,2,1,1,2,1,2,1,0,2,2,0,2,2,1,0,1,1,0,0,0,1,2,2,1,2,1,2,0,1,0,2,2,2,1,0,1,2,0,1,0,2,0,1,1,2,1,1,1,1,2,2,0,2,1,0,1,0,1,2,0,2,0,2,1,2,1,2,2,0,2,1,1,2,0,1,1,2,1,1,1,2,1,0,0,2,1,0,2,1,1,0,1,2,0,2,2,1,1,0,0,0,2,2,0,0,0,0,2,0,2,1,2,1,1,0,0,0,1,1,1,2,2,2,1}
Returns: 704406032
607
607
607
{0,1,2,2,0,0,2,1,1,2,0,1,0,0,0,2,1,0,2,2,0,0,1,0,0,0,2,2,2,1,1,1,2,2,2,0,2,1,1,0,1,1,2,1,2,0,0,2,1,0,2,0,2,2,2,1,1,2,0,1,1,2,0,1,0,0,1,2,2,0,1,0,0,0,2,0,0,0,2,1,1,2,1,2,2,2,2,1,2,1,0,2,2,1,1,1,1,1,0,2,2,1,2,2,0,0,1,0,0,1,1,1,0,0,0,1,1,0,2,1,2,2,1,2,0,0,1,0,1,2,2,1,0,1,1,1,2,0,0,0,0,0,1,1,1,1,2,2,2,2,1,0,1,0,0,0,1,0,0,0,1,2,0,1,0,1,2,0,2,1,1,1,0,0,2,2,1,2,1,2,0,1,0,0,1,1,1,2,1,1,1,2,2,2,0,2,1,0,2,2,2,0,2,0,2,0,2,2,1,1,2,0,1,1,0,0,2,1,0,0,0,1,0,1,0,0,1,1,0,1,0,1,2,1,1,0,2,2,1,1,1,0,2,1,1,2,0,1,0,2,0,1,0,1,0,0,0,0,1,1,0,0,0,2,1,2,2,2,0,0,1,2,0,1,1,0,2,2,2,2,2,1,0,2,0,1,2,2,1,1,2,0,0,0,0,2,2,0,2,0,2,2,1,2,0,1,0,0,1,2,2,0,2,2,2,0,2,2,0,1,1,2,0,1,2,0,0,1,1,2,2,2,2,0,1,2,1,1,2,0,0,1,1,2,1,2,2,2,0,2,0,0,0,2,2,0,2,1,1,2,2,2,2,0,0,2,0,2,0,0,2,2,1,1,0,2,1,0,2,0,1,0,2,2,2,2,2,1,2,1,0,2,2,1,0,1,0,1,0,1,0,1,1,2,1,1,2,0,0,1,2,1,1,0,2,0,2,0,0,0,1,0,0,2,0,2,0,2,1,2,2,0,2,2,0,1,2,0,0,2,1,0,1,1,1,2,0,2,1,2,1,2,2,2,1,0,1,0,2,2,2,1,2,0,2,2,0,2,1,1,0,2,0,1,1,2,1,2,2,1,1,1,0,2,1,0,2,0,1,1,1,0,2,1,2,2,1,2,1,0,0,0,2,2,1,1,1,0,1,1,1,1,1,0,2,2,2,0,0,2,0,2,2,1,2,0,2,1,0,1,0,2,1,0,1,0,2,0,2,0,0,0,0,2,0,2,0,1,2,1,2,2,1,2,1,1,0,2,1,1,2,1,1,1,0,2,2,1,2,2,1,2,2,1,2,2,0,1,0,1,2,2,0,1,2,0,2,0,2,2,2,2,0,0,1,0,2,1,2,2,0,0,2,2,0,0,2,1,2,2,1,2,2,1,1,0,2,1,1,2,0,2,2,1,1,2,1,2,1,2,0,2,2,2,1,1,1,1,1,0,1,1,2,2,1,2,1,1,2,2,1,2,2,2,2,1,1,2,0,2,1,0,2,0,0,1,2,0,1,0,0,2,0,0,2,1,2,0,1,0,1,0,1,2,1,1,2,0,1,1,0,0,2,2,1,2,1,0,2,1,1,2,1,1,1,1,2,1,1,2,1,1,1,1,0,0,1,0,1,2,0,1,1,2,0,1,2,0,0,1,1,1,1,2,0,1,2,1,1,2,2,2,1,2,0,1,0,1,0,1,1,0,2,1,1,0,0,1,1,2,0,2,0,2,2,1,2,1,0,0,1,0,0,0,2,2,1,0,0,0,0,2,2,2,1,1,1,0,2,0,2,0,1,0,2,1,2,0,2,1,1,1,2,2,1,0,2,2,2,2,2,0,2,0,2,0,2,1,1,2,2,2,1,2,2,0,1,2,1,0,2,2,0,1,0,1,0,1,0,2,2,2,1,0,2,1,2,1,0,1,2,0,1,2,1,1,2,1,1,0,2,1,1,2,2,1,2,0,1,1,2,0,1,0,0,0,1,0,1,0,1,1,1,1,0,0,2,2,2,1,1,1,0,1,2,1,1,1,1,2,1,1,0,1,2,1,0,1,0,0,2,0,0,1,0,2,1,2,0,0,2,0,1,0,2,1,0,2,2,0,2,1,0,0,0,0,0,2,2,1,2,1,0,2,2,1,1,0,0,1,0,1,0,2,2,2,0,1,2,2,1,0,2,1,1,2,0,1,1,1,1,0,1,2,1,2,1,1,0,2,0,2,1,0,0,2,1,2,1,2,0,1,0,2,2,2,1,1,0}
Returns: 18962731
709
709
709
{0,2,1,0,0,2,1,1,1,0,0,2,1,1,1,2,1,1,1,1,1,2,0,1,2,0,1,0,2,1,1,1,0,1,0,1,1,1,2,0,1,0,0,2,2,0,0,0,1,1,2,0,2,1,0,0,1,2,1,1,2,1,2,2,2,2,0,1,1,2,0,0,1,1,1,1,1,2,1,2,1,0,2,2,1,2,2,2,2,0,0,1,0,1,2,0,1,0,0,2,2,0,1,0,2,2,2,0,1,2,1,0,1,0,2,1,0,1,2,0,0,0,2,1,2,2,1,1,1,2,1,2,0,0,2,1,1,1,1,2,0,0,1,1,1,0,0,2,0,1,2,1,2,1,1,1,1,1,2,1,1,0,1,0,1,1,0,2,0,1,2,2,0,0,1,1,1,1,2,1,1,0,1,1,0,0,1,1,1,1,1,0,0,2,2,1,2,0,2,0,0,1,2,2,0,0,2,1,1,2,1,1,1,2,1,0,1,0,2,2,2,0,2,2,2,1,1,2,2,2,1,2,2,1,0,1,0,0,1,1,1,2,0,2,0,1,1,2,1,2,1,1,1,1,2,1,1,0,0,0,1,1,2,2,0,0,2,1,2,2,0,1,2,0,1,0,2,1,2,0,2,0,2,1,0,1,2,0,2,1,2,2,0,1,0,0,1,2,1,1,2,0,0,0,0,0,0,0,0,2,0,1,0,0,1,1,0,0,1,1,0,2,1,2,0,1,1,0,1,0,0,1,2,1,0,2,2,0,1,0,1,0,0,1,2,0,2,2,1,2,2,1,1,2,2,1,0,1,1,1,0,1,0,2,1,1,2,2,1,2,1,1,2,1,1,0,2,2,2,1,2,1,2,2,0,1,2,0,0,1,0,2,0,1,2,1,0,1,0,2,2,1,1,1,0,0,2,2,1,1,0,1,2,1,0,1,1,1,0,0,0,1,1,2,1,1,2,0,2,0,1,1,1,1,0,0,1,1,1,0,2,2,1,1,0,2,0,1,0,2,1,1,2,2,2,1,2,0,2,2,0,1,1,0,2,1,2,1,2,0,1,1,1,2,0,1,0,1,2,1,2,0,2,1,0,1,2,0,1,0,1,0,1,0,1,0,1,0,1,0,2,0,2,2,1,0,0,0,0,1,1,0,0,2,0,0,2,1,2,1,2,1,0,2,1,0,1,1,1,0,1,0,2,0,1,1,2,0,0,0,0,2,1,1,1,2,2,0,2,1,0,0,2,0,0,2,0,2,2,1,1,2,0,0,1,1,1,2,1,1,2,2,2,1,0,1,2,1,1,1,0,1,2,0,1,0,0,1,1,0,0,0,2,0,1,1,2,1,1,0,1,0,0,1,0,2,1,0,1,2,1,2,0,1,2,0,1,2,1,0,0,0,1,0,2,2,1,1,1,1,2,0,1,0,1,2,0,1,1,1,1,2,1,2,0,1,0,2,1,1,1,0,1,2,2,2,2,1,0,0,1,2,0,2,0,2,2,2,2,1,2,2,0,2,1,2,0,0,2,2,1,1,2,0,2,1,2,1,2,2,2,1,0,2,2,2,0,2,0,2,0,0,0,2,1,1,0,2,2,0,2,2,1,1,1,0,0,0,1,2,1,2,2,0,0,0,2,2,2,2,2,2,0,1,0,1,0,2,1,0,0,0,1,2,0,2,0,0,0,0,2,2,1,2,2,2,1,1,2,2,2,1,1,0,1,2,1,2,1,1,2,0,2,0,0,1,0,1,2,2,1,0,0,2,0,2,2,0,1,2,0,0,0,2,0,1,1,0,2,0,0,0,0,1,1,0,0,2,0,2,1,1,1,1,1,1,1,0,2,1,0,2,2,2,2,2,1,1,1,2,0,0,2,1,2,1,0,1,0,0,1,1,0,0,2,1,1,0,1,2,1,0,1,1,2,2,0,0,0,2,1,0,0,0,2,1,2,2,0,0,2,1,2,0,2,2,2,2,2,2,0,0,1,1,2,2,1,1,0,1,2,1,2,2,2,2,1,0,0,0,1,2,0,2,0,0,0,1,0,0,0,0,0,0,2,1,1,0,1,1,2,0,0,2,1,1,2,2,0,2,1,0,2,0,0,2,0,1,0,2,2,1,1,1,1,2,0,1,0,2,2,0,0,2,0,1,2,0,2,1,2,2,1,2,2,2,2,2,2,0,1,2,1,2,0,1,0,0,0,1,2,1,2,2,2,0,0,1,0,0,2,2,0,2,0,2,1,1}
Returns: 339654246
865
865
865
{1,0,2,2,0,2,2,2,1,0,1,1,2,2,2,0,0,1,2,2,1,0,0,0,1,0,0,2,1,1,2,1,1,1,2,0,1,1,1,0,1,2,0,2,1,0,1,2,2,2,1,0,0,1,0,0,0,0,2,2,0,0,0,1,0,1,0,0,0,0,0,1,2,1,1,1,2,1,1,2,1,1,1,2,1,1,2,0,1,1,2,0,1,2,2,2,1,2,1,1,0,1,0,0,0,1,0,1,1,0,1,2,1,2,0,2,2,2,0,0,1,0,0,0,1,0,1,2,2,2,1,0,2,1,2,1,0,0,2,2,1,1,0,0,1,2,2,0,0,0,0,0,1,2,1,1,1,2,1,1,2,1,1,2,1,2,2,2,2,0,2,0,2,1,0,1,1,0,1,0,0,1,1,0,1,2,1,1,2,1,2,0,0,0,0,0,1,1,1,0,2,0,2,2,1,0,0,2,0,0,1,0,1,0,0,1,0,1,1,1,2,2,0,1,1,1,1,0,2,0,2,1,1,1,1,0,0,1,1,0,2,1,1,2,1,0,1,1,0,2,2,1,1,1,1,1,1,1,1,1,1,1,0,2,2,2,2,0,2,1,1,2,2,0,0,1,1,2,0,0,1,2,2,2,2,0,1,1,0,2,1,1,0,1,1,0,1,2,2,0,1,2,2,1,0,0,0,2,1,0,1,1,2,1,2,0,0,0,1,1,0,0,1,2,1,2,0,2,1,1,1,0,0,2,1,0,1,1,0,0,1,2,1,2,1,2,0,0,2,0,1,2,1,2,1,0,0,2,1,0,2,1,0,0,1,0,2,0,1,1,0,2,0,2,1,2,0,1,0,1,2,1,1,2,1,0,1,0,0,1,2,0,2,2,2,2,2,2,1,0,1,1,0,0,2,2,1,2,0,2,2,0,1,0,1,2,1,1,2,1,2,2,1,1,0,1,1,2,0,0,1,2,1,1,0,0,1,0,1,1,0,0,1,2,0,0,2,2,1,0,0,0,1,1,1,1,0,2,2,0,1,2,2,1,0,2,2,1,2,0,2,2,2,2,0,1,1,2,2,1,0,2,0,2,0,0,2,1,0,0,1,0,2,1,1,1,0,2,2,2,0,2,1,2,2,2,1,0,2,2,0,1,2,1,1,2,1,0,2,1,1,2,0,2,1,0,1,0,2,2,1,2,1,2,1,2,0,2,1,0,0,2,1,2,2,0,2,1,1,1,1,2,0,0,2,1,0,0,0,1,2,0,0,2,2,2,1,2,0,2,0,1,2,0,0,1,1,0,1,2,2,0,0,0,1,2,0,0,2,0,0,1,1,2,0,1,0,1,0,1,1,2,1,0,0,0,2,1,1,2,1,2,2,0,0,0,0,2,2,1,1,2,0,1,2,0,0,1,0,1,2,2,0,0,1,1,1,2,1,1,0,0,0,2,0,2,1,0,0,0,1,2,1,0,1,1,2,2,2,2,0,2,0,0,0,2,0,0,0,2,2,0,0,1,1,0,0,0,2,0,2,2,1,0,2,2,1,2,1,0,0,1,0,0,0,1,1,2,0,0,2,0,2,1,2,2,2,1,2,2,0,1,1,2,2,0,2,1,0,1,2,0,1,1,1,2,1,1,2,1,1,2,0,2,0,2,1,0,0,0,1,0,0,0,0,0,1,2,0,0,2,1,2,0,2,2,2,2,2,0,1,1,0,1,2,1,1,0,0,0,2,2,1,1,0,2,1,1,1,1,0,1,2,1,0,2,1,2,2,2,0,2,2,0,2,0,1,2,2,2,1,1,2,2,0,1,0,1,0,2,2,2,1,0,0,1,0,0,0,1,2,1,2,2,2,2,2,2,0,1,1,2,0,2,0,0,2,2,1,2,0,2,2,2,1,0,1,2,0,1,1,1,2,1,0,0,2,2,0,1,1,1,0,2,0,2,0,1,1,2,1,0,1,1,0,1,1,2,0,0,2,1,1,2,2,1,2,1,0,2,2,2,1,0,1,2,0,0,0,1,1,2,2,2,2,1,2,0,0,1,0,1,0,2,2,1,2,2,2,1,0,1,0,2,0,0,0,0,1,2,0,2,0,1,0,1,0,2,0,2,1,2,1,1,0,2,0,1,0,0,2,0,1,2,2,1,1,0,1,2,2,2,1,2,1,1,1,1,1,1,2,1,2,0,1,1,2,0,2,2,2,0,0,0,2,2,1,1,2,1,1,2,1,1,1,2,1}
Returns: 113218082
816
816
816
{2,2,1,2,1,2,2,2,2,2,1,2,2,2,0,0,1,1,2,0,2,0,0,2,2,2,0,1,2,2,1,0,1,0,1,0,0,0,0,0,2,2,2,2,0,1,1,2,0,2,0,0,2,0,2,0,2,0,2,2,0,2,2,0,0,0,0,2,2,2,2,2,2,0,0,1,1,0,2,0,1,0,2,0,0,1,0,0,0,2,1,0,1,0,2,0,2,1,1,0,0,1,2,2,1,1,0,1,0,1,0,0,0,1,0,2,1,2,2,0,1,2,1,0,0,1,0,2,0,2,1,1,1,0,0,1,0,2,0,0,2,2,0,0,2,0,1,0,1,1,2,2,1,1,2,1,2,2,0,2,1,1,0,0,0,2,2,2,1,0,2,2,0,2,2,1,0,1,2,1,2,2,0,1,0,1,1,2,1,0,1,0,2,0,0,1,0,0,0,0,0,1,2,0,0,1,1,1,0,2,2,0,0,2,0,0,0,0,2,2,0,2,0,2,1,1,0,2,1,1,1,1,0,0,1,2,1,1,2,1,0,2,0,0,0,1,2,0,1,0,1,1,2,2,0,0,2,1,0,0,1,1,2,0,1,0,2,1,1,0,1,0,1,0,1,2,0,0,2,2,0,0,2,0,2,0,2,2,0,2,1,0,1,0,1,2,1,2,1,1,2,0,2,0,1,1,1,2,2,1,1,1,0,1,0,1,2,1,2,1,2,0,1,1,0,1,0,0,0,0,2,2,0,1,1,2,1,0,0,0,2,2,0,0,0,1,2,0,1,1,1,0,1,0,2,1,0,2,0,1,1,0,0,0,2,0,2,0,0,0,2,1,2,0,1,0,1,1,2,0,2,1,2,1,2,0,1,2,0,2,1,1,2,0,1,0,1,2,1,2,0,1,1,2,1,0,2,1,0,0,2,0,0,0,2,1,2,2,1,1,2,1,2,0,0,0,2,2,2,1,1,0,0,1,2,2,0,0,2,2,1,2,1,1,2,1,0,1,2,2,2,0,1,2,2,2,2,1,2,0,0,0,2,0,1,1,0,0,2,0,0,0,2,0,1,2,2,0,1,1,1,0,2,2,1,2,1,0,0,1,0,2,1,1,1,1,0,0,0,2,1,2,2,0,0,2,1,1,0,2,1,2,2,2,2,2,1,2,2,0,2,1,0,0,2,2,0,2,2,0,2,1,0,1,0,2,2,2,2,1,0,2,2,0,2,2,2,0,0,0,2,0,2,0,2,1,2,1,2,2,2,1,1,2,0,2,1,2,1,2,2,1,2,1,2,2,1,2,1,2,0,2,0,1,0,0,0,1,0,2,1,1,0,2,2,0,2,2,2,2,1,2,1,0,2,2,2,1,0,2,0,2,1,1,2,2,1,1,2,0,0,1,0,1,1,1,0,0,0,2,2,0,0,1,1,2,1,2,2,1,0,2,2,1,0,1,1,2,1,1,0,1,1,1,2,2,0,2,1,2,2,1,1,0,1,0,2,2,1,2,2,0,2,1,2,2,0,1,2,2,2,0,0,2,1,0,0,2,1,0,1,1,1,0,1,1,1,1,0,2,2,2,2,0,2,2,2,1,2,0,0,0,1,2,0,0,1,2,1,1,2,0,1,1,0,0,2,1,2,2,0,1,0,0,1,0,0,2,1,2,1,2,2,0,2,1,2,1,2,2,0,2,2,0,2,1,2,1,1,0,0,2,0,2,0,2,1,1,1,2,2,1,0,2,0,0,2,2,2,2,1,2,2,2,0,0,1,0,1,2,2,0,1,0,2,2,1,0,2,1,0,2,2,0,2,2,2,2,0,2,0,0,2,1,1,0,1,0,1,0,1,2,0,0,1,1,2,1,2,0,1,1,0,2,2,1,1,0,2,0,0,1,2,0,2,0,2,2,2,1,0,1,2,1,1,0,1,1,0,0,0,2,1,1,0,0,1,0,1,1,1,1,1,1,0,0,2,0,1,0,0,0,2,2,0,2,2,1,0,2,1,0,0,2,1,2,1,1,0,1,1,2,1,1,1,1,2,0,0,0,0,1,0,1,0,0,1,0,1,2,2,0,2,1,2,1,0,2,1,2,0,2,2,2,2,1,2,1,0,0,0,0,1,1,0,0,2,0,0,1,1,0,0,1,2,0,2,2,1,2,2,0,1,0,0,0,2,0,2,0,2,2,2,2,2,1,1,2,1,0,0,2,0,2,0,0,2,0,2,2,0,1,2,0,2,0,1,1}
Returns: 339654246
703
703
703
{2,2,0,2,1,2,1,1,2,2,1,1,0,2,2,2,0,1,2,1,0,1,1,0,2,0,1,0,0,1,2,2,2,1,1,2,2,2,1,0,0,1,2,2,0,1,0,0,1,1,0,2,2,1,2,2,1,1,1,0,2,0,2,1,1,0,1,0,2,0,1,2,2,2,1,1,2,0,2,2,0,1,0,0,1,1,0,2,2,1,2,0,0,0,2,1,2,2,0,2,0,0,1,1,2,0,0,1,2,2,0,2,1,2,2,0,2,0,0,1,1,0,2,2,0,1,0,2,1,1,1,0,0,1,2,0,2,0,1,0,0,2,0,2,0,1,2,1,1,0,0,0,2,0,0,0,0,0,2,1,0,0,0,0,2,0,0,0,0,2,0,1,2,1,0,1,1,0,0,2,2,0,2,0,1,1,2,2,0,0,0,2,0,2,2,1,2,1,1,1,2,1,0,0,2,2,2,2,0,0,1,0,2,1,1,1,0,1,0,1,0,0,1,2,0,0,1,0,1,0,2,0,1,0,2,1,0,2,0,2,2,0,0,0,2,1,1,0,0,0,1,2,2,1,2,1,1,2,2,2,2,1,0,0,1,1,1,2,0,0,1,0,1,2,2,0,2,2,2,0,0,1,0,2,1,2,0,1,1,0,2,2,1,1,1,0,2,2,1,1,0,0,0,0,0,0,2,2,0,0,2,0,1,1,2,1,1,2,1,0,2,1,1,2,1,1,1,1,1,1,2,2,0,2,0,2,1,0,0,2,0,1,2,2,1,1,2,2,0,2,1,0,1,1,0,2,1,1,2,1,0,0,2,2,1,1,0,1,2,1,0,0,2,2,1,1,0,2,1,2,0,1,0,2,0,2,2,1,2,2,2,0,2,2,0,1,0,0,2,1,1,0,2,1,1,1,1,1,1,1,1,1,2,1,2,1,0,2,2,2,1,2,0,0,1,2,0,1,0,2,0,2,1,2,1,0,2,0,2,0,2,2,1,0,2,0,1,2,1,0,1,0,0,2,0,2,0,1,2,1,2,0,0,2,2,2,0,2,2,0,0,1,1,2,2,0,2,2,0,1,2,1,1,1,1,2,1,1,1,0,0,1,2,0,1,1,1,0,2,1,0,1,1,2,0,1,2,2,1,0,1,2,1,1,2,0,1,1,0,1,1,2,0,2,2,1,0,2,0,2,1,0,1,1,2,1,1,1,2,0,0,2,0,0,0,0,1,1,2,0,2,2,2,0,0,1,0,2,0,1,0,2,2,0,0,2,1,0,0,1,1,0,0,0,2,0,0,2,0,2,0,2,1,0,2,2,0,0,2,0,2,1,0,2,2,1,2,2,2,2,2,1,2,1,2,0,2,0,1,1,1,0,2,1,1,2,1,1,0,2,2,1,0,0,0,0,2,2,1,1,1,2,0,2,2,1,2,0,0,2,2,1,0,2,1,1,1,0,1,1,0,0,0,2,2,1,2,1,2,0,1,2,0,2,0,0,1,1,2,0,0,2,2,2,0,1,0,1,2,2,0,0,0,2,0,0,1,2,2,2,2,2,2,1,1,0,1,1,1,0,2,1,1,2,1,2,1,0,2,2,0,2,0,1,2,2,0,0,1,2,2,0,2,2,2,2,0,2,0,2,2,2,0,0,2,0,1,1,0,1,0,1,0,0,2,0,0,0,0,0,1,1,0,0,2,1,2,0,0,0,1,1,0,2,2,0,2,0,1,2,1,1,2,0,2,2,1,1,1,1,2,0,1,2,1,2,2,0,0,0,0,2,1,0,1,1,2,2,0,0,2,2,2,0,2,1,0,1,2,0,1,0,0,0,2,1,0,0,1,0,1,2,1,2,2,0,2,2,0,1,1,0,2,0,2,0,0,2,0,1,0,2,2,1,1,0,0,1,0,2,0,2,0,2,0,2,1,0,1,0,2,0,2,1,0,1,0,2,1,0,2,2,2,0,2,2,1,0,1,1,2,0,1,2,2,0,1,2,2,2,2,0,1,0,2,1,0,0,0,1,2,2,1,2,2,2,0,1,0,1,0,0,1,1,0,2,2,0,2,1,2,0,0,0,0,2,1,0,2,0,0,2,1,1,0,2,0,0,1,0,2,0,0,2,1,2,2,0,0,1,1,2,2,2,0,1,0,2,1,0,0,1,0,0,1,0,1,0,2,1,0,2,1,1,2,1,1,2,2,0,0,0,1,2,2,2,2,0,2,1,1,0,0,2,0,2,1}
Returns: 113218082
478
478
478
{2,0,2,2,0,1,0,2,1,1,0,0,2,2,2,2,0,1,2,0,2,1,1,1,0,1,2,1,0,1,2,1,0,0,1,1,2,2,1,2,0,2,2,2,0,1,2,0,0,2,1,1,2,2,2,0,0,2,1,0,1,0,2,2,1,2,1,1,0,2,0,2,1,1,0,0,1,1,2,2,1,2,0,2,1,0,2,1,2,0,0,2,1,0,2,1,2,0,0,0,1,0,2,2,0,0,1,1,2,0,1,0,0,2,0,2,2,2,1,0,1,0,0,2,1,2,2,0,0,2,2,2,1,0,2,2,2,0,0,0,0,0,1,0,2,0,2,2,2,2,2,1,1,0,0,1,2,0,1,2,0,1,0,2,0,0,2,0,1,2,0,0,0,1,0,0,2,1,1,0,0,2,1,1,2,2,1,2,0,1,2,1,2,2,0,2,0,0,1,0,1,0,1,2,2,0,0,2,1,2,2,1,0,1,1,1,0,0,0,2,2,1,1,0,2,1,1,2,1,0,0,1,0,0,1,0,0,2,0,2,1,0,2,2,0,1,2,0,2,2,1,2,0,1,0,0,2,2,2,0,1,2,2,0,0,0,1,2,0,0,1,2,1,2,0,2,2,2,0,2,0,2,0,0,0,1,0,0,1,1,0,0,0,0,1,0,2,2,2,1,2,1,1,2,0,1,1,2,1,2,2,2,0,2,2,0,2,2,1,1,1,0,1,1,1,2,1,2,1,1,2,0,1,1,2,0,2,0,0,0,2,0,2,2,0,1,1,2,2,0,1,1,2,0,0,1,1,0,1,2,2,2,2,1,1,2,0,1,0,2,2,2,0,1,1,1,1,1,0,0,2,0,1,2,0,0,2,2,2,1,1,0,1,1,2,1,2,2,2,2,0,1,1,2,1,1,1,0,1,1,1,1,0,2,0,2,1,0,2,0,2,2,1,0,0,0,2,1,1,2,0,2,0,0,2,0,2,2,0,0,0,0,1,2,1,0,0,0,0,2,1,2,0,0,0,0,2,1,2,1,1,1,1,2,0,2,1,1,2,2,1,1,2,0,1,2,0,2,2,2,0,0,1,1,2,2,2,0,2,2,1,1,1,0,2,2,0,2,2,2,0,1,2,1,1,1,2,0,2,0,0,0,0,1,2,0,2,2,1,2,0,2,0,2,0,1,0,0,1,1,2,0,2,1,0,2,2,1,1,1,2,2,2,2,1,1,0,0,2,0,0,1,2,2,0,1,2,0,0,1,1,0,1,1,0,0,1,0,2,2,0,0,2,0,1,1,0,0,0,0,0,1,2,2,1,0,1,2,1,1,2,1,0,1,2,1,0,0,2,0,2,2,2,0,2,0,2,1,0,1,0,1,0,0,2,1,2,0,2,0,2,0,1,2,1,0,0,1,1,0,0,1,0,2,2,0,2,0,0,2,1,0,1,0,2,2,0,2,2,0,0,2,0,2,1,1,1,2,2,2,2,1,0,1,2,2,0,1,0,0,0,1,1,1,1,1,1,1,0,2,2,0,0,1,2,1,0,1,1,0,1,0,2,2,0,0,2,2,0,1,0,1,2,1,0,2,2,1,1,2,0,0,0,1,1,1,1,2,1,0,0,1,2,1,2,2,0,0,1,0,0,1,2,1,0,2,2,1,0,0,2,2,2,2,1,1,1,0,0,0,0,2,2,1,0,2,0,2,2,1,1,0,1,0,2,1,1,1,2,1,2,2,0,2,2,0,0,1,1,0,2,2,1,2,2,0,2,2,0,2,2,2,1,0,0,0,0,0,2,0,2,1,1,0,2,2,2,1,0,0,0,1,1,0,2,2,1,2,1,2,0,2,0,0,1,2,0,0,1,1,2,0,1,1,1,0,2,2,1,1,1,1,0,2,0,1,1,2,1,0,2,2,2,1,0,1,2,2,1,0,1,1,2,1,2,1,0,1,0,2,2,2,0,0,1,1,0,1,1,1,2,0,1,0,0,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,1,2,2,2,1,1,2,0,1,1,0,0,2,0,0,2,1,2,1,0,2,0,0,0,1,1,1,2,0,2,2,0,0,1,1,0,1,2,2,2,1,2,1,0,2,1,2,2,1,0,1,2,2,2,1,1,0,2,2,2,2,1,1,2,1,2,0,1,0,0,0,0,2,1,2,0,1,0,2,1,2,2,0,2,2,2,0,1,1,1,2,2,1,1,0,1}
Returns: 704406032
538
538
538
{2,1,1,0,1,2,2,2,1,0,0,2,0,0,0,1,1,1,2,2,2,1,0,0,1,2,0,0,2,1,1,0,0,1,2,2,1,1,1,0,2,2,0,1,1,2,0,1,2,0,1,0,0,1,2,2,1,2,2,2,0,2,2,0,1,2,0,0,0,0,2,0,2,1,1,0,2,0,0,1,2,0,2,2,0,1,1,0,0,2,1,0,1,1,0,1,2,2,1,0,1,0,1,2,0,1,2,0,2,0,0,2,1,2,0,1,0,1,1,2,0,1,1,2,0,0,1,0,1,1,2,0,1,2,0,1,1,2,2,2,1,1,1,0,1,2,1,2,0,1,2,1,0,1,2,0,0,1,1,1,0,0,1,2,1,2,1,0,0,2,0,1,1,0,1,1,1,1,1,0,0,1,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,2,1,0,0,1,2,2,0,2,0,1,0,0,2,2,2,2,1,1,0,1,1,1,0,2,2,2,0,0,0,1,0,1,1,0,1,1,0,1,2,1,2,0,2,1,1,1,2,0,1,0,1,2,2,2,2,2,0,0,2,1,2,0,1,2,1,1,1,0,1,1,2,2,1,2,1,0,2,0,1,0,1,1,0,0,0,0,2,1,0,0,2,1,1,0,1,1,0,0,1,2,2,2,2,2,1,0,2,2,2,2,0,2,2,1,2,0,2,0,2,1,0,2,0,1,1,0,0,1,2,1,0,2,1,1,1,2,1,2,0,2,2,1,2,2,1,0,2,0,2,0,1,2,1,2,1,2,1,0,2,2,1,1,1,1,0,1,1,1,1,1,2,1,0,2,0,1,1,2,0,0,2,1,0,1,2,2,0,0,1,0,0,1,2,0,0,1,2,2,0,1,1,2,0,2,1,1,0,0,1,0,0,0,1,0,0,2,2,2,0,1,1,2,0,2,1,1,0,2,0,2,2,1,0,1,2,2,1,0,1,0,0,2,0,2,1,2,0,0,2,1,0,0,2,0,0,1,1,1,0,1,0,0,2,0,0,1,2,2,1,2,0,0,1,1,2,1,0,2,0,2,1,0,0,0,1,1,1,0,1,2,0,2,2,2,2,2,2,0,2,1,0,2,0,2,1,1,1,2,0,1,0,2,2,0,1,0,2,2,2,0,0,1,0,2,2,0,2,1,2,0,2,0,0,2,2,2,1,2,2,2,2,1,0,1,1,2,1,0,0,0,1,2,0,1,1,0,1,0,2,2,0,2,1,0,1,1,2,1,2,0,1,2,0,1,0,0,1,2,0,0,1,1,0,2,0,0,0,1,2,1,2,1,1,1,2,2,0,2,0,2,1,1,2,1,0,1,2,2,2,2,1,1,1,1,0,1,0,1,0,0,2,2,2,2,0,2,2,2,0,0,0,1,1,2,1,2,2,0,1,2,1,1,1,0,2,2,2,1,1,2,1,2,2,1,1,0,1,0,1,2,0,1,1,2,0,1,0,2,1,0,1,1,2,1,2,2,2,1,2,2,2,0,2,0,2,2,2,1,1,0,1,0,0,1,0,0,1,2,1,0,0,1,1,2,0,2,2,1,0,1,0,1,0,1,2,1,2,2,1,2,1,1,1,1,2,2,0,2,0,2,0,0,1,0,2,1,0,0,2,1,1,0,1,2,1,0,2,2,1,0,2,1,0,0,1,0,1,0,2,1,1,0,0,1,1,1,1,0,1,2,0,2,2,2,1,2,1,1,1,0,0,2,1,1,1,1,2,0,2,0,1,1,2,2,2,1,0,1,1,0,1,0,1,0,0,0,0,0,0,1,0,2,2,0,1,2,2,2,1,2,2,2,2,2,0,1,2,2,0,1,2,2,2,1,1,2,2,0,0,0,0,1,2,1,1,2,0,1,2,1,0,1,2,2,1,1,2,2,2,2,2,2,0,2,2,0,2,0,1,1,2,1,2,1,2,1,2,2,2,0,2,1,2,2,0,1,0,2,1,2,0,1,1,0,0,0,1,0,2,2,1,0,0,0,0,1,2,0,0,0,2,2,0,0,0,0,0,0,1,2,0,0,0,1,2,2,1,1,2,2,1,0,1,0,0,0,1,2,2,1,0,0,2,1,0,2,2,1,0,2,2,1,2,2,1,2,1,2,1,2,0,0,0,1,1,2,0,0,0,1,1,1,1,2,0,2,0,2,0,0,2,0,1,2,1,2,1,1,0,1,1,2,1,1,2,2,1,0,1}
Returns: 113218082
481
481
481
{1,0,2,2,0,1,0,1,1,0,1,0,1,0,0,1,2,0,0,0,0,2,0,0,0,2,2,1,2,2,2,0,0,1,1,0,0,0,0,2,2,2,1,2,1,0,1,0,0,2,0,0,2,1,2,1,1,0,1,1,2,1,1,1,1,1,2,1,2,0,0,0,0,1,1,2,2,2,1,1,2,2,1,2,2,0,0,2,2,2,0,1,0,1,1,0,1,2,0,1,0,1,0,1,0,2,0,0,0,0,2,1,2,2,2,1,1,0,1,0,2,0,1,1,1,2,2,0,0,1,2,2,1,2,1,0,2,2,0,2,0,0,1,2,0,2,0,0,1,2,1,2,2,2,1,0,2,2,1,0,1,2,0,1,1,1,1,2,0,1,1,1,0,2,2,0,1,0,2,2,2,2,1,0,2,1,2,1,0,2,1,1,1,0,2,0,2,2,0,2,0,0,0,2,1,2,0,0,0,2,2,0,2,1,2,1,0,2,1,2,2,0,1,1,2,2,2,2,1,1,1,1,2,1,0,0,2,0,0,1,2,1,1,1,1,1,2,0,0,0,1,0,2,0,2,1,0,1,0,1,2,2,0,2,2,1,1,0,1,0,0,2,2,1,0,1,1,0,1,0,2,1,0,1,0,2,0,0,1,2,0,1,0,1,1,1,2,1,2,2,0,2,0,1,1,1,1,0,1,1,2,0,1,2,1,0,0,2,1,0,0,1,2,1,0,0,2,2,2,1,2,2,1,1,1,2,1,1,2,1,1,2,0,1,0,1,0,0,1,2,2,1,0,1,2,1,1,2,0,1,1,1,2,2,0,1,2,0,1,1,2,1,2,1,0,1,1,1,0,2,1,0,1,0,0,0,2,1,0,1,2,1,1,2,1,2,1,1,2,0,1,0,0,2,0,1,1,1,0,2,0,2,1,2,1,2,1,1,2,0,0,0,0,2,1,2,0,0,2,1,2,2,0,0,1,1,2,1,0,2,0,0,2,1,0,2,1,0,1,2,1,0,2,2,2,1,2,0,2,2,0,2,1,1,0,0,2,0,1,0,2,0,0,2,0,0,1,0,2,1,2,0,0,1,2,2,2,2,2,0,1,0,2,1,2,0,0,2,0,0,1,2,0,2,2,1,2,2,1,0,1,0,0,1,0,1,0,2,0,1,2,0,2,0,1,1,2,2,2,1,1,0,1,0,0,0,0,0,0,0,2,1,0,1,0,2,2,0,0,0,1,0,2,1,1,0,2,2,1,2,0,1,2,1,2,2,2,1,0,2,0,0,2,0,1,1,0,2,2,1,2,1,1,2,0,0,2,0,0,2,1,2,0,0,2,1,0,0,0,1,1,1,0,1,1,1,0,0,1,0,2,2,1,1,1,2,2,2,2,0,0,1,0,1,2,0,1,2,1,0,1,0,2,0,2,2,0,0,2,0,2,0,0,1,1,1,2,0,1,0,2,0,1,2,2,0,0,1,0,2,2,1,1,2,0,2,2,2,1,2,1,2,2,0,0,1,1,1,2,2,2,0,1,0,2,0,1,2,2,0,0,0,0,1,1,1,0,0,2,1,2,1,2,0,1,0,2,2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,0,0,0,2,2,2,0,1,1,2,0,0,1,0,0,2,1,2,0,2,1,2,1,2,2,1,1,0,2,1,1,0,1,0,1,2,0,2,0,1,2,2,2,0,0,2,0,2,0,0,2,1,2,2,2,1,1,0,1,2,0,1,2,2,1,1,1,0,0,2,0,0,1,0,2,2,1,1,1,1,0,1,1,0,0,0,0,2,0,0,1,0,1,2,1,1,2,1,2,2,0,1,0,2,1,0,0,2,0,0,0,2,1,1,0,0,2,0,1,2,0,1,1,1,0,2,1,1,1,1,0,1,1,1,1,0,1,0,2,0,0,1,2,2,1,0,1,2,1,1,0,0,1,1,0,1,2,1,0,2,2,0,1,0,2,0,2,0,2,0,2,0,0,0,0,0,2,1,0,1,1,2,0,1,2,2,1,1,1,2,2,1,1,0,0,0,2,0,2,0,0,2,2,2,2,0,1,1,2,2,0,0,0,1,2,1,2,2,2,2,2,1,0,0,0,0,0,2,0,1,2,2,1,2,0,0,1,0,1,2,2,1,2,2,1,0,1,0,2,1,2,0,2,2,1,2,0,1,2,1,0,2,0,2,2,0,0,2}
Returns: 704406032
284
284
284
{2,2,2,1,1,1,1,2,1,2,2,0,2,1,1,2,2,1,1,0,0,1,0,2,2,2,1,0,0,1,1,2,2,1,2,0,2,0,2,2,2,2,0,2,1,2,0,1,1,1,1,1,1,0,0,2,0,2,0,0,0,2,1,2,1,1,2,2,1,1,1,0,1,0,2,2,2,1,0,0,1,1,1,2,1,2,0,2,0,1,1,1,1,0,2,2,2,2,2,2,1,0,0,2,2,1,1,2,0,1,0,0,0,2,1,0,2,0,1,0,0,2,1,0,1,0,1,0,0,1,2,2,2,1,0,0,1,0,1,1,2,1,2,2,2,0,0,2,1,1,2,2,0,0,0,0,0,1,1,1,0,1,2,2,0,0,2,1,2,0,0,2,2,0,1,2,1,0,0,0,2,0,0,0,1,0,1,2,2,2,1,2,1,0,1,1,0,2,2,2,2,1,2,0,2,0,0,2,1,2,1,1,2,2,1,1,0,2,1,0,1,1,2,1,1,0,2,0,1,2,1,1,1,1,1,0,2,2,1,0,2,0,2,2,1,0,1,0,0,2,1,2,2,1,1,0,1,0,1,1,0,2,2,0,2,2,1,2,2,1,1,1,0,0,2,2,1,1,2,1,0,1,1,0,2,1,2,0,0,0,1,0,2,1,1,2,2,0,1,2,0,1,2,0,2,1,1,1,1,1,1,2,1,0,2,0,1,0,1,1,1,1,1,1,1,0,1,2,2,0,0,0,2,0,0,0,1,1,2,0,1,1,1,2,0,0,2,1,1,0,2,0,0,2,0,0,2,2,2,0,2,2,1,0,2,0,2,1,2,2,2,2,1,0,2,2,0,2,0,2,1,1,0,0,0,2,0,0,0,0,1,1,1,1,2,2,2,1,2,1,2,2,2,0,2,0,0,1,2,0,0,2,0,2,0,2,0,0,0,0,2,1,0,0,2,2,1,1,1,2,1,0,1,0,2,2,0,1,1,2,1,1,0,0,1,0,0,0,0,1,2,2,2,0,1,1,2,0,2,1,1,1,1,0,2,0,2,1,0,0,1,1,2,0,0,2,2,2,1,0,0,2,0,1,2,1,2,2,2,0,0,0,1,2,1,1,2,0,0,2,0,0,2,0,1,0,1,1,0,0,1,2,0,0,2,2,0,0,2,1,1,0,2,1,1,2,1,2,2,0,1,1,1,1,1,1,1,1,0,1,2,0,0,2,0,1,2,2,2,2,1,0,0,1,0,1,2,0,2,0,2,1,2,0,2,1,2,0,1,0,1,2,2,2,2,2,0,1,2,1,0,0,1,0,0,0,2,2,2,0,2,1,0,2,1,2,1,0,2,1,1,0,2,2,0,2,2,1,2,0,0,2,2,2,1,0,1,0,2,1,0,2,2,1,0,1,0,0,1,2,0,0,2,0,2,2,2,1,2,1,0,0,0,2,1,2,2,1,2,0,2,2,0,0,0,1,2,1,0,1,2,1,2,0,2,2,1,2,2,2,0,1,1,2,2,1,1,2,1,2,2,1,0,0,2,1,2,1,1,0,2,1,0,1,1,2,2,0,1,0,0,2,0,1,0,1,1,2,2,1,0,1,0,2,1,1,0,0,0,1,1,2,2,2,2,2,0,2,1,2,2,1,2,2,0,2,2,2,1,0,0,2,1,2,0,1,1,1,2,2,1,0,2,2,0,0,0,1,2,1,1,2,2,0,0,0,1,0,1,2,1,2,2,2,2,2,2,1,0,2,1,2,0,0,0,2,2,0,0,1,0,0,1,0,2,0,2,0,2,1,1,2,2,0,0,1,2,0,1,0,2,0,0,2,1,2,0,1,0,0,1,1,1,2,0,0,0,1,0,1,2,0,1,1,1,0,1,2,1,0,2,1,0,2,2,0,0,1,1,1,1,1,2,2,1,0,2,2,2,1,1,1,1,1,0,0,2,2,0,1,2,2,2,2,2,2,1,1,0,0,1,2,2,1,1,0,0,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,1,1,0,2,1,1,2,0,1,0,0,2,2,1,0,0,0,2,0,1,2,1,1,0,0,1,1,1,1,1,0,0,2,2,2,0,0,2,2,1,2,1,2,0,0,2,0,2,1,1,2,2,0,1,2,0,1,0,0,1,1,1,0,2,1,0,1,0,0,1,2,2,2,2,2,0,1,1,2,2,1,0,0,0,2,2,0,2,2,0,1,0,0}
Returns: 901468682
968
968
968
{1,0,1,2,1,2,2,0,0,2,2,2,1,0,2,1,2,2,2,1,1,0,0,0,2,1,1,2,0,2,0,2,2,0,0,2,0,2,1,0,1,1,1,0,1,1,2,1,0,0,0,2,2,2,0,2,2,2,2,1,0,0,0,0,0,2,0,2,1,1,1,0,2,1,1,2,1,1,0,1,0,1,2,2,2,1,0,2,2,0,0,0,2,2,1,2,0,0,0,0,1,1,0,0,1,0,2,1,1,1,1,1,1,0,0,2,1,0,1,1,1,2,1,2,2,0,2,2,2,1,2,0,1,1,1,2,0,2,2,1,0,0,1,1,2,1,0,1,2,1,2,2,0,2,2,0,1,1,1,1,2,0,2,0,1,2,1,2,0,1,2,0,0,1,2,1,0,2,0,1,2,1,0,1,1,2,2,1,2,2,2,0,1,0,1,1,1,0,1,1,0,1,0,2,1,1,2,1,1,1,0,2,2,0,2,0,0,0,0,2,0,1,0,2,2,2,1,0,2,2,0,0,0,2,2,0,2,1,0,1,0,1,2,0,2,1,0,1,1,0,0,2,0,2,0,2,2,2,2,2,1,0,1,1,0,2,1,0,1,1,2,0,0,2,0,2,1,2,2,2,0,2,2,0,2,1,1,1,2,2,2,1,2,0,2,0,0,1,2,1,1,1,0,0,1,2,0,1,2,0,1,2,1,1,1,0,1,2,1,2,0,1,1,0,1,2,0,2,0,0,0,0,2,2,1,0,0,2,0,1,2,0,2,0,2,1,2,1,1,2,0,1,1,1,1,0,0,2,1,2,1,1,1,0,0,0,2,2,1,0,1,2,2,0,0,2,1,2,0,2,1,1,1,0,0,2,2,2,1,2,0,2,2,2,1,2,1,0,2,2,0,2,2,0,1,2,2,2,2,2,1,1,2,2,1,2,2,1,2,1,0,0,0,2,2,1,0,0,1,0,0,2,1,0,1,2,2,2,2,2,1,0,0,2,0,0,2,0,2,0,2,1,1,0,1,0,2,1,2,0,2,0,0,2,0,1,0,1,2,1,2,0,0,0,2,0,2,2,2,2,0,0,0,1,2,0,1,2,2,2,0,0,2,0,0,1,2,2,0,1,0,2,1,1,1,0,0,2,2,1,2,2,2,1,2,0,1,0,2,0,0,0,2,2,2,0,1,1,2,2,1,2,0,1,1,0,0,2,1,0,1,2,0,2,2,0,2,2,2,2,2,2,2,0,0,1,2,1,0,1,2,1,2,0,1,1,2,1,0,0,1,2,0,0,2,2,0,0,1,2,2,2,2,0,1,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,2,2,0,1,1,0,1,1,2,1,0,0,2,0,1,0,0,2,0,0,1,2,0,2,2,0,0,0,1,0,1,1,1,1,0,1,1,1,0,2,1,2,1,2,0,2,2,0,0,0,1,0,2,0,1,2,1,0,0,2,2,2,2,1,0,0,0,2,2,2,1,0,1,2,0,2,1,2,1,0,1,0,2,2,1,0,2,1,1,2,1,2,0,2,1,2,0,2,1,0,2,2,2,1,2,0,1,2,1,1,1,0,0,2,1,2,2,2,2,1,2,1,2,0,2,2,2,0,2,2,2,2,2,1,0,2,0,2,2,1,0,1,1,2,0,1,2,2,1,0,1,0,2,0,1,0,1,2,2,1,1,0,2,2,0,1,2,0,1,2,2,0,2,0,2,0,2,2,1,0,2,2,2,0,0,2,0,0,2,1,1,1,1,2,1,1,1,2,0,1,2,2,2,1,1,0,0,2,1,1,0,1,0,1,1,1,0,2,1,2,1,2,2,0,2,0,0,0,2,0,1,1,2,0,0,1,1,0,1,1,0,0,2,1,2,1,2,0,0,1,0,1,2,2,0,0,0,0,1,2,1,0,1,0,1,2,0,0,1,1,1,2,1,2,1,0,0,1,1,0,2,2,1,0,2,1,0,0,2,2,2,2,1,1,0,1,1,2,0,2,2,2,0,1,1,2,0,2,1,1,0,2,1,2,2,2,1,0,1,0,2,0,1,2,0,2,1,1,1,1,2,0,1,2,1,0,2,2,2,0,1,0,0,1,2,2,0,0,2,2,1,1,1,2,0,1,1,2,2,1,0,0,1,2,0,1,0,2,0,0,0,1,2,2,2,2,2,0,2,1,0,1,0,1,2,2,2,0,1,0,0,0,1,2,2,2,1}
Returns: 339654246
312
312
312
{0,1,2,2,0,1,1,1,0,1,1,1,2,1,0,0,1,1,2,2,0,0,1,1,1,2,0,1,0,1,1,1,1,1,1,1,0,2,1,2,2,1,1,1,1,1,0,0,1,0,0,1,2,2,0,0,2,1,1,1,1,1,1,0,1,2,2,1,0,0,1,2,0,0,2,2,0,0,0,2,1,1,0,1,1,0,0,2,2,2,1,2,0,2,1,2,1,2,0,0,1,0,2,1,0,2,2,0,1,1,2,1,0,2,0,0,1,2,0,2,1,2,0,1,2,2,0,0,0,2,1,0,0,1,1,2,2,1,0,0,2,2,1,0,2,1,0,0,1,0,2,1,1,0,2,1,0,2,2,0,1,1,0,0,1,0,0,2,2,1,1,2,0,2,2,0,0,2,2,2,1,1,0,1,0,2,0,1,0,2,0,0,1,0,2,0,2,1,1,2,1,1,0,1,2,1,0,2,1,2,0,0,1,2,1,0,2,2,1,1,0,2,0,0,1,2,0,0,0,1,0,1,1,1,2,2,1,2,0,0,0,1,1,1,1,1,1,1,2,0,2,1,2,1,2,2,2,2,2,2,0,2,2,2,2,1,2,1,2,1,2,2,0,1,2,0,1,1,0,0,0,2,2,1,2,2,1,0,0,1,0,1,1,2,1,0,2,2,0,2,1,1,0,1,2,0,1,2,1,0,1,1,0,0,2,1,1,2,0,0,1,1,0,2,0,2,2,1,2,0,1,0,2,2,1,2,0,1,0,0,0,1,1,2,0,1,2,2,0,2,0,1,0,0,0,1,0,0,2,0,0,2,0,1,2,1,0,1,1,0,2,0,1,1,1,2,1,2,2,2,2,0,1,0,2,2,2,1,0,1,1,2,1,0,0,1,0,0,1,1,1,1,2,0,1,0,0,0,0,1,2,2,0,2,0,2,1,1,2,0,1,2,1,1,0,1,1,0,1,0,2,0,1,1,1,1,0,0,1,0,1,2,1,1,2,1,0,0,2,0,1,1,1,1,2,2,2,1,2,1,2,2,2,1,2,0,2,0,0,0,2,0,2,1,0,0,0,2,2,2,1,1,2,0,0,2,1,0,0,0,1,1,1,1,2,2,2,0,2,2,0,0,0,0,2,0,0,0,0,0,2,1,1,2,0,0,0,0,0,1,0,0,0,0,2,0,1,2,1,1,0,1,0,1,2,2,0,2,2,1,0,2,0,0,0,1,0,2,0,1,0,0,0,0,0,2,1,2,1,0,0,0,2,2,0,1,1,0,2,0,1,2,0,0,2,1,1,0,1,2,0,0,1,2,2,1,0,2,0,0,1,0,1,1,2,2,1,1,0,1,1,2,0,1,1,1,1,2,1,0,0,2,2,1,2,0,1,0,0,1,1,2,2,2,0,1,2,2,0,2,0,0,2,0,2,1,0,0,1,1,1,1,2,1,1,2,2,2,1,0,1,1,1,2,1,1,2,2,2,1,1,1,0,0,0,2,0,0,1,0,2,2,1,1,0,2,2,1,1,2,1,2,1,1,2,2,0,1,2,1,2,0,1,1,1,2,2,1,2,2,2,0,2,1,2,0,0,0,2,2,2,0,2,1,1,1,0,1,1,0,2,2,1,1,2,1,0,2,2,0,1,0,0,0,1,1,1,0,0,0,1,1,0,1,2,0,1,1,2,0,1,2,1,2,1,1,2,0,2,0,0,0,1,0,0,2,0,0,1,0,0,0,2,2,2,1,2,0,1,2,0,2,1,0,1,1,1,1,1,2,0,0,0,2,0,0,2,1,1,2,2,0,2,1,0,0,2,2,0,1,2,0,0,0,0,1,1,2,0,1,1,2,0,1,0,0,0,0,0,1,0,1,2,0,2,0,2,0,0,2,2,0,0,0,1,1,2,1,1,1,2,1,0,0,1,1,0,1,0,0,0,1,1,1,2,0,1,0,1,1,0,0,0,0,0,0,0,1,2,2,2,0,2,2,0,1,1,0,0,0,2,1,1,0,2,0,2,1,0,1,2,2,1,1,2,2,2,0,1,0,1,1,0,2,2,0,2,1,2,2,0,2,1,1,2,1,0,0,2,1,2,2,0,2,2,1,1,0,2,1,2,1,0,0,2,2,0,0,2,1,1,1,1,2,1,0,0,2,2,0,1,1,2,2,1,2,2,0,1,2,2,2,0,2,1,2,2,0,0,0,0,0,0,2,0,1,2,2,2,2,0,2,1,2,1,1,1}
Returns: 113218082
529
529
529
{2,2,0,0,1,0,1,2,2,2,1,1,1,2,0,0,2,0,0,2,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,1,1,0,0,2,2,0,2,1,0,1,1,1,2,2,0,2,0,2,0,1,1,0,2,2,2,0,0,0,0,0,2,1,1,2,0,2,1,0,1,0,1,1,2,0,1,1,2,1,2,2,2,1,0,1,2,0,2,0,1,2,2,0,0,1,2,1,0,2,1,1,0,0,0,0,0,1,1,0,0,1,0,2,2,1,0,0,0,1,1,1,0,2,0,2,1,1,0,0,0,2,2,2,0,2,2,2,0,0,1,1,0,0,1,2,1,1,0,2,0,1,1,1,0,1,1,1,2,1,1,2,2,1,2,2,2,0,1,2,2,0,1,2,0,0,1,1,2,1,2,2,1,1,1,2,1,1,1,1,1,2,0,0,0,2,0,0,2,2,1,0,1,2,0,1,2,2,0,2,1,2,2,1,1,0,1,1,1,0,2,1,2,2,0,2,2,0,1,1,2,0,1,2,1,2,2,1,2,1,2,2,2,1,1,2,1,1,1,0,0,1,0,1,0,0,1,2,2,0,2,0,1,0,2,2,0,0,2,2,2,0,0,0,2,1,1,0,0,1,0,0,2,1,2,2,0,2,1,0,0,0,1,1,2,0,1,2,1,2,2,0,1,2,1,0,0,1,1,1,2,0,0,0,2,1,1,1,2,2,2,2,1,1,0,2,2,0,2,1,0,2,0,1,2,1,2,1,2,0,1,2,0,1,0,0,1,0,1,0,1,1,2,2,1,1,1,0,1,1,0,2,0,2,2,2,2,0,0,0,0,0,2,0,0,1,1,0,2,0,1,2,2,1,2,1,0,0,1,0,2,2,0,1,0,1,0,0,0,1,2,0,0,0,2,0,1,1,0,0,0,1,1,2,0,1,1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,0,2,2,2,1,2,2,2,2,2,0,0,0,1,1,2,1,2,2,0,0,0,2,0,2,1,2,0,0,1,2,0,1,1,0,1,1,2,1,2,0,2,0,2,2,1,1,1,1,2,1,2,1,0,0,2,2,2,0,0,2,1,1,0,2,1,2,2,1,0,0,0,1,2,1,0,0,0,0,0,0,1,1,2,0,0,1,1,0,1,0,2,2,2,1,0,0,0,1,1,1,0,0,2,1,1,0,0,2,0,1,1,2,1,0,2,2,1,1,2,2,1,2,0,2,2,1,1,0,1,2,1,2,2,1,0,1,2,0,0,0,0,2,2,0,1,0,2,2,1,1,0,0,0,1,1,0,0,2,2,0,0,0,0,1,1,1,2,1,1,2,2,1,2,1,1,2,2,0,0,2,1,2,1,1,1,2,2,0,2,2,1,0,0,0,1,0,1,2,2,0,1,0,2,1,1,0,2,0,2,2,0,2,2,1,1,2,1,1,2,1,2,1,0,0,0,1,0,2,2,0,0,2,0,2,1,1,0,0,1,2,1,0,1,0,1,2,0,0,2,0,2,1,0,2,1,2,1,1,0,1,0,2,1,2,0,2,1,1,0,2,2,2,0,1,1,0,2,1,0,0,2,0,0,2,2,1,2,1,0,0,1,2,1,2,2,0,1,0,1,2,0,0,0,2,1,2,1,1,0,1,1,0,1,0,0,1,1,2,0,0,2,2,2,2,1,0,1,2,0,2,1,0,0,0,0,2,1,2,2,0,0,2,1,0,1,1,1,0,2,1,1,1,2,1,2,1,0,2,0,1,0,2,2,2,1,1,1,0,2,0,0,1,0,1,1,0,0,2,1,1,2,1,1,2,2,2,0,0,1,1,1,1,2,1,1,0,0,2,0,2,0,0,2,1,0,2,1,2,1,2,2,0,1,0,1,1,2,2,0,0,2,2,0,2,0,1,1,1,2,2,1,1,0,0,2,2,1,0,1,1,2,1,1,2,2,1,2,1,2,1,2,2,2,0,0,2,1,0,2,2,1,1,0,1,0,2,0,0,1,0,1,1,1,0,1,2,2,0,1,2,2,0,0,2,1,2,0,1,2,2,2,0,1,0,2,2,0,2,1,0,1,1,1,1,2,2,0,1,0,2,1,0,1,2,2,0,0,0,2,2,1,2,1,2,1,1,0,2,1,1,0,1,0,2,2,2,0,2,2,0,1,0,1,2,1,1,0,2,0,0,0,0,1,2,2,1,0,1,2,0}
Returns: 704406032
826
826
826
{2,2,0,1,1,1,2,1,0,2,0,1,0,0,1,0,1,2,0,1,0,1,2,2,0,2,0,1,1,0,0,1,0,1,2,2,2,1,1,0,0,1,0,0,1,1,2,1,0,2,0,2,2,1,2,0,2,0,0,2,2,0,2,2,1,1,1,2,0,1,2,1,2,0,1,0,1,2,1,0,0,2,1,0,2,0,1,1,0,0,0,1,0,0,0,0,1,2,0,1,1,2,2,1,2,2,1,1,0,0,1,2,2,1,2,2,0,1,1,0,1,1,2,2,2,2,0,0,2,0,0,1,1,0,1,1,2,0,1,0,2,1,0,0,0,2,1,0,0,2,1,2,1,0,2,1,1,2,1,1,1,2,0,0,2,0,1,1,2,0,1,2,1,0,1,0,1,0,2,0,2,2,2,1,2,1,2,2,2,0,1,1,1,2,1,2,0,2,2,1,1,1,2,1,1,2,0,1,0,1,0,0,1,0,2,0,1,1,0,2,2,2,2,0,2,1,2,2,0,0,1,0,1,1,2,1,1,1,0,2,1,0,0,0,2,1,0,0,0,2,1,0,0,2,1,2,0,1,1,2,2,2,2,2,1,1,2,2,1,2,2,2,2,0,2,2,0,2,0,0,1,1,0,2,0,0,1,0,0,1,0,2,1,1,0,1,1,2,2,2,0,2,2,2,2,1,0,0,0,2,2,1,1,2,2,0,1,1,0,1,2,2,2,2,0,1,1,0,2,1,1,0,0,1,0,1,1,1,0,0,2,1,0,0,1,1,1,1,1,2,0,2,1,2,2,2,0,0,1,1,0,2,0,1,1,2,0,1,0,1,2,1,2,1,1,1,2,1,1,1,0,2,2,2,1,1,0,1,1,1,0,0,2,2,0,1,0,1,2,2,0,1,0,0,1,2,2,2,0,1,1,1,1,1,1,2,1,0,2,0,2,0,0,0,0,0,2,2,2,2,1,1,2,1,2,1,2,0,2,0,2,1,1,1,0,1,1,1,0,2,1,0,2,0,2,1,2,1,0,0,1,1,0,0,1,0,0,0,1,2,0,1,0,0,0,1,0,2,2,1,2,2,2,2,2,0,1,0,2,1,2,0,1,1,2,1,2,1,1,1,2,0,0,2,0,2,1,0,0,1,1,0,0,2,2,0,2,0,2,2,2,2,2,2,2,0,2,1,0,0,2,0,2,2,0,1,1,0,0,2,2,2,1,1,2,2,2,2,0,0,2,1,0,1,1,2,1,2,1,1,2,0,0,2,2,2,2,2,2,0,0,1,0,2,0,1,2,1,1,0,0,2,0,1,1,0,0,1,1,2,1,0,0,1,1,1,2,0,0,1,0,2,2,2,0,2,2,1,2,2,2,2,2,0,1,1,0,1,1,1,2,1,1,0,2,2,2,0,2,0,1,1,2,1,2,1,0,2,0,1,1,2,2,1,2,1,0,2,1,0,1,0,1,2,2,0,2,0,2,0,1,0,1,0,2,0,0,0,2,0,1,2,1,2,0,1,1,2,1,2,2,1,0,1,1,0,2,2,2,1,0,2,2,2,1,0,0,2,0,0,0,1,0,2,1,1,0,0,0,2,0,1,1,1,2,1,1,1,1,0,2,1,0,2,0,2,0,1,1,2,0,2,2,2,0,1,0,0,0,1,0,1,2,1,2,2,2,0,0,0,0,2,2,1,2,2,1,1,1,1,2,1,0,0,0,1,0,1,2,0,0,2,1,0,2,2,2,1,1,2,2,0,2,0,2,0,0,1,1,1,2,2,1,1,1,0,1,1,2,2,1,1,2,2,1,1,0,1,1,0,2,0,0,1,2,1,2,0,2,1,2,1,2,1,2,0,2,2,0,1,2,0,0,2,1,0,0,0,1,2,1,1,0,0,0,2,1,1,2,2,1,0,1,2,1,0,1,1,2,1,2,2,2,2,0,2,2,2,0,1,2,0,1,2,1,2,1,1,0,1,2,2,0,1,0,2,1,0,2,0,1,1,1,1,2,1,2,0,0,2,0,2,2,2,0,2,0,0,2,1,1,2,1,0,2,1,1,1,2,0,0,2,1,0,2,2,0,1,1,0,2,0,1,2,0,1,0,2,0,1,2,1,2,1,0,2,1,0,0,1,1,1,2,0,2,2,1,0,2,2,1,2,1,1,2,0,1,1,0,1,1,1,0,2,2,1,2,1,1,0,2,1,1,1,1,1,0,2,2,2,2,1,0,2,2,1,2}
Returns: 113218082
274
274
274
{1,1,1,2,1,0,0,2,1,0,2,2,1,1,2,0,2,2,1,0,0,1,2,0,1,1,2,2,0,2,2,1,1,2,0,2,0,0,0,2,0,0,1,1,0,2,2,1,1,0,0,0,2,1,1,0,2,2,1,0,0,0,0,0,1,2,2,1,0,0,0,0,2,0,2,1,0,1,0,1,0,1,2,0,2,0,0,2,1,1,2,2,0,2,1,0,2,2,1,0,1,0,1,2,1,0,0,1,0,2,2,2,1,2,1,1,1,0,0,1,0,2,1,1,0,1,0,1,0,0,2,2,0,1,1,0,0,1,1,1,2,0,0,0,1,2,2,2,1,0,1,1,2,2,1,0,1,1,1,2,1,2,0,0,2,2,0,0,1,0,1,2,2,0,0,0,1,1,0,0,0,0,2,0,0,0,2,1,0,2,1,1,0,2,0,2,1,0,1,2,2,0,0,0,2,1,2,2,0,0,2,1,2,1,0,0,0,1,2,0,2,2,1,1,1,1,1,2,1,1,0,2,0,0,0,0,0,0,1,0,2,0,2,1,1,1,1,1,0,0,2,0,2,1,1,2,1,1,1,1,0,1,1,2,2,0,0,2,0,1,1,0,1,1,1,0,1,1,0,2,0,2,1,0,2,1,0,2,1,1,0,1,1,1,0,0,1,1,1,0,2,1,0,1,2,0,0,0,0,0,2,2,2,0,1,1,2,2,1,2,0,1,0,2,2,2,2,1,0,0,1,2,1,1,0,2,1,1,0,1,0,1,2,0,1,0,1,1,1,0,0,0,2,2,1,2,1,1,0,1,2,2,2,0,0,2,2,1,2,2,0,0,0,1,1,2,2,2,0,0,2,0,0,0,0,2,1,1,1,2,1,0,2,0,0,1,2,1,1,1,2,0,1,0,2,0,2,1,1,2,0,2,0,0,2,0,2,1,2,1,0,1,0,0,0,0,1,1,1,0,2,1,1,2,0,2,0,2,0,2,0,2,0,1,0,0,1,0,0,0,2,2,1,2,1,1,1,0,0,1,1,0,1,1,0,0,1,0,1,0,2,2,2,0,1,0,0,1,0,0,0,2,0,1,0,1,2,0,0,2,0,0,0,0,1,2,2,0,0,0,2,2,0,0,0,1,1,1,2,0,1,2,2,1,0,0,0,0,1,0,1,1,1,2,0,0,2,0,1,1,2,1,1,2,1,1,1,0,2,0,0,0,0,0,1,2,1,1,2,2,1,0,0,0,1,0,0,2,2,0,0,0,2,2,1,1,1,0,1,2,1,0,1,1,1,1,2,2,0,2,2,1,2,1,1,2,1,1,1,1,0,1,0,1,0,1,2,0,1,2,0,1,1,0,0,2,1,1,1,0,1,1,1,2,2,2,0,1,2,2,0,1,1,1,1,2,0,2,1,0,0,2,1,1,0,2,1,0,0,0,0,0,1,2,2,1,2,2,1,2,1,0,1,1,1,0,0,1,1,2,1,2,0,0,2,2,1,0,1,2,0,0,1,1,2,1,0,1,2,2,2,0,2,2,1,2,0,2,1,0,1,2,2,2,1,1,1,1,0,0,0,0,0,2,2,2,2,1,2,0,1,2,1,0,2,2,2,0,1,1,1,0,1,0,1,1,0,0,2,2,2,2,1,1,2,0,0,1,0,0,2,2,1,1,0,2,0,0,1,2,1,2,2,0,1,2,2,1,2,2,2,0,1,0,1,1,2,0,0,0,2,2,1,2,2,0,2,1,1,0,1,1,1,2,0,0,0,1,1,0,1,2,1,1,2,2,2,2,1,2,1,0,0,2,1,1,0,1,0,2,0,0,0,1,1,0,0,1,1,2,1,0,0,1,0,0,1,2,1,1,0,0,2,2,1,0,0,2,0,0,1,0,0,1,1,1,0,2,0,2,0,1,1,1,1,1,2,1,2,1,0,2,0,1,1,2,0,2,2,0,1,2,0,0,1,1,1,1,1,2,0,1,1,1,0,2,0,1,0,0,1,2,2,0,2,2,0,0,0,2,0,1,0,2,0,1,0,0,0,2,1,0,1,0,2,0,2,2,0,2,2,2,0,0,1,1,1,1,2,0,1,1,2,2,1,0,0,0,1,1,2,0,0,2,2,2,0,0,1,2,1,0,2,2,1,1,0,2,0,0,2,1,0,0,2,1,1,1,2,1,2,1,1,2,0,2,1,0,0,1,0,1,1,2,2,1,1,1,2,2,2,0,2,1,0,0}
Returns: 704406032
721
721
721
{2,2,2,0,2,1,0,1,0,2,2,2,2,0,1,0,0,2,2,1,0,2,1,0,2,2,0,1,2,0,1,1,2,0,2,2,2,2,0,1,2,1,2,2,0,0,0,2,2,0,2,1,2,2,2,1,1,0,1,2,0,1,1,2,1,0,1,2,2,0,1,1,1,2,2,2,1,0,0,1,2,0,1,0,0,1,1,1,1,1,0,0,0,2,2,2,0,0,2,0,1,0,0,1,0,2,0,0,2,2,0,1,2,2,2,1,2,2,1,0,0,2,0,2,1,0,1,1,0,0,1,1,1,0,2,0,2,1,1,2,2,2,0,1,2,0,1,1,0,1,1,2,0,1,2,0,2,2,2,1,1,1,1,0,2,0,1,2,0,2,2,1,2,2,1,0,1,2,1,2,0,1,1,0,2,2,2,2,1,0,0,0,1,2,0,0,1,0,1,1,0,2,2,1,2,1,0,0,2,2,0,0,0,1,2,2,2,0,1,2,2,0,1,1,2,2,2,0,1,1,0,2,2,2,0,1,1,0,2,0,2,0,0,1,2,1,2,0,2,2,1,2,2,0,2,1,1,1,1,2,2,1,2,0,0,1,0,0,0,1,2,0,0,0,2,1,1,2,1,2,1,1,1,0,2,2,2,1,0,0,0,1,1,0,1,2,1,0,1,2,0,2,0,1,2,2,2,1,0,2,2,1,2,1,1,1,1,1,0,1,1,1,1,0,1,1,1,2,1,2,1,0,0,0,2,2,2,2,2,0,1,1,2,2,1,1,1,2,1,2,1,1,1,0,0,1,0,0,1,0,2,2,2,1,2,0,2,0,0,0,1,2,2,1,2,1,1,1,2,0,0,0,1,1,0,1,0,1,2,1,1,1,2,1,2,2,0,2,1,2,1,2,2,2,1,2,0,0,1,1,2,2,1,2,1,1,1,2,0,0,0,1,2,1,1,2,2,1,1,0,0,1,0,0,1,2,1,1,2,1,2,2,2,0,1,0,2,1,2,0,0,0,2,0,1,1,1,2,1,0,0,0,1,2,1,0,2,1,1,1,0,1,1,0,1,2,2,0,0,2,0,0,1,0,0,1,1,0,1,1,1,2,0,0,1,0,0,0,1,2,2,0,0,0,1,2,2,0,2,2,1,2,2,2,0,2,2,1,0,0,2,1,1,1,1,1,2,0,1,0,2,0,0,2,0,1,2,2,1,0,1,0,1,2,2,1,2,0,2,0,0,2,0,0,2,1,2,2,0,2,1,2,1,0,0,0,0,2,1,0,1,1,1,2,2,1,1,0,1,1,2,0,1,0,0,2,0,0,2,2,0,1,1,2,0,2,0,1,0,1,2,1,2,1,1,1,0,2,0,0,1,0,1,2,0,1,1,0,0,0,0,1,0,0,2,2,0,0,1,2,0,0,2,1,2,1,0,1,0,2,0,1,2,0,1,2,1,1,0,2,1,1,0,0,2,1,1,1,1,2,2,2,0,1,1,1,1,0,2,1,1,2,1,2,2,0,1,1,1,1,1,2,2,2,2,0,2,0,2,2,0,2,1,1,0,1,2,1,0,1,0,1,1,0,2,0,2,2,1,2,0,1,1,1,0,1,0,1,2,1,2,1,2,0,2,0,0,1,1,1,1,0,2,2,1,0,0,2,2,0,2,2,0,2,0,1,1,2,1,0,2,2,0,1,1,2,2,0,1,1,0,1,2,1,2,1,0,0,1,2,0,2,1,0,0,1,1,1,2,2,2,2,2,0,2,1,2,1,0,1,1,2,0,2,2,2,0,0,0,2,2,1,0,1,2,0,1,2,1,2,1,0,2,0,1,0,2,1,1,1,0,1,0,1,0,1,1,1,1,2,1,2,1,1,1,2,0,2,2,2,1,0,2,1,2,0,1,2,2,2,2,2,2,1,1,1,0,1,0,1,1,0,1,0,1,0,0,2,2,0,0,0,0,2,2,2,1,0,2,1,2,1,2,1,0,1,2,0,1,2,0,0,1,1,2,0,2,2,0,2,0,2,0,0,0,2,0,0,2,0,2,0,0,1,0,1,0,2,2,1,2,0,0,2,1,2,1,0,0,2,2,2,2,0,2,1,1,1,0,1,2,1,0,1,1,0,0,1,2,0,2,0,1,2,0,1,2,2,0,1,0,0,2,0,1,1,1,1,1,0,1,2,1,1,1,1,1,2,2,2,0,2,1,2,2,2,1,2,2,1,2,1,0,0,1}
Returns: 901468682
671
671
671
{2,0,1,2,2,1,1,0,2,0,2,1,1,0,2,2,0,1,1,1,2,2,2,2,2,1,2,0,1,2,0,0,0,0,2,0,1,2,2,2,2,1,1,2,2,1,2,1,1,0,0,0,1,0,0,1,2,0,0,1,2,2,2,0,0,0,0,2,1,2,1,1,1,1,1,0,2,1,2,2,1,1,0,0,0,1,2,1,0,1,2,1,0,0,0,0,1,0,1,2,1,0,1,1,1,2,2,2,1,0,1,1,0,1,0,2,2,1,2,2,2,1,2,0,2,1,2,2,2,0,0,0,0,2,2,1,2,1,0,2,1,2,0,2,1,2,1,2,1,0,2,1,2,1,2,2,2,2,1,0,2,1,2,1,0,0,0,0,2,0,2,2,1,2,1,1,2,0,0,0,2,1,2,0,1,0,1,0,2,1,0,2,1,2,1,0,2,2,1,0,2,2,0,1,2,0,1,2,0,2,1,0,2,0,0,0,2,0,1,0,1,0,0,0,0,0,2,2,1,0,2,0,0,0,0,0,1,1,2,0,0,2,2,2,0,0,0,0,0,2,1,2,0,1,0,2,1,0,1,1,1,2,2,1,1,0,0,1,1,2,2,0,0,0,2,0,2,1,2,1,0,0,2,1,0,2,2,2,0,0,0,2,1,0,0,1,2,2,2,0,1,2,1,2,0,2,1,0,0,0,1,1,2,0,2,0,2,1,1,1,0,1,2,0,2,1,2,2,2,2,0,1,1,2,1,1,1,0,1,2,0,1,0,0,2,1,0,1,1,1,2,2,1,0,2,2,2,0,2,1,0,1,1,2,2,0,2,2,2,0,0,0,1,1,2,2,1,0,0,2,1,1,1,1,0,0,2,1,2,0,0,0,0,1,0,0,1,2,0,0,1,1,0,2,0,1,2,2,0,0,1,0,2,0,0,2,1,0,0,2,1,0,1,1,0,0,2,2,1,2,1,1,2,2,0,0,2,0,1,2,2,1,2,2,2,2,0,1,2,1,0,2,2,0,2,0,0,1,1,2,1,0,0,2,0,0,2,1,1,1,0,1,0,2,0,0,1,2,0,2,1,1,1,0,2,2,1,0,1,1,1,0,2,1,2,2,0,2,1,0,1,0,1,1,2,1,2,1,0,0,0,2,2,2,0,2,0,0,2,2,2,0,2,2,2,2,0,1,2,0,2,1,0,0,0,2,1,2,2,2,0,0,0,2,1,1,2,1,1,2,1,2,0,1,1,1,2,2,2,0,1,2,2,2,1,2,0,2,0,0,0,2,2,2,0,1,1,1,0,0,1,1,0,0,2,2,1,1,1,2,2,1,0,2,2,1,0,0,0,0,0,1,2,2,2,1,0,2,2,1,0,2,0,0,2,2,2,0,1,2,0,1,1,1,1,1,1,1,1,1,2,0,0,1,2,2,1,0,2,2,1,1,0,0,1,0,2,2,2,1,0,2,0,0,2,1,0,1,0,2,1,2,1,2,0,0,2,1,1,1,2,2,1,2,2,2,0,2,2,0,0,2,2,0,2,1,2,1,1,0,2,0,1,0,1,1,2,0,1,2,0,0,0,1,2,2,2,1,2,0,1,0,1,2,2,1,1,2,1,0,2,2,2,2,1,1,2,2,1,2,0,2,2,2,0,0,1,1,1,2,2,1,2,2,2,2,2,1,1,1,2,0,0,1,2,0,2,2,0,0,0,2,2,2,1,2,0,1,0,2,2,2,2,1,0,2,1,2,1,0,2,0,0,1,1,0,0,2,1,2,1,2,2,2,1,2,0,1,2,2,2,2,1,0,2,1,0,2,0,0,2,2,2,2,1,0,1,2,0,0,1,2,2,0,2,1,0,0,2,1,2,0,0,0,1,2,1,2,0,0,2,0,1,2,2,0,2,1,0,1,2,2,2,1,1,0,2,2,1,0,1,2,2,1,2,1,0,1,2,2,0,0,2,2,1,0,2,0,0,0,0,1,0,0,2,0,0,1,0,0,0,2,1,0,0,1,1,2,2,1,1,2,1,2,1,2,0,0,1,2,0,2,0,0,2,2,1,2,1,2,2,2,2,2,0,0,1,2,1,0,1,0,0,0,0,0,2,0,2,1,0,1,2,0,0,2,1,2,0,2,0,2,2,0,2,2,2,1,0,1,2,2,1,0,0,2,2,1,2,0,1,1,2,0,1,0,1,1,2,0,1,1,2,1,2,1,1,0,1,1,1,0,1,2,1,0}
Returns: 704406032
900
900
900
{0,0,0,0,0,2,2,2,2,2,1,1,1,2,0,2,0,2,0,1,0,0,0,2,0,2,1,0,2,0,2,0,0,1,0,0,2,2,0,2,1,0,2,1,0,1,2,2,1,2,2,1,1,1,0,0,0,2,0,1,0,0,1,0,1,0,1,0,0,0,0,1,0,1,2,1,1,0,0,2,2,2,2,0,0,0,2,0,1,0,2,2,0,2,1,2,2,2,0,0,0,0,0,1,1,0,1,2,1,1,2,0,2,2,2,1,2,1,2,1,2,2,1,2,0,0,0,0,2,1,0,0,1,1,0,1,0,0,1,0,2,0,0,2,0,0,1,1,2,0,1,1,1,0,0,1,2,2,0,1,1,1,1,0,1,0,2,0,2,1,1,1,1,2,1,2,0,2,1,0,2,2,0,1,2,1,2,1,0,0,1,2,0,1,1,2,0,2,0,2,2,0,1,1,0,2,1,0,1,1,0,2,0,2,2,2,1,1,2,2,1,1,0,1,1,0,0,2,2,2,1,1,2,0,1,0,1,2,0,0,2,0,0,1,2,2,2,1,2,2,0,2,2,1,0,2,1,1,0,2,0,2,1,0,0,0,1,0,0,0,2,2,1,2,1,2,2,1,0,0,0,0,1,2,1,0,0,1,0,2,1,2,2,2,0,0,0,1,0,1,2,1,2,2,0,2,1,0,2,1,1,0,2,0,2,0,1,0,0,2,0,0,2,2,1,1,1,2,1,2,0,2,2,0,2,2,2,2,1,2,1,1,1,0,2,2,2,2,1,0,2,0,2,2,2,1,0,2,2,0,1,0,2,0,2,2,0,0,1,0,0,0,1,0,0,2,0,1,1,0,1,1,2,0,1,2,0,0,1,2,1,0,2,0,2,1,1,1,1,0,0,0,1,0,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,0,0,2,2,1,1,0,2,2,1,0,1,0,2,0,0,1,0,2,1,1,1,2,0,0,0,2,2,2,1,0,0,1,1,1,1,0,2,2,1,2,0,2,2,0,0,1,2,1,2,2,2,1,0,2,2,1,1,1,0,2,2,1,0,2,1,2,0,2,1,1,1,2,1,2,1,0,1,2,0,1,2,2,1,2,0,0,2,1,1,0,2,2,2,2,1,0,2,0,2,1,0,2,1,2,2,2,1,0,1,0,2,1,2,1,0,1,1,2,2,2,0,0,2,2,2,2,1,2,0,1,0,2,0,2,2,1,2,2,0,0,2,1,1,0,0,0,1,0,2,0,1,0,0,0,2,2,2,2,2,1,0,2,0,0,1,0,2,2,1,2,2,1,2,0,2,1,1,1,2,2,2,0,1,2,1,0,0,1,0,1,2,2,1,1,2,1,2,0,2,2,0,0,1,1,1,2,0,0,1,1,2,0,1,0,2,2,0,2,1,1,1,2,0,2,1,0,1,2,1,0,0,2,2,0,2,1,1,1,1,1,0,2,0,0,2,2,2,2,0,2,0,1,2,2,1,0,0,2,0,0,0,0,1,2,0,2,0,2,2,2,0,1,2,0,1,1,1,2,2,1,2,0,2,1,1,1,0,0,0,2,0,1,1,2,0,0,2,0,0,1,2,2,2,1,2,0,2,2,1,2,1,1,0,1,0,0,1,0,2,1,0,0,0,2,1,0,1,0,2,1,2,0,2,2,1,0,2,0,1,1,0,2,2,1,0,1,0,1,2,0,2,2,1,2,0,1,1,0,2,2,2,0,0,0,0,0,2,1,1,1,1,2,0,0,0,0,1,1,1,1,1,2,2,1,2,0,0,1,1,0,2,1,0,0,0,0,2,1,0,0,2,1,0,1,2,1,0,0,2,0,1,1,2,1,0,1,2,1,2,1,1,2,0,1,2,2,0,0,0,1,2,0,0,0,1,0,0,2,2,0,0,2,2,1,1,1,2,0,1,1,0,0,2,1,1,1,0,0,2,1,0,1,2,1,0,0,1,1,2,2,1,1,1,2,0,2,1,2,2,2,0,1,0,2,1,1,0,2,1,1,0,1,1,0,0,0,2,1,2,0,0,2,1,0,2,1,1,1,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,2,0,1,2,0,0,0,1,2,2,1,2,1,0,0,2,2,0,0,2,1,1,0,0,0,1,1,1,0,2,0,0,0,1,2,1,1,2,2,2,1,0,0,2,0,2,2,2,0,1}
Returns: 901468682
281
281
281
{1,0,1,0,2,0,1,2,1,0,0,1,2,2,0,2,2,0,1,1,0,0,1,1,2,1,2,2,1,0,2,1,2,2,0,1,2,1,1,2,1,2,2,2,1,1,1,1,0,2,2,1,1,2,2,1,0,2,1,0,2,2,2,1,2,2,2,2,2,0,2,2,2,1,1,1,0,0,1,1,0,1,1,0,1,0,0,1,2,1,1,0,0,2,0,1,0,1,0,1,1,2,0,0,2,2,0,1,2,0,1,1,0,0,2,0,2,1,0,1,2,0,1,1,1,1,0,0,2,1,2,2,0,1,0,0,0,1,2,2,1,1,1,2,0,2,0,1,1,1,0,2,2,0,2,1,2,1,2,2,0,0,1,0,2,0,1,2,2,0,1,1,1,2,0,0,0,0,1,2,1,0,0,1,2,0,0,1,2,0,0,1,2,2,1,2,0,1,1,0,2,2,2,2,1,1,2,0,2,2,1,1,2,1,0,1,2,2,0,2,0,0,1,0,0,0,2,0,2,1,2,0,0,1,0,2,1,2,1,1,0,2,0,1,1,0,1,2,1,0,1,1,2,0,1,1,1,1,1,2,1,0,1,0,0,1,0,1,1,2,0,0,1,1,1,2,1,2,2,0,0,1,2,2,0,0,1,2,2,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,0,0,0,1,2,0,0,0,1,2,2,1,2,2,2,2,0,1,2,1,2,0,2,1,1,1,1,2,2,0,0,1,0,1,2,2,2,1,2,1,2,2,0,2,2,2,0,2,1,1,0,1,2,1,1,0,1,1,1,0,0,1,1,2,2,2,1,0,2,0,2,0,0,2,1,2,0,1,2,1,1,1,2,1,1,2,2,1,2,1,0,0,2,0,2,2,2,1,0,2,0,1,2,0,0,2,1,1,0,1,1,0,0,0,2,0,0,2,0,0,0,0,0,2,1,2,2,0,1,0,0,1,2,2,1,0,1,1,0,2,2,2,1,2,0,1,1,0,0,1,1,2,1,0,2,0,2,0,2,2,0,2,2,1,0,0,2,2,1,1,2,2,0,0,2,0,2,2,2,0,0,0,1,2,1,2,2,0,1,2,1,0,0,1,0,0,0,2,2,0,2,0,2,2,2,2,1,2,1,2,1,2,1,0,1,0,0,0,0,2,2,0,1,2,2,1,0,2,2,0,0,2,2,0,0,1,1,2,2,1,1,1,1,0,0,2,1,2,1,1,0,2,0,0,0,2,1,0,2,0,1,0,2,0,1,0,2,2,2,0,0,1,2,2,0,0,0,1,2,1,2,2,1,2,2,1,1,1,2,2,1,0,1,1,2,0,1,1,2,2,2,1,1,1,1,2,0,1,2,0,2,2,0,2,2,0,0,0,1,0,1,0,0,1,0,0,2,2,0,2,0,0,0,1,1,2,1,2,1,0,0,2,0,0,1,1,0,0,0,1,1,0,1,1,2,2,0,0,2,1,0,0,2,1,2,0,0,1,0,0,2,2,1,0,1,0,1,0,2,1,0,2,0,0,0,1,1,1,2,1,2,2,2,1,1,1,2,0,1,1,2,2,0,2,0,0,1,0,1,1,2,0,2,2,0,2,0,0,1,2,2,1,2,0,0,0,2,0,2,1,1,0,1,1,1,2,2,1,1,0,2,1,0,0,2,0,0,1,1,0,0,1,1,1,2,2,1,2,2,2,2,0,2,0,0,0,2,1,1,0,0,1,2,0,1,1,0,0,2,1,0,1,1,0,0,1,0,0,2,2,1,2,0,1,2,1,0,1,0,1,1,0,0,2,0,0,2,2,1,0,0,0,2,1,0,2,0,1,2,1,2,1,1,2,2,0,0,0,2,1,0,1,0,1,2,1,1,1,1,2,2,1,0,1,0,1,2,1,2,2,2,1,0,1,2,0,1,2,1,2,2,0,0,1,1,1,0,2,1,1,0,0,1,2,1,2,1,1,1,0,0,0,1,2,2,2,2,2,2,2,1,0,1,2,0,2,0,0,2,2,1,1,1,0,1,0,2,0,1,1,1,2,2,1,0,2,1,2,2,1,2,2,2,0,1,1,1,1,0,1,2,2,2,0,0,1,2,0,2,2,1,2,0,0,2,2,2,1,1,1,0,0,2,2,1,2,1,1,2,1,2,1,2,2,2,1,1,0,1,1,0,0,0,0,0,0,0,2,1,1,2,0,2,0,2,2,2,0,0,2}
Returns: 967156232
665
972
972
{0,0,0,0,0,1,1,2,1,0,2,0,1,1,0,1,0,0,0,2,2,0,1,2,1,0,2,2,2,1,0,2,2,1,1,2,1,1,1,0,0,0,0,2,1,0,1,2,1,2,0,0,2,2,0,1,1,2,2,2,1,2,0,0,0,0,1,0,1,1,0,0,1,0,1,2,1,0,1,1,0,2,1,1,2,0,0,2,0,0,1,1,0,2,0,0,2,0,1,2,0,1,2,1,2,0,1,2,2,2,2,2,1,0,1,2,1,1,0,2,1,0,0,0,2,1,2,2,1,2,0,0,2,1,2,0,0,2,1,1,0,1,0,1,2,2,0,2,2,0,2,0,0,1,2,1,0,2,2,1,2,1,2,2,2,0,2,2,2,1,2,2,2,2,0,1,2,0,0,0,1,0,1,0,1,1,2,1,0,1,1,0,0,2,0,1,1,1,1,1,0,0,0,2,0,1,0,1,2,1,0,1,1,1,0,1,2,2,0,2,2,0,2,1,0,1,0,0,2,2,1,2,2,1,2,1,0,2,2,0,1,1,1,0,0,0,0,1,2,2,1,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,2,2,0,2,2,2,1,0,1,1,1,1,0,2,1,0,0,0,1,0,1,2,1,1,2,0,2,2,0,0,0,1,0,0,0,2,2,1,1,2,0,1,1,1,2,0,2,1,0,1,0,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,2,2,1,2,2,1,0,0,0,0,2,1,2,0,1,2,2,2,0,1,0,0,1,0,1,1,2,1,2,2,1,0,2,1,1,1,2,2,1,2,0,2,0,1,0,1,2,1,2,1,0,2,1,0,2,1,1,0,0,2,0,0,0,2,1,0,2,2,0,0,2,0,0,2,1,0,2,1,1,2,0,2,2,1,0,2,0,1,0,2,2,0,0,2,0,0,0,1,2,1,0,1,1,1,1,1,2,0,2,1,1,2,0,0,2,1,1,1,0,2,1,0,0,0,1,1,2,1,1,1,0,1,0,2,2,2,1,0,1,1,0,1,2,2,0,2,1,1,2,2,2,0,1,1,1,1,1,0,1,1,0,1,2,1,0,2,1,0,0,0,0,2,2,1,2,1,1,1,0,0,1,0,2,2,1,2,0,1,1,1,1,1,2,2,2,1,2,2,0,2,0,0,1,0,2,2,0,2,1,1,1,2,1,0,0,1,1,2,0,0,1,0,2,0,0,2,1,0,1,0,1,2,0,0,2,1,2,1,0,2,0,0,1,0,0,2,0,1,0,0,2,1,1,1,1,1,0,1,2,2,2,1,2,0,1,1,2,0,2,0,2,1,0,1,1,2,0,0,2,2,2,0,1,1,2,1,1,2,0,2,1,2,1,1,1,1,0,2,0,1,2,1,0,2,1,2,1,1,1,0,0,0,1,1,2,0,1,2,0,1,0,1,1,2,2,1,0,0,2,0,0,1,1,2,1,0,2,0,0,1,2,1,2,1,1,1,1,2,1,0,2,1,2,1,2,1,0,0,2,2,0,2,2,0,0,2,2,0,2,2,2,1,1,0,0,1,1,0,2,2,2,1,1,0,0,0,0,0,1,1,0,0,2,1,1,0,2,2,2,2,0,1,0,1,0,2,0,2,2,0,2,1,0,0,2,2,0,1,1,1,2,2,0,1,0,1,2,1,1,2,1,2,2,1,0,2,2,1,2,0,0,1,0,1,2,2,2,2,0,1,2,2,0,2,1,1,0,2,0,2,2,0,0,0,0,0,2,0,2,1,0,0,2,0,2,2,2,0,1,0,1,1,0,0,0,1,2,1,1,2,0,2,1,1,1,0,2,0,0,0,1,2,0,0,2,0,1,0,2,0,0,0,2,0,2,2,2,1,1,2,1,1,0,0,1,0,0,1,2,2,0,2,1,0,0,0,0,1,1,0,2,0,2,1,2,2,2,1,0,0,2,0,2,0,2,0,0,1,0,0,1,2,2,0,1,1,2,0,1,1,1,1,2,0,0,1,1,0,0,0,1,0,2,0,2,2,1,1,1,0,0,0,1,2,2,2,0,1,1,1,1,2,0,1,1,0,1,1,2,0,1,1,0,0,0,0,2,2,0,0,2,1,0,0,0,0,1,1,1,0,0,1,0,0,0,1,2,0,1,2,1,2,1,0,0,0,0,2,1,0,2,0,1,2,0,2,2,2,0,1,0,0,1,2,2}
Returns: 0
445
884
884
{0,1,1,0,0,2,1,1,0,1,1,2,2,1,2,1,0,2,0,1,1,1,1,0,0,0,1,1,1,1,1,0,1,2,1,2,1,2,0,2,0,1,1,0,1,2,1,1,2,2,1,0,0,1,2,1,2,0,1,2,0,0,2,0,1,2,1,0,0,1,2,1,1,2,1,1,2,2,0,1,0,2,2,2,2,2,2,0,0,1,0,1,1,0,2,2,1,0,2,1,0,2,2,2,2,0,0,1,2,1,2,0,0,0,0,2,1,1,2,0,1,0,1,2,2,0,0,2,2,1,1,2,1,2,0,0,1,1,2,2,0,2,2,2,0,0,0,2,0,2,2,2,2,0,1,2,1,0,0,1,2,2,0,2,0,0,2,0,2,0,0,1,1,1,1,0,0,2,1,1,1,0,0,2,2,0,0,1,2,0,0,2,1,2,0,1,1,2,1,2,0,0,2,1,2,1,0,0,0,2,2,1,0,2,0,1,0,0,0,0,1,2,0,1,1,1,2,2,0,1,2,2,1,1,0,2,1,0,0,1,1,1,0,0,1,2,1,0,1,0,2,2,2,1,1,1,2,1,2,0,1,1,1,1,0,0,1,2,1,1,0,2,1,2,0,2,1,0,2,1,0,1,1,0,2,1,1,1,1,0,2,1,2,1,2,0,1,2,1,2,2,1,0,1,1,0,2,1,2,2,0,1,2,1,1,2,2,1,2,1,1,0,2,0,0,0,2,1,2,0,0,0,0,0,1,1,2,2,2,2,2,2,1,1,0,0,2,2,1,1,2,1,1,2,1,0,0,0,0,0,1,2,2,1,0,1,0,1,1,2,0,2,1,0,2,0,0,2,1,1,0,0,0,2,1,1,1,0,2,0,0,2,2,1,2,1,0,1,2,2,2,2,2,2,1,0,1,1,2,2,0,2,1,0,1,0,0,1,2,2,2,0,0,0,0,1,0,1,1,0,1,1,0,1,1,2,0,0,1,0,2,1,2,2,0,2,1,1,0,1,1,0,2,1,2,2,1,2,1,2,0,0,0,2,1,0,0,0,0,0,0,2,2,0,1,0,2,1,0,1,1,0,1,0,0,2,1,2,1,1,0,0,2,1,0,1,1,1,2,1,1,0,2,1,0,1,0,1,2,2,1,2,1,2,1,2,2,1,2,1,2,1,1,2,0,2,0,1,1,1,1,1,2,1,2,0,0,1,2,1,2,1,1,1,0,2,0,0,1,0,0,2,0,2,0,1,0,0,1,2,0,2,2,2,0,1,0,0,1,0,1,2,2,0,2,2,2,1,0,0,0,0,2,1,1,0,2,0,2,0,1,1,1,1,0,0,1,1,0,2,2,0,1,0,1,2,1,0,0,0,2,1,2,2,0,1,2,2,1,0,1,2,2,1,1,2,1,1,2,0,0,2,0,0,2,1,0,2,2,1,0,1,1,0,2,1,2,0,0,1,1,0,2,1,1,2,0,0,1,0,0,0,2,0,1,0,0,2,0,0,0,0,0,0,1,2,1,1,2,0,1,0,1,1,1,1,2,0,1,0,2,1,0,2,1,0,0,0,2,2,1,0,1,1,2,2,1,0,2,2,1,2,2,1,0,1,1,1,2,1,2,2,2,1,2,1,0,0,1,2,1,1,1,1,0,2,0,0,0,2,2,2,2,0,1,0,0,2,1,0,0,1,1,2,2,2,0,2,2,2,2,2,1,2,1,2,1,2,2,1,2,0,2,1,1,0,0,2,2,1,2,2,1,1,2,0,1,1,2,0,1,2,2,0,1,1,0,0,1,1,1,2,0,1,1,1,2,1,2,0,1,0,2,2,1,2,2,2,1,2,1,1,0,0,0,1,1,0,0,1,1,1,1,2,2,0,2,2,2,1,2,2,1,2,0,2,1,2,1,0,0,2,2,0,1,0,2,1,2,1,2,2,2,2,0,1,1,2,1,0,1,2,0,0,1,0,1,1,2,2,2,0,2,1,2,2,0,2,2,2,0,2,1,1,0,1,1,1,1,0,2,2,0,0,1,0,0,1,1,1,0,0,2,2,1,2,1,0,1,0,0,2,0,2,2,1,1,2,2,0,1,1,2,2,1,2,2,1,2,2,2,0,2,2,0,2,2,2,2,2,2,2,1,2,0,2,1,0,0,1,0,0,1,2,0,0,0,1,0,0,2,1,0,2,2,1,1,0,2,1,0,2,1,1,2,2,1,0,2,0,1,1,2,1,2,2,1,0,1}
Returns: 278356000
596
603
596
{2,1,0,1,2,0,2,1,2,2,0,2,1,1,2,0,1,2,0,1,0,0,1,1,0,1,2,0,0,2,2,2,0,0,1,2,1,1,0,1,0,0,1,1,0,2,2,1,1,2,0,0,2,0,0,0,2,1,2,2,1,2,1,1,2,0,2,0,2,0,2,0,0,0,0,0,1,0,1,0,0,1,2,0,2,0,2,1,1,2,2,1,2,0,1,1,2,1,2,0,2,1,1,1,0,1,2,1,0,1,0,2,2,2,1,2,2,1,2,1,0,0,2,0,1,1,0,0,1,0,0,0,0,2,0,0,1,0,1,1,0,1,0,2,2,0,0,0,1,2,1,1,2,0,0,2,0,1,2,1,2,1,2,1,2,1,2,0,2,1,2,2,1,0,1,2,2,2,1,0,2,2,0,2,0,0,0,1,2,1,1,1,0,0,2,2,2,2,1,1,1,1,1,2,2,1,0,0,2,0,0,2,0,0,0,2,2,0,2,1,2,1,1,1,0,1,2,1,0,0,1,2,0,0,1,0,0,2,0,0,1,2,2,1,0,1,1,1,0,0,2,1,2,2,2,0,2,0,1,2,2,0,2,1,0,1,2,2,0,1,2,1,1,2,2,1,2,2,0,2,1,0,1,2,2,2,0,0,0,2,0,0,1,2,2,2,2,2,0,1,2,0,0,2,1,2,2,1,1,0,0,0,2,2,0,2,0,2,1,1,0,2,0,0,1,1,1,2,1,2,0,2,1,2,1,0,1,2,1,0,0,1,2,0,1,2,1,1,0,0,0,0,0,2,0,1,2,0,0,0,1,0,0,2,0,1,2,1,2,0,2,0,2,0,0,2,0,2,1,0,0,1,1,2,0,1,2,1,2,0,1,0,1,2,0,1,1,0,2,2,2,0,2,2,0,0,2,2,1,1,0,2,2,1,0,0,0,1,1,2,2,2,1,1,2,2,2,0,1,2,0,1,2,1,1,0,2,0,1,1,0,1,2,0,1,1,0,0,2,0,1,2,2,2,2,0,1,1,1,1,0,2,0,0,0,1,0,1,2,0,0,2,2,0,1,0,0,2,2,1,1,1,0,1,2,2,2,0,2,2,1,0,2,0,2,1,0,2,2,2,1,1,0,0,0,1,2,0,2,2,1,0,0,2,0,2,0,1,2,0,0,1,2,2,1,1,0,1,2,1,0,1,0,0,2,1,0,0,2,0,1,0,0,0,1,1,1,0,1,0,1,1,2,2,1,1,2,1,0,0,2,0,1,1,2,1,2,2,0,1,2,1,0,0,1,1,2,2,1,2,2,1,0,1,1,0,1,0,0,0,1,2,1,0,0,0,1,2,2,1,0,0,0,1,2,1,2,0,0,1,1,0,0,1,1,0,1,2,0,0,0,2,1,0,0,0,2,0,2,1,2,1,1,0,0,2,0,2,1,0,1,0,1,2,0,2,2,2,2,2,0,1,0,1,1,1,1,1,2,2,0,0,2,0,2,0,2,0,1,0,0,0,1,1,1,1,2,0,1,1,0,0,2,1,2,0,0,1,2,2,1,0,2,1,0,0,2,2,0,2,1,1,2,2,0,1,1,1,0,0,1,1,1,2,1,0,2,2,1,1,0,2,1,0,2,2,1,2,0,0,2,2,0,1,0,0,0,0,1,2,2,1,0,2,2,0,1,2,2,0,0,2,0,1,1,0,0,0,1,0,0,1,2,0,2,2,0,2,2,0,1,0,1,2,1,2,2,1,0,0,0,1,0,0,2,1,2,1,1,1,2,0,2,1,1,1,0,1,1,1,2,1,0,0,1,1,1,0,0,2,1,0,2,1,1,2,1,0,0,2,0,1,1,1,1,2,0,0,2,0,2,2,0,2,0,2,2,2,0,0,0,0,2,2,0,0,2,1,0,2,1,2,2,1,1,0,1,0,0,1,1,2,0,0,1,1,0,2,1,1,0,2,1,1,0,2,1,0,1,0,0,2,1,2,2,1,0,1,2,0,0,0,0,2,2,1,0,0,2,0,2,1,0,2,2,2,0,1,2,0,0,1,1,2,2,0,2,1,0,1,1,2,2,0,2,2,0,1,1,0,2,2,2,0,0,1,2,0,1,1,0,0,0,1,0,2,0,2,0,0,0,1,1,1,1,0,2,0,0,2,0,0,2,0,0,0,1,0,0,1,2,2,1,2,1,1,0,2,0,1,0,2,2,2,0,2,0,2,2,2,0,0,2,1,0,0,2,1}
Returns: 0
776
776
419
{0,1,1,0,2,2,2,1,0,2,1,2,2,1,2,2,0,0,2,0,0,2,1,2,1,0,0,1,1,0,2,0,0,0,1,0,1,0,2,1,2,0,0,1,1,2,1,1,2,0,1,2,2,2,2,0,2,1,0,1,2,0,0,2,1,2,2,1,0,2,2,2,1,0,1,1,2,0,2,0,0,2,2,0,2,0,0,0,2,2,2,2,1,2,2,1,2,0,1,1,0,1,2,1,1,0,2,2,0,2,2,0,1,1,2,1,0,0,1,2,2,0,1,2,2,1,1,0,0,0,0,2,0,2,0,2,2,0,2,1,1,2,2,1,1,1,2,1,1,2,0,2,2,2,2,2,0,1,2,0,1,1,2,1,0,0,1,2,1,2,1,1,2,2,2,0,0,0,2,1,0,2,2,0,0,0,0,0,0,2,2,1,0,2,0,2,1,2,1,2,1,0,2,1,0,1,2,0,2,1,0,2,0,1,1,1,1,0,0,0,1,2,0,1,1,1,2,2,1,0,1,2,1,1,0,1,2,1,2,0,2,2,2,2,0,2,2,1,2,1,0,0,1,1,2,2,2,2,2,1,2,1,0,2,0,0,2,1,2,1,0,1,2,0,0,2,0,1,1,2,1,2,2,2,1,2,2,0,2,0,1,2,0,1,0,0,1,2,1,2,0,2,2,1,0,2,0,0,2,0,1,2,2,1,2,1,2,2,2,1,0,1,2,0,0,0,0,2,0,0,2,1,1,1,0,2,1,0,2,2,0,1,1,1,1,0,2,2,2,2,1,0,0,0,1,2,0,1,2,1,2,2,1,2,1,0,1,1,0,1,2,1,1,2,2,0,0,1,1,1,1,1,2,2,1,1,2,0,0,2,2,0,1,2,1,2,0,0,2,1,1,1,1,1,1,2,0,1,2,0,0,1,0,1,2,1,0,0,2,2,0,1,2,0,0,0,0,2,2,2,2,1,2,2,0,2,2,0,0,0,0,2,1,2,2,2,0,2,1,1,2,1,0,0,2,2,1,2,2,1,2,2,2,1,0,0,0,2,2,2,2,2,1,1,1,2,1,1,2,2,2,0,2,0,2,1,1,1,0,2,1,0,2,0,1,0,1,2,1,0,2,2,0,0,2,2,1,1,1,2,2,1,1,0,0,2,2,1,1,1,2,1,2,2,1,1,2,0,0,2,1,2,1,1,0,2,2,2,2,2,1,2,2,2,2,1,1,0,1,0,2,1,1,0,0,2,0,0,2,0,0,0,0,1,1,0,2,0,1,0,2,1,1,0,0,0,2,2,0,1,2,2,0,1,1,0,0,0,0,0,2,0,0,2,0,1,2,0,2,1,2,2,0,1,1,1,0,1,2,0,2,1,1,1,2,1,0,0,2,0,0,0,0,0,2,2,2,2,1,2,0,0,2,0,2,0,2,2,2,0,1,0,1,1,0,0,0,2,0,2,1,1,1,1,2,1,2,1,0,1,1,0,1,0,1,2,0,2,1,2,2,2,2,2,2,1,1,2,0,1,0,2,2,2,2,1,2,2,1,0,1,2,2,0,2,2,1,2,1,1,1,2,2,1,1,1,2,0,2,0,2,2,1,0,0,2,0,0,2,1,1,2,2,0,0,2,0,0,0,2,0,0,2,2,2,0,1,0,0,2,2,0,2,1,1,0,1,0,2,0,2,2,2,0,0,2,0,1,0,1,2,1,2,1,0,1,1,1,1,1,0,0,0,2,1,2,1,2,2,2,0,1,0,0,1,1,0,2,0,1,0,0,2,2,2,1,1,2,2,1,2,2,2,1,0,1,1,0,0,1,0,1,0,0,1,1,2,1,0,2,1,0,0,2,0,2,2,2,0,1,0,2,0,1,0,0,2,2,2,2,1,2,1,2,1,2,1,1,1,2,0,2,1,0,0,1,2,2,2,2,0,1,0,0,0,2,1,2,2,1,1,2,2,2,0,2,2,1,2,0,0,0,1,2,1,1,2,0,2,0,2,2,0,2,2,2,0,0,0,2,2,0,0,2,2,0,0,2,1,0,1,1,1,0,1,2,2,2,2,2,0,1,2,2,0,1,1,2,1,1,0,2,1,1,2,2,2,0,2,2,2,1,0,0,0,2,0,0,0,1,2,0,1,2,2,2,2,2,2,1,0,0,1,0,0,0,2,1,2,2,2,2,0,2,1,1,1,1,0,2,0,1,1,2,2,2,0,2,2,0,2,0,1,1,1,2,0,2,2}
Returns: 0
527
679
527
{2,2,1,1,1,0,2,1,0,0,0,1,1,1,1,1,0,1,0,2,1,0,0,1,1,0,2,2,0,1,2,2,0,2,1,1,2,0,0,0,2,1,2,1,1,0,1,1,1,0,2,1,1,1,2,0,2,2,2,0,0,1,1,1,1,0,1,1,0,0,1,1,2,1,0,0,0,1,1,0,1,2,1,1,2,1,0,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2,0,1,0,0,2,2,0,0,1,0,0,1,0,0,2,0,1,1,0,1,0,0,1,2,1,1,2,2,2,2,2,1,2,0,1,1,2,1,0,0,1,2,1,1,0,1,1,1,1,2,0,2,1,0,2,0,0,0,1,2,2,1,0,1,0,0,1,1,2,1,0,2,0,2,1,0,0,2,2,1,1,1,2,0,2,2,0,2,1,0,2,2,2,1,2,0,2,1,0,2,1,0,1,1,0,0,0,2,1,1,1,0,2,0,1,0,2,0,1,0,0,0,0,2,1,2,0,0,2,0,2,2,1,0,0,1,2,0,0,2,1,1,2,1,2,1,2,1,0,0,1,1,0,1,0,2,1,1,0,0,2,2,1,1,0,2,2,0,2,1,0,1,1,2,1,2,2,1,1,1,2,1,2,2,2,2,2,1,0,0,2,0,2,0,2,0,1,1,2,0,1,2,2,1,2,0,2,0,0,1,0,1,0,0,2,1,0,2,0,1,2,0,2,1,2,0,1,1,1,1,0,2,0,0,2,1,1,1,1,1,1,2,1,1,1,1,0,2,0,2,1,0,2,1,2,0,2,0,0,2,1,1,0,2,2,0,1,1,2,1,0,1,1,0,0,2,1,2,0,2,1,2,0,1,0,2,2,1,1,0,2,1,2,2,1,2,2,1,2,1,1,1,0,2,0,2,2,2,1,2,0,2,0,1,2,1,1,2,2,2,2,1,1,1,2,1,2,1,2,0,2,2,0,2,2,1,0,0,2,1,2,1,0,2,1,2,1,2,1,1,2,1,1,1,0,2,1,2,0,2,2,0,0,0,2,2,0,2,1,1,1,1,0,2,1,0,1,0,2,1,1,1,1,2,0,1,2,1,0,0,0,0,2,1,2,2,2,0,1,0,2,0,0,0,1,2,1,1,1,0,1,2,0,1,1,0,0,0,0,0,0,0,2,2,1,0,2,2,2,2,0,0,0,1,1,1,2,0,1,0,0,1,0,0,2,1,0,0,0,1,1,0,2,1,0,1,1,0,1,1,2,2,2,2,2,2,1,2,0,0,1,2,2,2,2,1,1,2,0,0,2,1,2,0,2,2,2,0,2,1,2,0,2,0,1,1,0,0,2,1,1,1,0,0,2,2,0,0,1,2,2,1,2,2,2,2,1,1,1,2,1,1,2,2,0,1,0,1,2,2,2,1,1,0,1,1,0,0,1,1,0,1,2,2,0,1,0,1,1,2,2,1,0,0,0,1,1,2,0,0,1,1,2,0,2,2,0,1,1,0,2,1,1,2,0,1,2,0,2,1,0,2,1,2,0,1,2,2,1,2,2,1,2,0,1,2,0,2,0,1,0,2,0,0,1,1,2,0,1,1,0,2,1,2,1,2,0,2,2,0,1,0,1,0,0,0,1,2,1,1,2,1,1,2,2,1,2,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,2,2,0,1,2,2,0,2,2,2,2,2,1,0,0,1,0,1,1,0,2,1,0,0,0,0,0,0,1,0,1,0,1,2,1,2,2,2,1,2,1,0,0,0,1,2,0,0,1,2,1,0,2,0,1,0,0,0,2,0,2,1,0,0,1,2,1,2,2,0,1,1,1,1,0,1,1,1,1,1,0,1,2,1,0,2,0,0,0,2,0,1,2,1,0,0,2,0,2,0,1,1,1,0,1,1,2,0,0,2,2,0,0,2,0,0,1,1,0,0,1,1,2,2,2,1,1,1,2,0,2,2,2,0,0,2,2,2,2,0,2,2,2,0,0,0,2,1,1,1,1,1,0,2,2,0,1,2,0,1,2,0,2,2,1,2,1,2,0,2,2,2,0,2,2,1,2,0,1,1,2,1,0,0,2,1,0,0,0,0,2,1,1,1,2,1,1,2,2,1,2,1,2,1,2,2,0,0,2,0,2,1,0,1,0,0,0,1,2,0,1,0,1,1,2,0,0,1,1,1,1,0,2,1,0,2,0}
Returns: 0
365
365
131
{1,2,0,1,0,2,1,2,1,0,0,1,1,1,2,2,2,2,0,0,1,1,2,0,2,0,1,1,2,0,2,0,2,0,0,0,2,1,0,2,0,0,1,1,1,0,1,2,2,2,0,1,0,2,1,1,2,1,2,1,0,0,2,1,1,0,0,0,0,0,0,2,1,0,0,2,2,2,0,0,2,0,0,2,1,0,1,0,0,2,1,1,2,0,0,0,0,2,1,2,1,2,1,0,2,0,0,0,0,0,0,1,2,1,2,2,1,0,2,0,1,0,2,1,0,0,2,1,2,1,1,2,0,0,1,2,0,0,2,1,1,1,2,1,2,0,1,1,2,2,2,2,1,2,1,2,0,1,1,0,0,0,2,1,1,2,0,2,2,2,2,0,2,1,2,1,2,1,1,0,2,0,1,0,2,0,1,0,0,0,1,1,2,1,2,2,1,2,1,2,0,1,2,0,1,2,2,0,2,0,2,0,0,2,0,1,2,1,2,0,2,1,0,1,2,2,0,0,2,2,0,0,2,2,0,0,2,1,1,0,2,2,0,1,2,2,0,1,0,0,1,2,2,2,0,2,2,2,1,0,0,0,1,1,2,2,0,0,1,0,2,2,1,2,1,0,1,2,2,0,1,1,2,1,1,2,0,2,2,1,0,2,1,2,2,0,2,2,2,2,2,2,1,1,0,2,0,2,1,1,0,0,1,2,2,2,0,0,2,1,1,2,2,0,0,1,0,0,1,0,2,0,1,2,0,2,0,2,0,2,0,2,2,0,1,0,0,1,0,0,1,1,0,1,0,0,0,2,2,0,0,2,2,1,1,2,1,2,1,2,1,0,2,0,2,0,2,0,0,0,1,1,0,1,0,1,2,0,1,2,1,1,0,2,2,2,0,1,0,0,1,0,1,2,0,2,1,2,1,1,0,1,1,1,0,2,0,1,0,2,0,1,1,0,2,1,0,0,0,2,0,1,1,2,1,1,2,2,0,0,0,0,0,1,0,0,1,1,1,2,1,0,1,0,2,0,0,1,0,1,2,0,1,1,1,2,0,2,0,2,0,2,0,0,0,2,0,1,2,1,1,1,2,1,0,1,2,1,1,1,0,2,0,2,1,0,1,1,0,1,1,2,1,2,1,2,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,0,2,0,2,2,1,2,0,0,1,1,2,2,0,1,2,1,2,0,2,1,2,2,1,1,0,2,0,0,2,1,1,2,2,2,0,0,2,2,0,2,2,2,0,2,1,2,2,1,2,1,1,2,2,1,2,1,1,2,1,2,0,0,1,2,0,2,2,2,0,1,0,1,2,2,1,0,1,0,1,0,0,1,1,0,0,2,0,1,2,1,2,1,2,2,1,0,1,2,1,1,0,1,0,2,0,2,0,1,0,2,1,1,1,0,0,1,1,0,0,2,1,0,0,1,0,1,0,0,2,0,1,2,0,2,1,2,2,2,0,0,0,1,0,2,1,0,0,0,2,2,1,1,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,0,1,1,2,1,2,0,2,0,1,0,2,2,2,1,0,2,1,2,0,2,0,1,0,1,2,2,2,2,0,0,1,1,2,2,0,1,1,0,1,0,0,0,1,0,1,2,0,1,0,0,0,1,2,2,1,0,2,2,1,2,1,1,2,2,0,2,1,0,0,0,2,0,2,0,0,2,2,0,0,1,1,0,2,2,1,1,1,2,1,0,1,1,1,0,2,1,2,1,2,0,0,2,1,0,2,2,1,2,2,2,2,0,1,2,0,2,2,1,1,0,2,0,2,0,0,0,0,0,1,2,1,0,2,1,0,2,2,0,1,1,0,1,0,2,1,2,0,2,0,0,1,1,1,0,0,1,2,2,0,1,0,0,2,1,0,2,1,1,2,0,2,0,2,0,2,0,1,0,1,2,0,1,0,0,2,0,1,2,2,0,2,2,1,1,0,2,0,1,2,0,0,1,0,1,0,1,2,1,0,1,1,1,0,0,0,0,2,0,2,1,0,0,2,2,0,1,1,2,1,0,1,2,2,1,2,0,0,2,1,2,2,0,1,1,2,1,1,0,1,2,0,0,0,2,0,1,1,2,1,0,1,0,0,0,0,1,0,2,2,0,0,2,1,1,0,1,2,2,2,2,2,0,2,0,1,1,1,1,0,1,2,2,2,2,2,1,0,1,1,1,1,0,0,1,0}
Returns: 0
704
141
141
{1,2,2,0,2,0,2,1,0,0,0,0,2,0,2,0,2,0,0,2,2,0,2,1,0,0,2,1,2,0,2,1,0,0,0,0,0,1,2,1,1,2,2,1,1,0,2,1,0,2,1,0,0,0,2,1,1,2,0,2,2,1,2,2,1,1,0,1,1,1,2,0,2,0,2,1,1,1,2,1,1,1,0,1,1,2,1,0,2,2,0,2,2,0,2,1,1,2,0,0,1,1,0,1,0,0,2,1,2,2,0,0,2,0,0,2,2,1,1,2,0,2,2,0,2,2,2,0,0,1,1,1,0,1,2,0,2,0,0,0,2,2,0,0,0,0,1,0,0,0,2,0,0,1,2,2,0,0,1,2,1,2,2,0,0,0,2,2,2,1,0,0,0,2,1,0,1,1,1,1,2,0,0,2,1,0,0,2,2,0,0,0,1,2,1,0,2,2,0,0,0,0,1,0,2,2,0,2,0,1,2,0,1,0,2,0,0,0,2,0,2,1,0,1,1,2,2,2,0,0,2,2,1,0,1,2,1,2,0,1,1,2,2,1,1,2,0,0,1,0,2,2,1,0,2,2,0,1,1,1,0,1,0,2,1,0,1,2,0,2,0,1,0,1,0,2,2,2,1,1,1,0,0,1,1,2,2,2,1,0,2,0,1,2,2,1,0,2,2,2,0,1,2,0,0,1,2,1,2,2,0,1,0,0,1,1,1,2,2,2,1,0,0,2,1,0,1,0,0,1,2,2,0,1,2,2,1,0,2,0,0,2,0,2,0,0,0,2,0,2,2,0,1,2,0,1,0,2,1,0,0,0,0,1,0,0,1,1,2,1,1,0,0,0,0,2,1,0,2,2,1,1,0,2,1,2,0,0,2,2,2,0,2,1,1,2,0,0,0,1,0,1,2,1,0,2,2,2,2,2,1,2,2,0,2,2,2,2,2,1,0,0,2,1,2,2,1,2,0,1,2,2,2,2,2,2,1,0,0,2,2,0,1,2,0,0,0,2,2,1,1,2,1,2,2,1,1,2,1,1,2,0,0,0,0,0,2,1,0,0,2,2,2,2,2,2,1,0,1,0,2,2,1,0,1,1,2,0,1,0,0,0,2,2,0,0,1,0,1,1,1,2,2,2,0,1,2,2,2,0,2,1,0,0,2,0,0,0,2,0,0,1,1,1,2,0,1,2,0,2,0,2,2,2,1,2,0,1,1,2,2,1,2,2,1,0,2,0,0,0,1,2,2,0,0,0,2,0,2,1,1,1,2,1,0,1,2,2,1,1,0,1,2,0,0,0,2,2,1,2,2,0,2,0,0,2,1,0,2,2,2,1,0,1,2,1,1,2,0,1,2,2,2,1,2,0,1,2,2,1,1,2,1,0,0,1,1,1,0,2,2,1,0,2,0,0,0,2,0,2,2,2,2,2,2,0,1,2,0,2,1,2,1,2,1,1,1,0,2,1,0,1,1,1,2,2,0,0,1,1,2,2,1,0,1,2,2,1,2,2,0,0,0,2,1,2,0,0,2,2,0,0,1,1,0,0,1,0,1,2,1,2,0,2,2,0,0,2,1,2,2,1,0,0,0,1,0,1,0,1,1,0,1,0,2,2,0,2,1,2,2,2,2,2,0,0,0,0,1,2,1,2,0,2,1,1,1,2,1,2,2,2,0,1,1,2,0,2,0,0,1,2,0,1,1,2,0,2,2,0,2,0,2,0,1,0,2,1,2,0,1,1,1,0,0,2,1,1,1,0,2,0,1,0,0,2,2,2,0,1,2,0,0,0,0,0,2,2,2,1,1,0,2,2,1,1,1,0,0,1,2,0,1,2,0,2,1,2,2,1,1,1,0,1,0,2,2,1,0,0,1,0,2,2,2,1,1,2,2,1,0,0,1,2,0,1,1,1,1,1,2,2,1,0,1,2,0,1,0,0,0,2,1,1,1,1,2,0,2,0,2,2,0,2,2,2,2,0,2,0,2,1,1,2,1,1,0,0,1,1,2,0,0,1,0,1,1,1,0,2,2,0,0,0,2,1,0,1,2,1,2,2,1,2,1,2,1,1,1,1,0,1,2,1,2,1,1,2,1,0,2,0,2,2,0,1,2,0,1,0,1,1,2,2,0,0,1,1,2,1,0,0,2,0,2,2,2,0,0,0,2,2,1,0,1,2,1,2,0,2,1,1,1,1,1,2,2,2,2,1,0,1,0,1,2,1,0,0,2,2,1,0,0,2,2,2,1,2}
Returns: 0
940
324
940
{1,0,2,0,2,2,2,0,2,0,0,2,1,2,1,0,0,1,2,0,0,1,0,0,1,1,2,1,2,1,1,0,2,0,2,1,1,1,1,2,2,2,2,1,2,2,2,0,1,2,0,2,1,1,2,0,1,0,0,2,0,2,1,2,1,2,1,1,0,2,1,2,0,1,1,1,1,0,2,0,1,1,2,2,2,1,2,1,0,1,0,2,2,2,2,1,2,0,2,1,0,0,2,1,1,0,2,1,1,2,0,0,2,2,1,2,1,2,2,1,0,2,2,2,2,0,1,1,2,2,0,2,0,1,2,2,2,0,1,1,0,1,0,0,1,1,2,0,0,2,0,2,2,0,0,0,1,0,0,0,2,2,0,0,1,1,0,1,0,2,2,2,2,0,2,1,1,2,1,0,2,0,1,1,1,1,2,1,1,0,2,2,1,2,2,2,2,1,2,2,2,1,0,1,2,0,1,2,2,2,1,0,0,1,0,1,2,0,2,2,1,2,0,1,1,1,1,1,0,1,2,2,2,1,2,2,2,0,1,0,0,0,2,0,0,0,1,2,2,0,0,2,0,2,2,1,1,1,0,0,0,0,0,2,2,0,2,0,2,2,1,1,1,2,1,1,0,0,1,0,1,0,2,0,1,2,2,0,2,0,1,0,2,2,2,0,1,0,0,1,1,1,0,0,2,2,1,2,0,0,2,2,0,0,2,0,2,1,1,0,2,0,0,1,1,1,1,2,2,0,2,1,1,0,1,1,1,1,1,1,0,2,2,2,0,1,0,1,0,1,1,0,0,1,1,2,0,1,0,0,1,2,0,2,0,2,0,2,1,0,0,1,1,2,1,2,0,1,2,0,1,2,1,2,2,1,1,1,1,0,0,0,1,2,1,0,0,1,0,0,1,2,2,0,1,0,1,0,2,0,0,1,1,2,0,2,0,2,0,0,2,2,1,1,1,1,1,2,1,2,0,0,0,1,0,2,1,0,2,2,2,0,2,0,0,1,2,2,1,0,2,0,2,1,1,2,1,2,0,1,1,2,1,2,1,1,2,1,2,0,0,1,1,2,0,2,2,0,0,2,1,0,1,2,1,1,1,2,2,2,2,0,1,0,2,0,0,2,1,2,1,0,1,1,0,1,2,0,2,1,1,0,2,1,2,0,0,0,2,1,2,0,1,2,1,2,2,2,2,2,1,2,0,1,2,1,0,1,1,2,1,0,0,1,2,0,0,0,1,0,0,1,1,2,2,1,1,1,0,2,0,0,0,1,1,0,0,0,1,2,1,1,0,2,0,0,1,2,2,0,1,1,0,2,1,1,2,0,2,0,1,2,2,2,2,0,2,2,2,2,0,2,1,1,1,2,2,0,2,2,1,2,2,2,1,2,2,1,2,1,0,0,2,0,1,2,1,1,0,0,1,0,0,2,2,0,0,1,1,1,0,1,1,0,1,2,2,1,2,1,2,1,1,1,0,1,1,2,1,1,2,0,0,0,2,0,1,0,0,1,2,2,0,0,0,0,2,1,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,2,0,2,2,2,1,1,2,2,0,0,0,2,1,2,2,0,1,0,0,1,2,2,1,1,1,1,0,1,2,2,0,1,1,0,2,2,1,2,0,1,1,0,2,2,2,2,1,0,2,2,1,0,2,2,1,2,0,1,2,2,1,2,2,1,2,2,0,1,2,2,0,2,1,0,2,0,0,2,1,0,0,1,2,0,2,2,1,0,1,0,1,0,1,2,2,2,1,2,2,0,2,1,2,1,0,0,0,2,1,2,1,2,1,2,2,0,1,0,0,1,2,1,0,1,1,2,0,2,2,1,2,0,1,2,0,0,0,2,2,2,1,0,2,2,1,1,0,0,1,1,1,2,2,2,1,2,2,1,2,2,1,1,0,2,2,2,1,0,1,2,2,1,1,1,1,2,0,2,0,1,1,0,0,2,2,1,1,2,1,2,1,2,1,1,0,0,1,1,2,2,0,1,1,0,2,0,2,0,2,0,2,1,2,0,0,0,2,2,2,2,0,0,2,1,1,2,1,0,2,2,0,1,1,2,2,0,0,1,0,1,2,0,1,0,2,1,1,1,1,0,2,0,2,2,0,1,0,2,1,2,0,2,0,0,2,2,0,1,1,0,2,2,0,0,2,0,0,0,0,2,0,1,1,2,1,0,0,1,1,0,2,0,2,2,2,0,1,2,2,0,1,2,2}
Returns: 0
184
184
76
{2,0,0,2,1,2,0,2,2,0,2,2,1,1,1,2,1,0,1,2,1,1,1,1,2,2,1,0,2,1,0,1,0,1,0,2,1,2,2,0,1,2,0,1,1,1,2,1,0,0,2,1,2,1,2,0,1,1,2,1,1,0,1,1,2,2,2,1,1,1,2,1,1,0,1,2,1,2,0,0,1,1,0,0,1,2,2,1,1,0,1,0,0,2,1,2,0,2,0,1,0,0,1,2,2,2,1,1,2,2,1,2,2,0,1,2,2,0,1,1,1,0,0,2,0,1,1,1,1,2,0,0,2,0,0,2,1,2,2,1,1,0,0,1,0,0,0,1,2,2,1,0,1,2,1,1,0,0,0,0,1,1,0,0,2,1,0,1,1,0,2,0,0,1,0,0,2,2,1,1,2,2,2,0,2,0,2,0,1,0,1,2,2,0,0,0,2,1,1,1,0,2,2,2,1,2,2,2,2,1,2,2,1,0,1,0,2,1,1,0,0,2,2,2,1,2,0,0,1,2,2,1,1,0,2,0,0,0,1,2,0,1,1,1,1,0,1,0,0,2,1,2,1,2,0,0,2,1,1,2,1,2,2,1,2,0,1,1,1,1,2,1,2,1,1,1,1,1,0,1,1,2,1,2,1,1,2,0,2,0,2,1,2,2,1,2,1,2,2,2,2,0,2,0,0,1,2,0,2,2,1,1,1,0,2,2,2,0,1,1,1,1,0,1,1,2,0,2,0,1,2,2,1,1,0,2,0,1,2,1,0,0,0,2,0,2,2,0,2,0,2,0,0,1,1,1,2,0,0,1,1,2,2,2,0,0,2,1,2,1,1,0,2,2,1,2,2,2,2,2,0,2,1,1,0,1,2,2,2,0,1,1,1,1,1,1,1,0,2,2,2,1,1,0,0,0,0,0,1,2,0,1,2,1,0,0,2,1,0,2,2,1,2,1,1,2,1,1,2,2,1,2,1,2,1,1,1,0,1,1,2,0,1,2,1,1,2,0,2,0,2,1,1,0,2,1,0,0,1,2,0,2,0,0,2,0,1,0,0,1,0,0,1,2,2,0,1,0,2,1,1,2,0,1,0,0,1,2,2,2,1,1,0,0,0,2,1,1,0,1,1,2,0,1,1,0,0,0,0,2,0,2,2,2,0,2,0,0,1,2,2,2,0,0,2,1,0,1,1,0,2,0,2,0,2,0,1,1,0,0,2,0,1,1,1,1,0,0,1,2,1,1,2,2,0,1,1,0,0,1,1,2,0,2,0,0,1,1,1,0,0,0,1,1,0,0,1,1,1,0,2,0,1,2,2,0,1,0,1,0,0,1,2,1,2,1,0,0,0,2,1,0,2,1,2,1,2,2,1,2,1,1,1,0,2,1,2,0,1,0,2,0,2,2,0,0,2,1,0,1,0,2,0,2,0,0,0,0,1,0,1,0,2,2,2,2,1,2,0,1,0,1,1,0,1,1,1,1,0,2,2,1,0,1,2,1,2,0,1,0,1,1,2,0,1,0,0,2,0,0,1,2,1,2,0,1,2,1,1,2,2,2,0,1,2,0,1,0,2,0,2,0,1,0,1,2,0,1,1,1,2,2,0,0,1,2,2,1,1,2,1,0,0,0,2,0,1,1,0,2,2,0,1,1,1,0,2,2,2,2,2,1,0,1,2,1,2,0,1,0,2,0,0,1,2,2,1,1,2,2,2,0,2,2,1,0,2,2,1,1,0,2,2,0,1,2,2,0,0,2,1,1,0,2,0,1,2,2,2,2,0,0,0,2,1,2,2,1,0,2,0,1,2,2,2,0,0,2,1,0,1,1,0,2,1,2,2,0,0,1,2,2,0,2,0,0,1,1,1,0,2,0,2,1,0,2,0,2,1,0,0,1,1,1,0,2,2,1,1,1,2,1,0,0,0,2,1,0,1,2,2,2,1,2,2,0,0,1,1,2,2,0,0,1,0,2,1,2,2,0,1,1,0,2,0,2,0,1,1,2,1,1,1,1,1,1,2,0,0,2,2,2,0,0,1,0,1,1,1,2,2,2,0,2,1,0,1,2,2,1,2,0,1,1,2,1,2,1,2,1,0,0,0,2,0,2,0,1,2,2,0,1,0,1,0,0,0,1,2,2,1,0,2,0,1,1,2,2,2,1,2,2,0,2,0,2,1,2,0,2,0,0,1,2,2,0,2,1,1,0,1,2,0,0,2,1,2,0,1,2,1,2,1,2,2,2}
Returns: 0
186
233
233
{1,2,0,2,0,2,2,2,2,2,0,0,2,2,1,1,1,0,2,0,2,1,2,0,0,0,1,0,1,1,2,2,2,2,0,2,1,2,0,1,2,1,0,1,1,2,0,1,0,1,2,0,2,0,0,2,2,1,1,1,0,1,2,2,0,2,2,0,0,2,0,0,2,1,2,0,0,1,1,1,1,1,1,0,2,0,0,2,1,2,1,2,2,2,1,2,0,1,1,1,2,1,0,2,2,2,2,2,1,0,1,1,0,2,1,1,2,0,2,2,1,0,1,0,2,0,2,2,2,2,0,0,0,0,2,1,1,2,2,1,2,1,1,0,0,2,2,1,1,0,0,1,1,2,1,1,2,2,1,2,0,0,0,0,1,0,1,1,0,0,0,0,2,2,1,2,0,2,0,2,1,1,1,2,2,2,1,0,0,2,2,0,0,0,2,2,2,0,0,0,2,2,1,1,1,1,2,0,1,1,2,1,0,1,0,2,1,1,2,2,0,1,1,1,0,1,1,2,1,1,1,1,2,0,0,2,0,1,1,2,0,2,1,2,2,2,1,1,0,2,2,2,2,0,2,2,2,2,2,2,2,2,0,2,1,2,2,0,1,0,0,0,0,2,2,1,1,1,1,2,1,2,2,0,1,2,1,1,1,1,1,2,1,0,0,1,0,2,2,1,0,1,0,2,1,0,0,0,0,1,1,2,1,1,2,2,1,2,2,1,0,0,1,2,1,0,1,2,1,1,0,2,0,2,1,2,2,2,2,2,2,1,0,2,0,0,0,1,2,2,0,0,0,0,2,2,1,1,1,2,2,2,1,0,1,1,1,1,2,2,1,1,1,0,0,1,0,1,0,2,1,0,1,1,0,2,1,0,2,0,2,0,0,2,0,2,1,1,1,0,2,2,2,2,2,0,2,2,0,0,2,2,1,2,2,1,1,2,2,0,2,2,2,2,2,1,1,0,0,1,1,1,0,0,0,1,1,0,1,2,0,2,0,0,0,2,1,0,1,1,0,0,0,1,1,1,1,1,2,2,0,2,0,0,1,2,2,1,1,0,0,1,2,2,1,1,1,0,0,1,2,1,1,0,0,0,2,0,2,0,0,1,0,1,0,0,0,2,2,2,2,1,2,0,0,0,0,2,2,1,0,1,1,0,0,1,0,0,2,2,1,1,1,2,0,0,2,1,1,2,2,2,1,0,1,0,1,0,2,1,2,0,1,1,2,1,2,0,0,2,0,2,0,1,0,1,2,2,1,2,0,2,2,2,1,0,1,2,0,1,0,2,0,1,1,1,0,1,2,1,1,2,2,1,2,1,0,1,1,2,2,1,2,1,1,1,0,0,2,0,2,2,0,1,0,2,2,2,1,0,0,0,1,1,1,1,2,1,2,0,0,2,1,1,0,1,0,2,2,2,1,1,2,2,2,2,2,0,2,1,1,0,0,0,0,1,1,0,0,2,1,2,1,2,0,2,0,2,0,1,0,0,0,2,2,2,2,0,2,1,0,0,2,2,0,2,1,0,1,1,1,0,1,2,2,0,1,0,0,2,0,2,0,1,1,0,2,0,1,2,1,1,2,1,1,1,1,1,1,0,2,0,2,2,2,0,2,0,1,2,2,1,1,0,1,0,2,1,0,2,2,0,0,0,1,2,1,1,1,0,2,2,2,0,2,1,0,1,2,2,0,2,2,0,1,0,1,2,2,1,1,0,2,1,1,1,1,2,1,1,0,1,0,1,1,2,0,0,1,0,1,0,2,0,0,0,0,0,2,0,0,0,2,2,0,0,1,2,1,2,0,0,0,0,2,0,2,1,1,1,2,0,2,0,1,2,1,0,2,1,1,1,2,1,1,1,0,0,1,1,1,0,2,1,2,1,0,0,1,1,2,2,2,1,1,2,2,1,2,0,1,2,0,0,2,0,1,1,1,2,2,0,1,0,0,2,0,0,2,2,2,2,2,1,0,1,0,1,1,0,1,1,1,0,0,1,1,0,1,1,2,2,1,0,1,2,1,0,1,1,0,1,0,2,1,0,0,2,0,2,1,0,0,1,1,2,1,1,0,0,0,2,2,2,1,2,2,1,0,0,2,2,1,0,2,1,2,0,1,2,2,0,2,2,2,0,2,2,1,1,1,1,0,2,1,0,0,1,1,0,0,1,0,1,0,1,1,0,1,0,0,0,2,2,1,2,0,2,0,1,2,0,2,0,2,2,2,0,0,1,0,1,0,2,1,1,0,1,0}
Returns: 0
556
35
35
{2,2,0,1,1,0,2,1,1,0,1,2,0,2,1,2,1,0,2,2,2,1,1,0,0,0,1,1,1,0,1,2,2,2,1,2,1,1,2,0,1,1,1,1,0,2,0,1,2,0,2,2,1,0,0,0,1,1,2,0,2,1,0,2,0,0,1,0,2,1,0,2,1,2,1,1,1,0,0,2,1,2,1,0,1,1,1,1,0,2,0,1,0,0,0,0,1,0,2,2,0,0,2,2,2,0,0,0,0,0,1,2,2,1,0,2,1,0,1,0,1,2,1,2,1,0,1,1,2,1,2,2,0,1,2,0,0,0,1,2,1,0,1,2,1,1,2,0,2,1,1,2,1,0,0,1,2,2,1,1,1,1,2,2,0,0,0,0,1,1,0,2,0,0,2,0,2,0,2,0,0,0,1,1,2,0,0,0,0,2,0,0,0,0,0,0,2,2,0,1,1,0,0,0,0,1,2,0,2,0,1,0,1,2,2,0,2,0,1,2,0,1,0,2,2,1,0,2,0,1,2,2,1,0,1,2,2,1,1,2,2,1,0,0,1,1,0,0,2,2,1,0,0,0,2,1,1,1,2,2,1,1,0,1,2,1,0,0,2,1,1,0,1,2,0,0,0,1,2,0,1,0,2,1,2,1,0,0,1,2,2,2,0,2,0,0,1,1,0,0,0,2,0,2,1,0,1,0,0,2,0,2,2,2,2,0,2,0,1,0,1,0,1,2,1,1,2,0,1,2,1,2,2,1,0,1,2,2,2,2,2,0,0,1,0,0,1,2,2,1,2,0,0,1,2,1,1,2,1,2,1,2,2,2,1,1,1,1,0,1,0,2,0,0,1,0,2,0,1,1,1,2,1,0,2,0,2,2,0,2,1,1,0,0,1,0,0,1,2,2,1,0,0,1,2,0,0,1,1,2,0,1,0,0,1,1,1,1,0,0,2,0,1,1,2,0,0,2,2,2,0,0,0,0,1,2,0,0,2,2,0,1,1,0,2,1,1,1,2,2,0,0,2,0,2,2,2,1,2,2,1,1,1,0,1,2,2,2,0,1,1,1,1,2,1,0,0,0,1,0,0,2,2,2,0,2,1,0,2,0,0,0,2,0,2,2,1,1,0,1,0,1,0,1,0,1,2,2,2,2,1,0,1,0,1,2,2,2,0,1,2,0,2,2,2,2,1,2,2,2,2,2,1,2,2,1,1,1,2,0,0,1,1,0,1,1,1,0,1,0,0,1,1,0,0,1,2,1,0,1,1,1,2,0,1,0,0,0,2,2,0,1,1,0,1,2,0,0,1,2,2,0,0,0,0,0,1,2,1,0,2,1,1,2,2,1,0,1,1,2,0,2,0,1,0,1,1,1,0,2,2,1,1,0,0,0,0,0,2,0,0,2,2,1,1,1,0,1,1,2,2,2,2,1,0,0,2,1,1,2,2,1,2,0,0,1,0,1,2,0,2,2,2,1,0,1,2,0,0,0,1,2,2,0,1,1,0,2,2,1,1,2,0,1,0,2,2,0,2,1,1,1,1,0,0,1,1,2,1,2,0,1,2,1,1,1,0,0,2,1,2,1,0,2,1,0,1,1,2,2,2,1,0,0,1,0,0,0,1,1,2,1,0,0,1,2,1,0,0,0,1,1,2,0,1,1,0,0,2,2,1,2,2,1,0,2,0,2,0,2,2,0,2,2,1,1,0,1,1,1,1,0,2,1,2,0,0,0,1,2,1,0,1,2,1,1,0,0,2,1,1,0,2,1,0,0,1,0,2,2,1,0,1,1,2,2,0,0,2,1,1,0,1,1,1,2,0,2,1,1,0,0,1,0,2,2,1,2,2,1,1,0,1,2,2,2,0,2,2,0,0,0,1,2,1,2,0,2,0,2,0,1,0,2,2,0,1,1,1,2,2,0,1,1,2,0,0,2,2,1,1,0,1,1,1,0,1,1,0,1,1,2,1,0,2,0,0,1,1,2,2,1,1,1,2,0,0,2,0,1,0,0,1,2,2,0,2,0,1,0,2,0,2,0,0,2,1,1,0,2,1,2,1,0,0,2,2,0,2,2,2,0,2,1,2,1,2,2,2,2,2,1,1,0,0,0,2,0,1,1,0,1,2,2,0,0,0,0,1,1,0,0,1,0,0,0,2,1,1,1,1,0,0,0,2,2,2,1,2,0,1,0,0,2,0,1,2,2,1,2,0,2,1,0,1,1,2,0,2,2,0,1,1,0,0,0,1,2}
Returns: 0
940
114
940
{2,1,1,2,0,2,0,1,2,0,0,0,1,0,2,1,1,0,0,1,0,0,2,2,2,0,2,0,1,0,1,2,1,1,0,0,0,2,0,2,0,0,0,0,1,2,0,1,0,0,1,1,1,1,0,0,0,2,0,1,2,1,1,2,0,2,0,0,2,0,2,0,1,2,2,1,0,1,1,0,0,2,0,2,2,2,1,1,0,1,0,2,2,1,0,1,0,1,2,2,2,2,1,0,0,1,2,2,0,2,0,1,2,2,1,1,2,2,2,1,0,0,0,2,0,1,0,2,1,2,1,1,0,1,1,2,2,1,2,2,2,1,2,1,2,0,0,2,1,2,1,0,2,0,1,2,2,2,0,2,0,1,1,2,0,1,0,1,1,1,0,0,2,2,0,0,0,1,1,0,0,0,2,1,0,2,0,0,2,1,2,0,2,1,0,1,0,0,0,0,2,0,2,0,1,0,1,2,2,0,0,0,1,0,2,0,0,1,2,1,1,1,2,2,1,2,1,0,2,1,2,1,2,2,0,1,0,2,0,1,1,0,0,0,0,0,1,0,0,0,1,0,0,2,1,1,1,0,2,1,0,1,2,2,2,1,2,1,1,1,2,1,2,0,1,1,2,2,1,2,0,2,1,2,2,2,2,0,1,2,2,0,1,0,2,2,1,0,1,0,1,1,0,2,1,2,2,2,1,2,1,0,2,1,2,2,0,2,1,0,1,0,2,2,1,2,2,1,1,0,1,2,0,2,1,1,0,1,1,1,0,1,0,2,0,0,0,1,0,0,1,0,2,0,1,0,0,1,2,1,2,1,0,2,2,0,1,1,0,1,2,0,1,1,0,1,2,2,1,0,1,1,2,0,1,0,2,1,0,2,1,2,0,0,2,1,0,0,2,0,1,2,0,1,2,2,0,0,0,1,1,0,0,1,2,0,0,0,1,2,1,2,1,0,1,2,1,0,2,1,1,2,0,0,1,1,2,0,0,1,1,2,0,0,0,1,1,0,0,0,0,0,1,0,2,2,1,1,1,0,2,2,2,0,2,2,2,2,2,0,1,2,1,2,1,1,2,0,1,2,1,2,1,0,2,0,2,0,1,0,0,1,2,2,1,2,2,0,1,0,0,1,0,2,1,0,1,1,0,1,1,1,1,1,2,0,2,0,1,1,1,0,2,1,1,0,2,1,0,0,0,1,2,1,0,2,1,2,0,2,0,2,0,1,0,2,2,2,1,0,1,1,1,0,0,2,1,0,1,0,2,1,0,0,1,0,1,0,1,1,2,0,2,0,0,2,0,2,0,0,2,2,0,0,1,1,2,0,2,2,1,1,1,2,0,1,0,1,2,0,1,1,2,2,1,1,0,2,2,0,2,2,1,1,2,2,2,1,2,2,2,1,2,0,2,0,1,1,2,1,2,0,1,2,2,0,0,1,0,0,1,1,2,2,1,1,1,0,0,2,2,2,1,2,1,2,0,2,0,0,2,0,2,0,2,2,1,1,1,2,1,1,1,0,1,1,1,1,0,0,1,2,0,0,1,2,1,0,0,1,1,0,0,2,1,2,0,2,1,2,2,0,1,2,2,0,1,1,0,1,1,2,1,1,0,1,0,2,1,0,2,0,1,1,1,1,2,0,1,1,1,1,2,1,1,1,1,0,1,0,0,0,2,0,1,2,0,0,2,1,2,1,0,0,1,1,1,2,0,2,1,2,1,2,0,0,2,0,0,2,0,0,1,1,0,2,0,1,2,0,0,0,1,2,1,2,0,0,2,2,0,0,1,1,2,1,1,1,1,0,0,2,0,2,1,0,2,2,2,1,1,0,1,0,0,2,0,2,1,1,1,0,1,0,0,1,1,2,0,2,2,2,1,1,0,0,2,2,1,1,1,2,0,2,2,2,2,2,1,2,1,0,2,0,0,2,0,0,2,1,2,2,0,2,1,1,1,1,2,1,0,2,0,2,1,1,0,1,0,1,1,1,1,2,0,0,1,0,2,2,2,2,1,2,1,1,0,2,1,2,1,0,2,1,0,0,0,2,2,0,1,2,2,1,0,1,2,1,2,0,0,2,1,0,2,1,1,0,1,0,1,0,1,0,2,2,2,1,1,0,1,2,1,1,1,1,0,2,0,2,2,2,0,2,1,2,1,0,2,2,1,2,2,1,0,0,0,0,1,0,2,0,2,2,1,1,2,0,1,1,1,1,0,1,0,0,2,0,2,0,0,0,1,0,0,1,1}
Returns: 0
880
905
880
{0,1,1,2,2,1,0,0,0,0,2,2,2,0,0,0,0,0,0,2,2,0,2,2,2,2,1,0,1,0,1,0,2,1,2,2,1,2,0,2,2,1,2,2,2,1,0,1,0,2,0,0,1,1,0,0,1,2,0,0,0,1,0,1,0,2,1,2,2,1,1,1,1,1,1,0,2,0,2,0,2,2,0,0,2,0,1,2,2,2,0,0,1,0,0,1,0,0,1,2,0,1,0,1,0,1,1,1,2,0,1,1,1,2,2,1,1,2,0,0,2,0,1,1,0,2,1,2,2,0,2,1,1,2,0,0,0,1,1,1,0,1,2,1,1,2,0,2,2,0,1,1,2,0,2,2,2,0,0,0,1,2,0,1,2,2,1,1,2,1,1,2,0,0,2,1,0,1,1,2,2,2,1,1,0,0,2,2,0,2,2,0,0,0,1,2,0,0,0,0,1,2,0,0,1,2,1,1,1,1,1,0,1,2,1,0,1,1,2,0,0,0,0,2,2,0,1,1,2,2,1,2,2,0,2,1,2,2,1,1,0,1,0,2,2,2,1,0,2,2,2,2,2,1,1,1,2,2,1,1,2,0,0,2,1,0,0,1,0,2,1,0,1,0,1,1,1,0,2,2,2,2,0,1,1,2,1,2,0,2,2,1,0,0,2,0,1,0,2,2,2,0,2,2,2,1,0,1,1,1,0,2,0,1,2,0,0,0,2,0,2,1,2,0,2,1,2,1,1,1,2,1,2,1,2,0,0,0,1,2,1,2,0,0,2,0,0,0,2,2,2,1,0,1,0,1,2,2,2,2,1,0,1,0,0,0,0,2,2,0,1,0,2,0,2,0,2,2,0,2,1,0,2,2,2,0,2,2,0,1,1,2,1,0,2,2,0,2,2,0,1,1,1,1,0,0,1,2,0,0,2,0,0,2,2,0,1,1,1,2,1,2,0,2,1,1,2,2,1,2,2,2,0,2,1,1,2,1,2,2,0,2,2,1,1,1,0,2,0,1,2,2,0,1,0,2,0,2,0,1,2,2,1,2,2,2,2,0,0,2,2,1,1,0,2,2,1,1,2,2,2,0,2,0,0,2,1,1,0,0,2,1,1,2,1,0,0,0,1,0,0,1,0,1,1,2,1,1,0,2,2,1,0,1,0,1,0,0,2,1,1,1,1,0,2,0,1,1,2,1,1,0,1,0,0,2,0,2,1,1,2,2,2,2,0,0,0,2,1,2,1,0,0,2,2,0,0,1,2,0,2,1,0,1,1,1,0,2,0,0,1,1,1,2,0,0,0,1,2,2,0,1,0,1,1,0,2,0,0,1,0,1,1,2,1,2,2,0,0,2,1,0,0,1,0,0,2,0,0,2,1,0,1,0,2,2,2,1,0,0,2,2,0,1,2,2,2,0,1,2,1,1,2,1,2,2,2,0,0,1,2,2,1,0,0,2,0,1,0,1,0,0,0,1,2,2,2,2,2,1,0,2,0,1,1,2,0,2,1,2,0,0,0,2,2,2,1,0,0,0,2,2,2,0,2,0,1,2,1,2,1,1,0,0,1,0,0,2,0,0,1,2,0,0,1,1,1,1,2,1,0,1,2,1,0,1,2,0,1,1,0,0,0,1,0,2,1,0,2,1,2,1,2,2,2,1,1,2,2,2,0,2,0,0,0,1,0,0,1,0,1,2,2,0,2,0,2,0,0,2,0,2,1,0,1,1,1,1,1,0,2,1,2,0,1,1,2,0,0,0,0,1,1,1,2,2,2,2,2,1,2,0,2,2,0,0,0,2,2,1,2,2,0,1,1,1,2,1,2,1,0,1,2,0,1,2,1,0,1,1,2,0,0,1,1,1,1,2,2,2,0,2,0,0,1,1,2,0,1,2,1,2,1,1,2,2,2,2,0,0,0,1,2,0,1,1,1,1,2,2,2,1,0,1,1,0,1,2,0,1,0,0,2,0,0,0,0,1,1,0,2,0,1,2,0,0,0,2,2,2,0,1,2,2,1,1,1,2,0,2,2,2,1,2,2,0,1,2,0,0,2,1,2,1,1,0,0,0,2,0,0,2,0,1,2,2,0,0,2,1,0,2,1,2,0,2,2,2,2,1,1,2,0,0,1,0,2,1,1,1,2,0,1,1,0,0,2,1,1,2,0,0,2,2,2,0,2,1,1,0,1,0,0,1,2,2,1,2,2,1,1,1,0,0,0,1,2,0,1,1,0,0,2,0,2,0,1,2}
Returns: 0
951
806
951
{0,0,0,2,2,2,1,1,0,0,0,0,2,2,2,1,2,2,2,0,0,2,2,2,1,0,0,1,1,1,2,2,1,2,2,2,2,2,0,0,0,0,2,2,0,1,2,1,2,0,0,1,1,1,0,1,0,2,1,1,1,1,2,2,0,0,1,1,1,0,0,2,0,0,0,1,0,1,2,0,1,2,0,2,1,2,1,1,1,1,0,1,2,2,1,2,1,1,0,2,0,1,0,0,2,2,1,0,0,2,0,2,0,0,2,1,2,1,0,1,0,1,1,2,1,1,1,1,2,0,1,1,0,2,1,1,2,1,0,0,0,0,2,0,0,1,0,0,0,0,0,2,2,1,0,1,2,1,0,1,0,2,2,1,1,0,1,0,1,1,0,0,0,0,2,2,2,1,2,1,0,0,1,0,0,1,0,0,0,2,2,1,1,2,2,0,1,0,0,1,1,2,0,1,0,2,0,1,0,2,0,2,0,0,1,1,2,1,0,1,2,2,2,1,0,2,2,1,1,1,2,1,0,1,1,1,1,0,2,0,2,0,1,2,1,1,0,0,1,2,0,2,0,2,2,1,2,1,0,2,1,1,2,1,1,0,1,2,0,1,2,1,0,1,2,0,2,2,2,0,1,0,2,2,0,1,2,2,0,0,0,0,2,2,1,2,0,1,2,0,0,1,0,0,0,1,1,1,1,2,1,2,1,1,1,2,1,2,2,0,0,1,0,2,2,1,2,0,1,0,0,2,0,1,2,1,1,1,1,0,1,2,2,1,2,0,2,1,2,0,0,2,1,2,1,1,1,0,2,0,1,0,0,2,2,1,0,1,1,0,1,2,0,0,0,2,1,2,2,1,0,2,1,1,1,0,0,1,1,2,0,1,1,0,0,1,2,0,1,1,0,2,2,0,1,2,2,0,1,1,0,0,0,0,1,1,1,0,0,0,2,1,0,0,2,0,2,1,0,2,1,1,1,2,2,2,1,1,1,2,2,2,0,0,0,1,2,0,0,1,2,2,1,1,2,2,1,2,0,0,1,0,2,0,2,1,2,1,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,1,2,2,0,1,1,2,2,2,0,1,2,1,0,2,1,0,1,1,1,2,0,2,2,2,2,2,1,2,0,1,2,2,2,1,1,1,0,1,2,2,0,0,1,1,1,0,2,2,1,1,0,0,2,2,0,0,2,1,0,2,2,1,2,1,0,2,1,1,1,2,2,0,0,1,0,2,1,1,0,1,2,2,2,2,1,2,1,2,2,2,0,0,1,0,1,2,0,0,2,2,2,2,1,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,2,2,0,2,1,0,2,0,0,2,2,2,1,0,1,2,2,0,1,1,2,1,2,2,2,0,0,2,2,0,2,1,1,0,0,1,1,0,0,1,2,0,1,2,0,1,1,1,2,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,1,0,1,2,1,1,1,1,0,1,1,2,1,1,2,0,1,1,0,2,2,0,2,0,0,1,1,1,1,2,1,0,2,1,2,2,1,0,0,2,2,0,2,2,1,2,0,1,1,0,1,1,0,2,1,0,2,1,1,1,0,1,0,1,1,2,2,2,2,1,1,2,1,1,2,0,1,1,0,1,0,0,1,1,0,1,0,0,2,2,2,1,0,0,2,0,0,1,0,0,0,2,2,2,1,2,2,0,2,1,1,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,0,0,1,0,0,2,1,1,1,0,2,0,1,0,0,2,1,1,2,2,2,2,1,1,0,0,0,0,0,1,0,2,0,0,0,0,1,2,2,1,1,0,0,1,1,1,2,0,2,0,0,0,1,2,1,2,0,0,0,0,0,0,0,1,1,2,0,1,1,0,2,1,2,0,1,2,2,0,1,0,1,1,0,1,0,1,2,0,0,2,1,1,1,2,1,0,0,0,2,2,2,1,0,2,2,1,2,2,0,2,0,0,0,1,0,2,1,1,0,0,0,0,1,1,0,1,2,0,2,0,0,1,0,1,0,1,0,1,1,2,0,2,1,0,0,2,0,0,0,1,0,0,1,0,1,2,0,0,2,2,0,1,0,1,1,1,2,0,0,2,2,0,0,0,0,2,0,1,2,0,1,1,1,1,0,2,0,1,1,0,2,0,1,0,0,2,0,1,1,0,0,1}
Returns: 0
1
226
226
{0,2,0,1,0,1,2,1,0,0,2,0,0,1,2,2,1,1,2,1,2,0,1,1,0,0,2,1,0,2,2,0,0,1,0,1,0,0,1,1,0,2,2,2,2,1,2,0,0,0,2,2,2,0,1,2,2,2,1,2,1,0,0,1,1,0,1,2,2,2,1,0,2,2,1,2,0,1,0,2,1,1,0,1,2,1,2,2,0,1,2,2,0,0,2,2,1,1,2,1,0,0,0,1,2,2,2,2,2,2,2,2,0,0,2,1,2,2,0,1,0,2,0,2,1,1,1,2,2,2,2,2,2,0,1,1,0,2,1,1,0,0,2,0,1,2,2,2,1,1,2,2,2,2,0,2,2,1,2,1,2,1,0,1,1,1,1,2,2,0,2,2,2,1,0,0,1,1,0,2,0,1,1,2,2,0,2,0,1,2,1,1,2,2,1,0,1,1,1,0,0,2,2,1,2,0,1,2,2,0,2,2,2,0,2,1,2,1,1,2,2,2,1,0,2,1,1,0,2,1,1,1,2,2,0,2,0,2,0,1,0,0,1,1,0,2,1,2,0,2,2,2,0,0,2,0,0,0,2,2,2,1,2,2,1,2,0,0,2,0,2,0,2,0,0,1,0,2,2,0,2,1,0,0,0,2,2,0,0,2,2,1,0,0,2,2,0,2,2,0,1,2,2,0,2,0,0,1,2,1,0,2,2,2,1,2,1,2,0,2,2,0,2,2,1,1,0,2,2,1,1,2,0,0,0,2,2,0,0,0,2,1,1,1,0,0,0,2,1,2,1,2,0,2,1,1,1,2,2,0,2,1,0,1,2,0,2,2,0,1,1,0,1,1,0,2,0,1,1,0,2,2,2,1,1,2,1,1,1,2,2,2,0,0,0,1,0,1,1,2,0,0,2,0,1,0,0,0,1,2,1,0,2,1,2,0,0,0,1,1,1,1,2,1,2,2,2,0,0,2,0,1,0,2,2,1,1,2,2,1,1,1,2,2,2,2,1,1,0,2,1,1,0,0,2,1,0,2,2,1,2,2,1,1,2,1,1,2,0,0,1,0,2,0,2,1,0,1,2,0,2,2,0,1,2,2,1,2,2,1,0,2,2,1,2,0,0,2,0,2,1,2,0,1,2,1,0,0,2,0,2,1,2,2,2,0,2,0,1,1,0,1,0,1,1,2,2,1,0,2,0,0,0,2,1,2,0,0,1,1,2,0,2,0,2,1,0,0,0,0,1,2,2,2,2,1,2,2,1,0,1,0,0,1,1,0,1,1,0,2,1,2,0,0,1,1,2,2,1,2,2,1,1,2,1,1,0,0,2,1,0,1,2,1,0,1,0,1,2,1,2,2,2,2,0,1,2,1,2,2,0,1,2,2,0,2,2,1,1,2,1,2,2,0,1,2,2,2,2,2,2,1,0,2,0,0,0,0,0,2,0,0,1,0,2,2,0,1,0,0,1,1,1,0,1,1,0,0,2,1,2,0,2,0,0,1,0,0,2,1,2,1,1,2,2,1,0,0,2,1,0,0,1,1,2,1,2,0,0,1,0,0,0,2,2,1,1,2,0,2,2,0,2,1,2,1,2,2,1,1,1,1,1,2,1,1,0,1,0,1,0,1,0,2,0,2,0,2,0,1,0,0,2,2,1,0,2,2,2,0,0,2,0,1,0,1,0,2,1,0,1,0,0,1,0,1,0,0,0,1,1,0,1,1,1,2,0,2,2,1,2,1,1,0,2,2,2,2,1,0,0,1,0,0,2,0,2,1,2,1,1,2,2,2,2,2,0,2,0,1,2,0,2,0,1,1,1,0,2,0,2,1,2,0,0,1,2,1,1,0,2,2,1,0,2,0,0,0,2,0,1,1,0,2,0,1,2,2,2,2,0,0,1,2,0,1,1,0,2,1,2,0,2,0,1,2,2,0,0,1,0,1,1,2,2,0,0,2,1,2,0,1,2,2,0,1,0,1,0,2,1,1,1,0,2,0,2,0,1,1,0,0,2,1,1,2,0,0,2,0,2,0,1,2,1,0,0,0,1,0,2,2,2,1,0,2,1,0,1,1,2,0,1,2,0,2,2,2,1,1,2,1,2,2,2,2,2,1,0,2,0,2,2,2,1,1,0,2,1,1,1,2,1,1,2,2,2,0,2,0,1,0,2,0,1,1,0,2,0,1,2,0,0,2,0,0,1,1,1,1,1,2,1,2,2,2,0,2,1,0,2,2,1,2,2,2}
Returns: 243030431
847
847
58
{1,1,2,0,1,1,0,2,0,1,1,2,1,2,0,2,2,2,0,2,2,2,2,0,2,1,0,1,1,0,1,1,2,2,2,1,0,1,2,2,2,2,0,2,0,1,1,1,0,1,1,2,2,0,0,2,0,1,0,1,1,2,1,2,1,0,2,0,1,2,2,2,2,0,2,2,2,2,2,1,0,1,0,1,2,0,0,2,0,1,0,0,0,0,2,0,1,0,2,1,2,0,1,0,1,1,1,2,0,2,2,2,2,0,1,2,0,1,1,2,1,1,1,1,1,0,1,2,0,0,1,2,0,0,1,0,2,0,2,0,2,0,2,1,1,0,1,0,0,2,1,2,0,1,0,2,0,0,0,0,2,2,1,1,1,1,1,2,2,0,2,1,2,2,1,1,0,0,0,2,2,1,1,0,1,2,1,2,0,1,1,0,0,2,0,0,2,1,0,0,2,2,0,2,0,0,0,1,1,2,0,0,2,1,2,0,1,2,2,2,1,0,1,1,2,2,2,1,2,1,2,1,0,2,0,1,2,2,2,0,0,2,2,2,1,2,0,0,2,1,0,1,0,1,2,0,2,1,0,2,1,0,1,1,2,2,1,2,2,0,0,2,1,0,0,2,0,2,1,0,1,1,0,0,0,2,0,2,2,2,2,0,0,1,0,1,1,2,1,1,0,2,2,0,1,2,1,2,1,1,2,1,1,2,1,1,2,2,2,2,0,1,2,1,2,1,1,2,2,1,0,0,2,1,0,2,2,0,0,2,2,1,2,1,1,1,0,0,1,2,0,1,2,0,0,0,0,1,0,2,1,1,1,0,2,1,1,1,1,0,2,0,2,2,2,1,2,2,0,0,0,1,0,2,2,0,2,0,2,1,0,0,2,2,2,2,0,1,1,1,1,2,0,2,1,2,2,0,2,0,2,2,2,0,2,0,2,0,1,0,2,0,2,0,1,0,2,0,0,2,0,2,1,0,2,2,2,1,0,0,0,2,1,1,0,1,0,1,1,1,1,2,1,2,1,2,2,1,0,0,1,1,0,1,0,0,2,0,0,0,2,0,1,0,2,0,1,0,1,2,1,0,0,0,2,2,1,0,0,2,0,2,1,2,0,0,2,1,0,1,1,0,0,0,2,2,0,2,1,2,0,1,0,0,0,2,0,0,2,1,0,1,0,1,1,1,2,2,2,2,0,1,1,2,0,0,2,0,1,2,1,2,1,1,1,1,2,2,2,0,1,1,0,1,2,2,0,0,2,2,0,1,2,2,1,1,2,2,0,2,1,0,2,1,1,2,0,0,0,1,0,1,1,1,1,2,2,0,2,2,2,2,2,1,0,1,2,2,0,1,0,2,1,2,0,0,2,2,1,0,0,0,2,1,0,2,1,2,2,1,0,2,1,2,2,0,0,1,1,0,1,1,0,1,2,2,1,1,2,0,1,0,2,1,1,2,2,1,2,1,2,1,0,0,2,2,1,0,1,0,2,0,0,1,2,1,2,1,1,0,1,2,2,0,2,2,2,2,2,2,0,1,1,0,1,1,2,2,1,0,2,2,2,1,2,2,0,0,1,2,1,0,2,1,0,1,2,2,0,2,0,1,2,2,2,1,2,1,1,0,2,0,2,2,0,1,2,1,0,1,2,0,2,1,2,0,1,0,1,1,2,1,0,2,0,1,1,0,1,2,2,1,1,0,2,0,1,1,1,1,1,1,0,0,2,0,2,0,1,0,2,0,2,0,0,2,2,1,0,0,0,2,0,0,0,0,1,0,2,0,1,1,0,0,2,0,1,2,0,1,0,0,2,0,1,1,1,0,1,1,0,2,1,0,1,2,0,2,2,2,0,0,1,1,1,0,0,1,1,0,2,2,1,0,2,1,1,0,1,0,1,1,1,1,1,2,0,0,0,2,1,2,2,0,2,1,0,1,2,1,1,0,2,0,2,0,0,2,1,2,0,2,1,1,1,2,1,0,2,0,0,1,2,2,2,1,0,2,1,1,2,0,2,0,0,0,1,2,0,1,1,0,2,2,2,0,2,0,0,2,1,0,1,1,1,2,1,0,0,2,2,0,0,0,1,2,2,1,1,2,1,1,2,0,2,2,2,0,0,0,2,0,0,0,0,2,1,2,1,0,0,1,0,1,1,2,2,1,0,0,0,1,1,0,2,1,0,2,2,0,2,0,2,1,2,2,2,2,2,0,2,2,0,1,1,1,1,1,1,2,0,0,1,1,0,1,2}
Returns: 0
277
813
277
{1,2,0,1,1,1,0,2,0,0,1,0,0,2,0,1,2,0,2,2,2,1,2,2,2,1,2,2,0,0,2,2,2,2,2,0,1,1,0,2,0,0,0,0,0,1,1,0,0,0,2,2,0,2,2,1,1,2,0,0,2,2,2,1,2,2,2,2,0,0,1,0,1,0,1,1,0,0,2,1,0,1,1,0,0,2,1,2,2,0,0,1,0,2,2,2,0,1,2,2,1,0,0,0,1,0,2,1,1,2,2,0,2,0,2,1,1,1,2,2,1,1,0,2,1,1,0,0,1,2,2,0,0,1,1,2,2,1,0,1,1,1,0,0,2,1,2,1,1,2,2,1,2,2,0,2,0,0,1,2,2,0,2,1,0,2,1,1,0,0,1,0,2,1,2,0,1,1,1,1,2,2,2,2,0,2,2,1,1,2,1,2,0,1,1,0,2,2,0,0,1,0,2,0,2,1,0,1,2,1,2,0,0,0,0,0,2,2,1,2,1,1,2,1,2,2,1,1,0,2,2,2,2,0,2,2,0,1,1,1,1,1,2,1,1,1,2,2,2,1,0,2,2,0,2,0,2,0,0,1,2,0,2,2,1,0,1,1,2,0,1,0,1,1,1,2,1,0,1,1,0,1,2,2,2,2,0,2,0,2,0,0,0,1,0,1,1,0,0,1,0,2,0,2,1,2,0,2,0,1,0,1,0,0,1,0,1,0,1,0,1,2,1,0,0,1,1,0,2,0,0,2,0,1,2,0,0,2,2,1,2,0,2,1,1,2,1,1,2,2,1,2,2,0,2,1,0,0,1,0,2,2,1,2,2,2,1,1,0,0,0,2,2,1,0,2,1,2,1,0,2,1,1,0,1,1,1,1,2,1,2,0,0,1,0,0,0,1,2,1,2,2,2,0,1,1,1,2,2,2,2,1,2,2,2,0,2,0,0,1,2,1,0,1,2,2,2,2,0,1,1,2,1,2,1,2,1,2,1,1,2,2,2,1,0,1,1,2,2,0,1,0,2,1,0,1,1,1,0,2,2,0,1,0,2,0,0,0,1,0,0,2,2,2,2,1,0,1,1,2,2,2,1,0,1,1,2,1,2,1,2,0,1,2,1,0,2,0,1,0,1,0,2,1,1,0,1,1,2,1,2,0,1,0,1,1,0,2,0,2,1,2,1,1,1,1,2,1,0,1,0,0,0,2,2,2,1,0,0,1,1,2,0,2,0,0,2,0,1,2,2,2,0,2,2,2,0,1,1,0,2,0,0,2,1,2,1,1,1,0,1,0,0,2,1,0,1,2,0,1,2,2,2,2,1,2,2,1,0,1,2,1,1,1,0,2,0,2,2,0,0,2,2,2,1,1,1,1,2,1,1,2,0,0,0,1,2,1,2,1,0,2,2,2,0,0,2,0,2,0,2,0,0,1,1,2,0,0,1,1,1,1,2,2,0,2,1,1,2,2,2,0,1,2,0,1,1,0,0,0,2,1,2,2,2,1,1,2,2,1,2,2,0,2,0,0,2,1,1,1,0,0,2,1,2,2,0,0,0,0,1,1,1,0,0,1,2,2,2,0,2,2,1,2,1,1,2,2,0,2,2,1,2,0,1,1,2,2,0,2,2,2,2,0,0,1,1,1,1,1,1,0,2,2,0,2,1,0,2,2,1,2,1,0,2,2,0,2,0,1,1,2,0,1,1,1,0,2,2,0,1,1,2,0,0,1,1,0,0,2,0,0,1,2,1,2,0,2,1,0,1,2,2,2,1,0,0,2,1,2,2,2,2,0,0,1,2,0,2,1,0,0,1,1,2,0,1,0,1,1,0,2,1,1,2,2,0,2,0,0,1,0,0,1,2,2,1,0,0,2,1,0,2,0,1,1,0,2,2,0,1,2,1,1,0,2,2,2,2,0,2,1,0,2,1,0,2,0,1,0,1,0,2,0,0,1,1,0,2,1,0,2,0,2,0,0,2,2,0,0,2,0,0,2,1,2,0,1,1,1,1,0,2,1,0,1,1,0,2,2,2,1,2,2,2,2,2,0,0,1,2,0,0,0,0,2,0,2,2,0,1,2,1,2,1,1,0,1,0,0,1,1,0,0,1,0,2,1,2,2,1,0,0,0,2,2,0,0,1,0,1,0,0,2,0,1,0,2,0,1,0,2,2,0,1,2,1,2,1,2,0,1,1,1,1,2,1,1,0,1,0,1,0,0,0,2,0,2,2,0,2,2,0,0,0,0}
Returns: 0
379
540
379
{1,2,0,0,0,0,0,2,1,1,2,0,2,2,1,0,0,2,0,1,0,1,1,0,2,2,0,1,0,2,1,1,1,1,2,1,1,2,1,1,2,0,1,1,0,0,2,0,1,0,0,0,0,2,0,1,1,0,0,1,1,1,1,1,2,0,1,0,1,2,0,1,1,0,2,2,1,0,1,1,1,1,0,0,2,2,0,0,0,2,1,1,0,2,1,0,2,0,1,1,2,2,0,2,1,2,1,2,1,1,0,1,0,0,1,1,1,1,1,1,1,0,1,0,1,2,1,1,2,1,0,1,1,2,0,1,2,0,1,2,2,2,1,0,2,0,1,2,1,2,0,1,1,2,2,0,0,0,1,1,1,2,2,2,1,1,0,2,1,1,0,0,1,0,2,2,0,1,2,2,2,1,0,2,0,2,1,0,2,1,1,0,1,0,1,1,0,1,1,0,2,2,2,1,0,0,0,0,1,0,0,0,2,1,1,0,2,2,2,1,1,0,2,0,0,2,1,2,0,2,0,2,2,2,0,0,1,2,2,0,0,2,1,0,2,2,1,1,2,2,1,2,2,0,2,0,0,2,2,0,2,0,0,1,0,2,1,1,2,0,0,2,2,2,0,2,1,0,2,2,0,2,1,0,2,0,0,1,2,0,0,0,0,2,2,1,0,0,2,0,1,2,0,1,1,2,1,2,0,2,1,0,1,1,0,2,1,0,0,0,1,1,1,2,0,1,2,2,0,2,1,2,0,0,2,0,2,0,2,0,2,0,1,0,0,2,1,1,2,1,0,1,0,0,0,2,1,1,1,2,0,1,0,0,0,0,1,0,0,0,2,2,0,2,0,0,1,2,2,0,1,2,0,2,2,2,2,2,0,1,1,0,0,2,2,0,2,0,2,0,0,2,2,1,0,0,2,0,0,1,0,0,2,0,0,0,0,0,1,1,0,2,2,1,1,0,2,2,2,0,2,1,1,1,2,1,1,2,2,1,2,0,0,1,0,1,1,1,2,0,2,0,1,1,0,1,2,0,2,1,0,1,1,2,0,0,1,0,1,2,1,0,0,0,1,0,2,0,0,0,0,2,1,2,1,0,1,1,0,0,0,0,0,0,0,0,2,0,2,2,2,2,2,0,0,0,1,1,0,2,1,0,0,0,1,2,0,1,0,0,1,2,1,1,2,1,2,2,1,0,1,0,2,1,0,0,0,2,1,2,1,0,0,1,0,0,1,2,2,1,1,1,2,1,1,1,2,1,1,0,0,2,1,0,2,0,0,2,2,0,0,0,1,0,0,0,2,2,2,1,1,1,0,0,1,2,1,1,0,2,1,0,1,0,0,1,1,1,1,2,1,0,2,2,2,0,0,0,0,1,1,2,2,1,2,2,2,0,1,2,1,0,2,1,0,1,2,0,1,2,0,0,0,0,2,2,2,2,0,1,1,0,0,1,1,2,1,0,0,0,2,1,0,1,1,0,2,0,2,0,0,2,2,0,2,0,1,2,0,1,0,0,2,2,2,2,0,1,1,1,2,1,2,1,0,1,0,0,1,2,1,1,1,0,0,1,2,1,0,0,0,2,2,2,0,1,2,2,0,0,1,2,1,1,2,1,1,1,2,0,2,1,1,2,2,2,0,0,0,0,1,0,1,1,2,0,0,0,1,2,2,1,0,2,0,0,2,2,2,1,1,2,0,0,1,1,1,2,1,0,0,0,0,0,1,1,2,1,0,1,0,1,2,1,2,0,1,1,1,2,2,0,2,2,1,1,0,0,0,2,1,2,2,0,0,1,0,1,0,2,0,1,2,2,1,1,1,1,1,1,0,2,0,2,1,2,0,0,0,0,0,2,1,2,0,2,2,1,0,2,2,0,0,1,2,1,1,1,2,0,2,0,0,2,0,0,2,0,2,2,1,2,2,2,2,2,2,2,2,1,0,2,0,2,2,1,2,1,2,2,0,2,1,2,2,2,1,1,1,0,2,1,0,1,1,1,0,1,2,2,1,0,0,2,2,0,1,0,1,2,0,2,2,2,2,0,2,2,0,0,2,1,0,1,1,1,0,0,0,1,0,2,2,0,1,2,1,1,2,1,2,1,2,1,0,2,2,2,1,2,2,0,0,2,2,0,1,0,0,2,1,2,0,0,2,0,2,0,2,0,1,1,0,0,1,2,0,2,0,0,1,0,2,1,2,0,2,0,1,1,2,0,1,0,0,0,1,0,0,1,2,2,1,1,0}
Returns: 0
883
39
883
{1,0,2,1,1,2,1,1,1,0,0,0,2,1,2,1,0,1,0,1,0,0,1,2,2,1,2,0,2,2,2,1,0,0,1,1,0,0,0,0,2,2,1,0,1,0,0,2,2,0,0,2,2,2,0,2,0,1,1,0,2,2,0,0,2,2,0,1,2,2,2,1,1,2,0,1,0,2,2,0,1,1,2,2,2,0,1,1,1,2,0,0,1,1,2,2,1,1,0,0,1,1,0,1,0,0,0,0,1,2,0,2,1,1,2,0,1,0,0,1,1,0,1,0,1,1,0,1,1,2,1,0,0,0,0,1,0,0,1,0,0,2,1,0,1,2,0,2,1,1,2,1,2,0,2,0,0,0,0,2,2,0,1,1,2,1,1,2,1,2,2,2,0,2,2,0,0,0,2,2,0,1,1,0,0,2,1,1,1,1,2,2,0,1,1,2,1,1,0,2,0,1,0,2,1,1,1,2,1,2,0,2,1,2,2,0,1,2,1,1,0,2,0,1,1,2,2,0,0,1,1,0,1,1,2,0,2,2,1,2,1,0,0,2,1,1,2,1,2,0,1,2,0,0,2,2,0,1,1,1,2,0,0,0,1,2,1,0,1,1,0,2,1,2,0,2,0,2,2,2,1,1,2,1,0,0,0,0,1,1,0,1,1,0,1,1,1,2,1,0,0,0,2,1,1,1,0,2,0,2,1,1,2,2,2,0,0,0,0,2,1,1,0,1,0,1,1,2,2,2,0,0,0,2,0,0,1,2,0,2,0,2,0,2,2,1,0,1,1,0,2,2,1,2,0,2,2,0,1,2,2,2,1,0,1,2,2,0,1,0,2,1,0,0,1,2,2,1,2,0,2,1,0,0,2,2,0,2,2,0,2,1,0,2,0,2,0,2,1,0,1,1,0,0,2,0,0,2,2,0,1,2,1,1,0,2,0,2,0,2,1,2,1,1,2,2,2,0,1,2,0,0,2,0,0,1,2,1,0,1,2,2,2,1,2,1,2,0,1,1,2,1,0,1,2,0,0,2,0,0,2,1,0,2,0,1,1,2,1,0,2,2,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,1,0,1,1,0,1,2,0,0,1,1,0,0,0,1,2,1,0,2,2,1,1,0,2,0,1,1,2,1,1,0,0,0,1,2,2,1,0,2,0,2,1,2,2,0,2,1,0,2,2,0,2,2,0,2,0,2,2,0,2,2,2,0,1,1,0,2,0,0,2,2,0,2,2,1,1,1,2,0,2,1,1,2,1,2,2,0,1,2,1,2,2,0,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,2,1,2,0,0,0,2,1,2,1,2,0,1,2,1,0,0,1,1,0,2,2,2,0,0,2,1,1,0,2,1,1,1,0,2,2,0,1,1,2,2,1,1,2,1,1,0,2,1,1,1,0,1,0,1,0,1,2,0,2,1,2,1,2,1,0,1,1,2,1,2,0,1,0,1,1,0,2,2,2,1,2,2,1,0,1,1,1,0,0,0,0,0,2,0,1,2,2,2,0,1,1,1,1,2,2,1,1,2,1,2,0,2,0,2,1,2,0,0,0,0,0,1,1,0,1,2,0,0,2,1,2,1,2,0,2,0,2,1,1,1,1,0,1,2,2,1,2,2,2,0,2,1,2,2,0,0,1,0,2,1,2,2,2,1,1,1,2,1,0,0,2,2,0,0,2,0,0,0,2,1,0,2,0,0,0,0,0,1,0,2,1,0,2,1,0,2,0,1,0,0,2,1,2,1,1,0,0,1,0,1,1,0,0,0,2,2,0,0,2,2,2,0,0,2,2,1,0,2,2,2,0,0,1,1,2,0,1,0,1,2,0,0,2,2,1,2,1,1,1,2,1,2,2,2,2,0,2,2,0,0,0,1,1,0,0,0,0,1,2,2,1,2,0,2,1,1,1,1,2,0,0,0,2,0,1,2,0,1,0,1,0,2,0,2,2,2,1,2,0,2,2,0,2,2,2,0,1,1,1,2,0,0,2,2,0,0,2,1,1,0,0,0,0,0,0,0,2,0,1,0,1,1,0,2,2,0,0,2,1,1,0,0,0,2,1,2,2,0,0,0,1,1,1,0,1,0,1,1,2,2,0,1,1,0,2,2,1,2,1,1,2,2,1,1,1,2,2,0,1,2,0,2,0,1,0,0,0,1,0,2,1,1,0,0,0,0,1,1,0,2}
Returns: 0
600
639
639
{0,0,0,1,1,0,1,2,2,1,0,1,1,2,2,1,0,0,2,0,1,2,1,2,0,0,2,2,1,0,2,2,0,1,1,2,1,1,2,0,0,1,1,0,2,1,0,1,1,2,1,1,1,0,0,1,2,1,2,2,0,0,0,2,0,1,0,0,2,2,1,1,2,1,1,2,0,0,1,1,2,1,0,0,0,1,0,2,1,2,2,2,2,0,2,2,2,1,1,2,2,0,2,0,0,2,1,0,0,0,0,1,1,1,2,0,0,1,0,0,0,2,0,2,1,0,1,0,0,1,1,2,2,0,2,0,1,1,1,1,1,0,2,0,2,0,2,1,0,1,1,2,0,1,1,2,0,0,0,1,1,1,1,0,0,1,2,2,0,2,1,1,2,2,2,1,1,2,2,1,0,1,0,0,1,2,1,1,1,1,2,2,2,1,2,2,1,0,2,1,0,1,1,0,1,0,0,1,1,0,0,0,0,1,1,0,1,1,1,0,0,2,1,2,1,1,1,2,0,0,2,2,0,2,2,1,2,1,1,2,0,2,2,2,2,2,0,1,2,2,2,2,1,1,1,0,1,1,1,2,0,0,2,0,1,0,0,0,2,2,2,1,0,1,0,1,0,0,1,1,2,2,1,2,2,0,0,1,2,0,1,2,0,0,0,1,2,2,0,1,2,1,2,2,0,1,2,2,0,0,0,1,2,0,0,2,0,2,2,0,0,2,2,2,0,1,2,2,0,2,2,0,1,0,2,2,1,0,0,2,2,1,2,1,1,1,1,2,1,2,2,1,2,1,1,2,2,2,2,1,2,2,1,2,2,0,0,1,0,0,2,2,1,1,1,0,2,1,2,0,2,1,2,1,2,1,0,0,1,2,1,0,2,1,2,0,0,0,2,2,1,0,2,1,0,1,1,2,2,2,1,1,2,0,0,0,0,1,0,1,1,1,1,2,2,1,0,0,1,2,1,0,0,0,1,0,2,1,2,0,0,2,0,2,2,2,0,0,1,1,1,0,2,1,2,0,1,1,2,0,0,1,2,2,0,2,0,2,2,0,2,0,1,0,1,0,1,1,0,2,1,2,1,1,0,2,1,0,2,1,1,1,0,2,1,0,1,0,0,1,2,1,2,0,2,2,0,1,0,1,2,0,0,0,0,1,1,0,2,2,2,2,1,1,2,2,1,1,1,0,2,0,1,0,1,2,2,1,0,1,0,1,2,0,1,0,1,1,0,0,2,0,1,0,2,0,1,2,2,0,0,1,1,0,2,2,0,1,0,0,2,0,2,0,2,0,0,2,2,1,2,1,0,2,1,1,2,1,0,1,0,1,2,1,2,1,0,2,1,0,0,2,2,0,1,0,0,1,0,2,2,2,1,1,2,2,2,2,2,1,0,0,2,2,0,2,0,0,1,2,1,0,2,1,0,2,2,1,0,0,0,2,0,2,2,1,0,0,2,1,2,0,2,0,0,2,0,2,2,2,1,2,0,1,0,1,2,2,2,2,2,0,2,2,1,0,2,2,2,1,0,2,1,2,2,0,1,0,0,2,2,0,2,2,0,0,2,1,1,0,0,2,1,2,1,1,2,1,0,0,1,1,2,2,1,2,1,1,2,1,1,1,1,1,0,0,2,2,1,1,0,2,2,0,2,1,0,1,2,1,1,1,1,2,0,1,2,1,2,0,0,1,2,1,1,0,2,2,1,1,0,1,0,0,2,0,2,2,2,2,1,0,2,1,1,2,2,0,2,0,2,2,2,1,2,2,0,0,1,2,1,0,0,2,0,0,1,0,0,0,0,1,0,2,1,2,0,2,2,0,1,2,2,1,1,1,2,2,2,2,0,2,2,0,1,0,0,1,2,2,1,0,1,0,2,2,1,0,1,0,1,1,1,0,1,2,2,0,2,0,2,1,2,0,1,1,0,0,0,0,0,1,2,1,1,2,0,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,2,0,1,1,1,2,1,1,0,2,0,1,1,1,2,2,1,1,2,2,1,0,1,1,2,2,0,1,0,2,2,2,1,0,0,0,1,2,1,2,2,0,1,1,0,1,0,1,0,2,1,1,2,1,2,0,1,1,0,0,2,0,2,0,2,1,2,1,2,0,2,2,1,1,2,0,1,1,1,1,1,1,1,1,0,1,2,0,2,2,0,1,2,2,1,1,0,2,0,2,1,0,0,2,2,2,1,1,0,1,0,0,0}
Returns: 0
665
665
128
{0,0,1,1,2,2,0,1,0,1,0,0,2,0,1,1,1,2,0,1,1,1,1,2,1,2,1,0,1,1,1,2,0,0,1,0,0,1,2,2,2,1,1,1,2,1,0,1,2,2,2,1,1,0,1,0,1,0,0,1,2,1,1,1,2,0,2,2,0,2,2,0,0,2,0,0,2,1,1,0,2,1,0,2,0,0,2,1,2,2,1,1,1,0,1,0,0,1,0,0,1,0,2,2,2,0,2,1,2,2,0,0,2,0,0,1,0,0,1,2,0,1,1,1,2,1,1,1,1,2,1,1,1,1,0,1,0,2,2,2,0,1,2,1,1,0,2,2,1,1,1,0,2,0,2,0,0,0,2,1,1,0,2,2,0,2,2,0,2,0,2,0,1,2,2,0,2,0,2,1,0,1,1,2,0,0,0,2,0,0,2,0,0,2,0,1,2,2,1,0,2,2,0,0,2,0,2,1,1,1,0,0,2,1,1,1,1,1,2,1,2,2,1,0,2,0,2,0,1,2,0,0,0,0,2,0,2,1,1,0,0,1,0,2,1,0,0,1,2,2,1,1,2,0,0,2,1,0,0,2,1,1,0,1,1,1,0,2,0,0,0,2,2,2,2,2,1,2,1,1,1,1,2,0,1,0,0,1,2,1,1,1,1,2,0,0,0,1,1,2,0,1,1,1,0,1,1,1,0,2,2,0,0,0,1,0,2,2,0,2,0,1,0,1,1,2,1,0,2,2,1,0,0,1,2,2,1,0,1,1,2,2,2,2,2,1,2,2,1,2,0,1,0,0,0,0,0,1,1,0,0,0,0,1,2,2,2,0,0,1,1,1,2,2,0,2,1,1,2,0,0,1,0,0,2,1,2,2,1,2,1,0,1,1,1,0,1,1,1,1,2,0,1,0,1,0,1,1,2,1,0,1,1,1,2,2,2,2,2,1,0,2,2,1,2,2,2,2,2,1,0,1,0,0,2,1,0,0,2,0,1,1,0,1,1,0,1,2,0,1,1,0,2,1,0,1,2,0,1,0,2,0,1,2,0,0,0,1,0,2,2,0,0,1,2,1,2,1,2,0,0,1,2,1,1,0,1,2,2,2,0,2,1,2,1,2,0,2,0,2,0,1,0,2,2,2,1,2,1,2,2,1,0,1,0,0,0,2,1,2,2,1,0,2,0,2,1,2,0,0,0,0,0,2,2,2,2,0,1,2,2,1,2,0,0,1,2,1,0,1,0,0,0,0,0,0,2,2,2,0,1,0,0,2,2,0,2,1,2,0,0,0,0,0,0,0,0,2,0,1,0,1,0,2,0,2,1,0,2,0,0,1,0,0,2,2,1,2,1,1,0,0,1,1,0,0,2,0,2,0,2,2,1,0,2,1,0,2,1,0,0,1,0,1,0,0,2,1,1,0,0,0,0,1,2,1,2,0,0,0,0,1,2,0,1,2,2,2,2,2,1,2,2,2,0,1,0,0,0,0,2,0,1,0,1,0,1,1,1,2,0,0,0,0,0,1,0,0,1,0,2,2,1,0,1,2,2,2,2,2,1,2,1,2,0,1,2,0,0,0,0,1,1,2,0,1,1,1,2,0,1,1,1,2,2,1,1,0,1,2,0,2,2,1,0,1,1,1,2,1,1,1,2,2,0,0,1,2,0,0,0,0,1,1,0,1,0,1,0,1,2,1,0,0,2,0,2,2,1,1,1,2,2,1,0,0,0,0,0,2,1,1,2,1,0,2,1,0,0,0,2,1,1,0,0,2,0,2,1,1,1,0,1,1,0,0,2,0,0,0,1,2,1,1,2,2,2,1,1,1,2,2,0,2,0,0,0,2,1,1,0,0,2,0,2,1,2,2,0,1,1,2,1,1,2,0,0,0,0,1,1,0,0,1,1,2,1,0,0,1,2,1,0,2,2,2,0,2,2,1,0,2,0,2,1,2,2,2,2,0,2,2,1,1,0,2,2,1,0,0,2,2,0,0,1,1,0,0,2,0,1,2,0,0,2,1,1,2,1,0,0,1,1,2,2,1,1,0,1,2,2,1,2,2,0,1,1,1,1,2,1,2,0,1,1,0,0,1,1,0,1,2,2,2,2,1,1,0,1,1,0,2,1,1,2,1,1,2,2,2,1,0,0,0,1,0,0,2,1,1,0,0,0,2,1,2,1,2,2,1,1,2,1,0,1,2,1,0,1,2,2,0,1,2,1,2,1,2,1,0,1,0,0,2,1,1}
Returns: 0
288
11
11
{1,0,1,1,1,1,2,2,1,1,1,2,1,0,0,1,1,1,1,0,2,2,1,1,0,1,0,2,2,2,1,2,2,0,2,0,0,0,0,0,2,1,1,1,2,2,2,0,1,1,0,1,0,1,2,2,1,2,0,0,0,2,0,0,2,0,0,2,0,1,2,1,1,2,2,0,2,1,1,1,0,2,2,0,2,0,1,1,0,1,2,0,0,0,0,0,2,2,2,0,0,1,2,0,1,0,1,1,0,2,0,0,0,2,2,0,0,1,2,1,1,0,2,1,2,0,1,1,0,1,1,0,1,2,0,1,1,1,0,2,1,1,1,0,1,0,2,0,2,2,2,2,2,1,0,0,2,2,2,2,2,2,2,0,2,0,2,1,0,1,2,1,0,2,2,2,2,2,2,2,1,0,1,1,2,1,0,2,2,0,0,2,1,2,0,0,0,0,1,1,2,2,2,0,0,1,2,2,2,0,0,0,2,2,2,0,2,1,2,1,1,0,2,2,0,1,1,0,2,2,2,0,0,1,1,2,2,0,2,1,2,2,1,2,1,0,0,1,0,1,1,0,0,1,0,0,2,2,2,1,2,0,1,0,1,2,0,0,0,2,0,0,2,1,2,2,1,0,2,2,1,0,2,2,0,2,2,1,1,1,2,0,0,2,0,2,0,0,2,1,1,2,2,2,0,2,2,0,0,2,1,1,2,1,1,1,2,1,0,0,2,2,2,2,1,2,1,1,1,2,1,2,1,2,0,0,1,1,2,0,2,0,2,2,1,0,1,0,1,2,0,1,1,1,1,2,2,0,2,0,1,2,0,0,1,2,2,0,0,1,2,2,0,2,0,1,2,0,2,2,2,0,0,1,1,1,2,2,0,0,0,2,2,0,2,0,1,2,1,1,1,0,0,2,1,1,0,2,0,2,0,2,2,1,2,2,2,2,0,1,2,2,0,1,2,0,0,2,2,1,2,0,2,1,0,1,0,0,1,0,1,2,2,2,0,2,2,1,1,0,0,0,2,0,1,2,0,1,2,2,2,1,1,2,0,1,1,0,2,1,0,1,0,0,1,2,2,2,0,0,1,2,2,0,2,2,1,2,2,0,2,1,0,2,0,2,1,1,2,0,1,0,1,0,2,1,2,2,2,0,1,1,2,1,2,2,2,0,1,0,1,0,2,0,0,2,1,1,1,1,0,0,0,0,2,0,0,1,2,0,1,2,2,1,0,2,0,1,1,0,0,1,2,0,1,0,2,2,1,0,1,2,0,0,1,2,1,2,0,0,2,1,1,1,2,0,2,1,2,2,2,2,2,2,2,0,2,1,2,0,2,0,1,2,1,2,1,1,0,1,1,0,2,1,0,2,2,1,0,0,2,1,0,2,2,1,1,0,1,0,2,1,0,1,2,0,0,0,2,1,1,2,1,1,2,2,0,2,2,0,0,2,1,0,2,0,0,1,2,1,0,2,2,1,1,0,1,1,2,0,0,0,2,2,1,0,0,2,0,0,0,0,0,1,2,2,2,2,0,0,2,1,1,0,0,1,1,0,2,2,2,1,2,0,0,2,1,2,0,0,1,1,1,2,2,2,1,0,1,2,0,1,2,2,0,1,0,0,1,0,2,2,0,2,1,2,2,1,0,1,1,0,1,2,2,1,0,2,1,1,0,1,2,1,2,0,0,0,0,1,2,1,0,1,2,2,0,2,1,1,1,0,2,1,1,0,1,2,2,2,2,0,0,1,0,1,1,2,2,2,1,2,2,2,2,2,2,0,2,0,2,2,1,0,1,1,2,2,1,2,0,1,1,1,2,2,0,2,1,0,2,0,2,2,0,0,1,0,2,0,0,2,1,2,2,1,2,0,1,1,2,0,0,1,1,2,1,0,1,2,2,1,0,1,1,0,0,1,2,2,1,0,1,1,2,2,2,2,2,1,0,1,0,1,1,1,1,2,0,2,0,1,0,1,2,2,0,0,1,1,0,0,2,0,1,0,2,2,2,1,2,2,0,1,0,2,0,2,2,0,2,2,1,0,0,2,0,2,0,0,0,0,0,2,2,2,2,0,2,1,1,2,2,2,1,0,2,1,0,0,1,1,0,1,0,2,1,2,2,0,1,1,0,0,1,0,2,2,2,0,2,2,1,2,2,0,1,1,2,1,1,0,0,0,0,2,1,1,0,2,1,0,1,2,2,0,0,1,1,0,2,2,2,2,2,2,2,0,2,2,2,0,2,1,0,0,2}
Returns: 0
939
46
46
{2,1,0,2,2,1,0,0,1,1,0,1,1,0,1,1,2,0,1,1,1,1,2,0,0,2,0,0,0,2,0,0,0,0,2,2,1,0,0,2,1,0,1,1,0,1,0,0,0,1,1,0,0,2,1,0,2,0,1,1,0,2,1,0,1,1,1,0,0,2,1,2,2,0,0,2,1,0,0,1,2,1,0,2,1,0,1,0,1,2,2,0,0,0,0,2,0,2,0,1,2,1,0,1,1,2,1,2,2,1,0,1,0,0,1,1,0,1,2,0,1,1,2,2,2,0,0,2,1,2,0,1,0,2,2,2,2,2,2,1,1,1,0,2,0,1,0,1,2,1,1,0,2,0,0,2,1,1,0,2,2,0,1,1,2,2,1,0,0,0,1,0,1,1,0,2,1,1,1,1,1,2,1,1,0,0,2,0,1,0,2,2,2,1,0,1,1,0,1,2,0,0,1,2,0,2,0,0,2,0,1,2,0,0,1,1,0,2,1,0,1,0,2,0,1,1,1,2,1,2,0,1,0,1,0,2,0,0,0,2,1,1,1,2,2,1,2,2,1,1,1,0,1,2,0,0,0,0,1,1,0,2,1,1,1,2,2,0,2,2,2,0,0,2,1,0,0,2,2,2,0,1,2,0,0,2,2,0,2,1,1,0,1,1,2,2,1,1,2,1,1,2,0,0,2,2,0,0,0,2,1,0,2,2,2,2,0,2,1,0,1,0,0,2,0,1,0,2,0,1,1,1,0,2,0,1,1,0,2,2,0,2,0,1,1,2,2,2,2,0,2,1,0,1,0,1,0,2,1,0,0,0,0,1,2,0,2,0,1,2,2,2,1,0,1,0,1,1,0,2,0,0,2,1,0,1,1,2,1,2,2,2,0,2,1,0,1,0,2,1,2,2,1,1,2,1,1,0,0,2,0,2,1,1,0,2,1,0,2,0,1,1,1,0,1,0,2,1,0,0,0,0,0,2,0,1,1,2,2,0,1,0,1,0,1,1,2,2,1,2,1,1,2,2,0,2,1,0,2,1,2,1,0,1,2,1,2,1,2,1,2,1,1,2,2,0,0,0,0,0,2,0,2,1,2,2,1,2,0,2,2,0,1,2,2,0,0,1,2,0,2,0,2,2,0,0,2,2,1,0,0,2,0,0,2,2,2,1,2,0,1,0,1,0,1,2,2,0,1,2,2,2,1,1,0,2,0,2,2,1,1,0,0,1,2,0,2,1,1,0,1,2,2,1,1,2,0,0,2,0,2,0,1,2,2,0,2,0,0,0,2,1,1,2,0,2,0,0,0,2,0,2,2,1,0,0,1,1,1,0,1,1,1,1,0,1,0,0,1,1,2,2,0,2,1,1,0,1,0,1,1,2,0,1,0,1,0,2,1,1,0,1,2,1,2,2,0,2,0,2,0,2,2,0,2,0,2,2,2,1,0,2,1,2,0,1,1,0,0,1,2,2,2,1,0,1,0,1,2,2,2,1,0,2,1,2,0,2,1,2,1,0,1,0,1,0,0,2,1,1,1,0,1,2,1,0,2,2,1,2,1,1,2,0,0,0,0,0,1,2,0,0,0,1,0,1,2,1,0,2,1,1,1,0,1,2,1,1,0,0,0,0,0,1,0,1,1,1,0,1,0,2,0,0,0,1,2,2,2,2,1,2,1,1,1,1,2,0,1,2,2,1,2,2,0,2,0,2,1,2,1,1,2,2,1,2,1,0,1,0,0,2,0,2,1,1,1,0,2,0,2,1,0,1,2,0,1,2,0,1,1,0,2,1,2,0,2,2,1,0,0,2,2,1,0,0,2,2,2,2,0,0,2,1,2,0,0,0,0,2,1,2,0,0,1,2,0,1,2,2,1,2,2,1,0,1,1,0,0,0,0,0,1,1,2,1,0,1,2,0,0,2,1,2,0,1,0,0,0,1,0,2,1,1,2,1,2,2,0,2,2,0,0,1,2,2,2,0,2,1,2,2,2,2,0,2,1,2,0,2,2,0,0,1,1,2,0,2,0,1,0,2,2,1,1,2,2,1,1,2,2,2,0,2,2,0,2,1,0,0,0,0,0,1,0,2,0,0,2,0,2,2,0,1,2,2,0,2,0,2,0,0,2,1,2,1,0,2,2,1,1,0,2,0,1,2,0,1,2,2,1,1,1,2,0,2,2,1,1,0,0,0,0,1,2,2,2,1,1,0,0,2,1,1,2,1,2,1,2,1,1,2,2,1,2,2}
Returns: 0
114
837
837
{0,2,1,2,0,1,1,0,0,2,0,1,0,0,0,2,1,1,0,2,1,2,0,1,0,0,2,1,2,2,0,0,0,2,1,0,0,1,0,1,2,2,2,0,0,0,1,0,0,2,0,2,2,0,0,1,1,2,1,2,0,1,1,1,1,0,1,1,2,0,0,0,0,2,2,0,1,1,1,0,0,2,0,1,1,1,2,1,0,2,2,1,0,1,0,0,0,2,1,2,1,1,2,2,2,1,2,1,2,2,2,0,2,2,0,0,2,2,0,0,2,0,0,1,0,1,2,1,2,0,2,0,2,2,2,1,1,2,1,1,2,1,0,0,1,0,1,2,2,0,0,1,2,1,2,1,2,2,2,2,2,0,0,1,2,0,1,0,1,1,2,1,0,0,1,2,1,2,0,0,0,0,2,0,0,0,2,2,0,0,2,2,1,1,2,2,1,1,1,0,2,2,0,0,2,2,0,1,0,0,2,0,1,2,2,2,1,2,2,2,2,0,0,0,0,2,1,0,0,1,0,1,1,1,2,0,0,2,0,1,2,2,1,0,1,1,1,1,0,0,0,0,0,2,0,2,0,0,0,2,1,2,2,1,0,2,2,1,0,2,0,0,2,2,2,1,2,0,2,2,2,0,2,2,1,1,1,2,0,2,1,2,1,1,0,2,0,2,1,2,0,1,0,0,1,1,2,0,0,0,0,2,0,2,1,1,2,1,2,1,2,1,2,1,0,1,0,2,1,0,2,2,0,2,0,1,2,2,1,2,1,2,1,2,2,2,2,1,1,1,0,2,2,2,0,1,2,1,1,0,1,0,1,2,1,2,2,1,1,0,1,0,0,2,1,2,2,2,0,2,0,2,2,2,1,0,1,2,0,1,2,0,0,0,0,1,2,2,2,2,2,2,1,0,2,0,0,1,0,1,1,1,1,0,1,2,0,0,0,0,1,1,0,1,0,1,0,0,1,0,2,1,2,0,0,1,2,1,0,1,2,2,2,1,2,0,2,1,2,1,2,2,1,2,1,0,1,0,0,2,2,1,0,0,0,2,0,0,2,1,1,0,1,1,2,2,0,1,2,2,2,2,2,2,0,1,1,0,2,0,2,2,2,2,1,2,2,0,2,2,1,2,0,1,1,2,2,1,1,1,2,0,1,1,2,1,0,0,0,2,1,0,2,1,2,1,0,0,2,1,2,1,1,1,1,2,1,1,1,2,0,2,2,1,0,1,0,1,0,0,0,1,2,1,0,0,0,0,2,2,0,0,2,0,1,2,0,2,2,0,0,1,2,2,2,2,0,0,0,1,2,2,0,1,1,2,1,2,0,2,2,1,0,0,0,1,0,0,0,1,1,0,2,0,1,0,2,0,2,1,0,1,2,0,0,2,2,1,0,2,2,0,0,2,2,0,1,1,0,2,1,2,0,1,0,0,2,0,1,1,2,1,1,0,0,1,1,1,2,1,2,0,0,1,1,1,1,0,0,0,2,0,0,2,2,2,1,0,1,0,0,2,1,0,2,1,1,2,0,2,0,1,2,0,1,0,1,1,2,2,1,0,2,0,0,0,2,2,0,0,0,0,0,1,1,0,2,0,1,0,1,0,2,2,0,0,2,1,0,0,1,2,1,2,1,1,2,1,2,1,2,2,2,0,2,1,0,0,1,1,2,1,2,0,2,0,1,1,0,1,0,2,0,0,0,0,1,1,0,1,0,1,2,0,1,1,1,0,1,2,0,1,2,1,2,0,1,1,0,0,1,1,1,0,0,0,2,1,1,1,0,0,2,2,2,0,0,1,0,0,1,0,0,1,0,1,1,0,1,2,2,2,0,2,1,1,1,2,2,0,0,2,1,2,0,2,0,1,2,2,2,1,2,0,0,0,1,1,2,2,1,2,2,1,1,1,2,0,0,1,0,1,2,0,0,0,1,1,0,0,1,1,1,1,0,2,1,0,1,0,0,1,1,0,2,2,2,2,0,0,1,1,0,2,1,2,2,0,2,2,0,2,2,2,0,2,1,0,2,2,0,1,0,1,0,2,1,0,1,2,2,1,2,1,1,0,1,0,1,0,1,1,2,2,2,0,1,1,1,0,1,0,2,1,2,0,0,0,0,1,0,1,0,2,1,1,0,2,0,1,2,0,1,2,2,0,0,1,0,2,1,2,1,1,0,1,2,1,2,1,1,1,2,0,1,1,1,2,1,2,0,2,2,2,1,1,2,1,2,0,1,0,2,0,2}
Returns: 0
470
846
846
{1,0,1,2,2,1,1,0,0,2,1,2,2,1,0,1,1,2,0,1,0,2,2,0,0,1,0,2,1,2,1,1,2,0,0,2,1,1,2,0,2,2,0,0,2,0,2,2,1,0,1,0,1,0,0,0,2,0,2,2,1,0,0,0,0,2,1,1,2,1,2,1,2,2,0,2,0,2,1,1,2,1,1,0,2,2,2,1,2,0,2,2,0,1,1,1,1,0,2,1,1,2,0,2,2,0,0,1,1,2,0,1,2,0,0,1,0,0,2,2,1,2,0,2,1,0,0,1,2,1,2,2,0,2,0,0,0,2,1,2,1,1,0,2,0,2,1,1,2,1,2,0,0,0,1,0,0,2,2,2,0,2,1,0,1,0,2,1,0,2,0,0,0,1,0,2,2,1,1,0,2,1,1,0,1,1,0,1,1,1,0,0,1,0,0,0,1,0,0,1,1,2,1,2,2,2,2,0,1,1,0,1,2,2,2,1,0,0,1,2,0,2,2,2,1,1,1,0,2,1,2,2,1,1,1,1,0,1,2,0,2,2,2,0,0,1,0,1,2,0,1,1,0,1,2,0,1,2,1,0,2,0,1,2,1,1,0,0,2,1,0,2,2,1,0,2,1,2,1,2,1,1,0,0,0,1,1,1,1,2,0,1,0,0,1,0,1,0,0,0,1,1,1,0,2,1,2,2,2,1,1,1,1,2,2,0,2,1,1,2,2,0,1,0,1,0,2,0,2,1,0,0,2,0,0,0,2,2,2,0,2,1,1,2,1,1,2,0,1,2,1,1,0,1,1,2,2,2,0,2,1,1,0,0,2,2,0,1,1,2,1,2,2,2,2,0,0,1,1,2,0,2,2,1,0,0,0,0,1,0,1,1,2,0,1,0,1,0,2,1,2,0,0,2,1,1,0,1,1,2,1,1,1,1,1,0,1,1,0,0,1,0,1,1,0,2,1,1,0,2,0,2,0,1,2,0,2,0,0,0,0,0,1,0,1,1,0,2,2,2,2,2,1,0,2,2,0,2,0,1,0,1,1,1,0,2,0,1,2,2,1,0,2,2,2,2,1,0,2,2,2,1,0,1,0,0,1,0,0,1,0,2,1,1,2,1,1,1,0,1,2,0,1,1,0,1,0,2,0,1,2,2,0,0,0,0,1,1,2,2,2,1,2,0,1,0,2,1,0,1,0,0,0,1,2,1,2,1,2,0,1,1,2,1,1,2,1,2,2,0,0,1,1,1,2,1,1,0,0,0,2,2,0,1,2,2,2,2,1,2,2,1,0,0,0,2,0,2,0,0,2,0,1,0,1,2,1,1,2,1,0,2,1,1,0,1,2,1,1,1,1,2,2,1,1,1,2,2,1,1,1,1,0,1,1,2,2,0,0,1,0,2,1,0,1,1,0,1,2,1,0,1,0,0,0,1,1,1,1,2,0,2,0,0,1,0,1,0,1,0,0,0,0,2,2,1,2,2,2,2,1,2,2,1,1,2,1,1,1,2,2,0,2,0,2,2,1,2,2,1,0,2,2,2,1,0,2,2,2,2,1,2,0,0,1,2,0,2,1,0,1,1,1,2,1,0,2,0,0,1,0,1,2,0,1,2,2,1,1,2,1,2,0,2,0,0,2,1,1,1,1,0,2,0,0,1,0,1,0,0,1,0,0,0,2,2,1,2,0,2,2,2,0,2,1,2,0,1,0,0,1,2,0,0,1,1,2,2,2,1,1,0,2,1,0,2,0,1,2,0,2,0,0,1,2,1,1,0,2,1,0,1,2,0,0,0,1,1,0,1,1,1,1,0,0,2,2,1,2,0,1,1,2,2,2,2,1,2,0,0,2,1,2,1,2,1,2,1,1,0,1,1,0,1,1,0,1,0,1,2,1,0,2,0,1,2,0,1,1,0,2,0,1,0,2,1,0,0,2,0,1,2,2,0,0,2,0,1,1,0,0,2,2,1,0,1,2,0,1,0,0,1,2,0,0,0,0,2,0,1,0,0,1,1,0,1,1,2,0,2,0,1,2,0,0,2,1,0,2,0,2,2,0,0,0,1,2,1,0,0,2,0,2,1,2,0,1,2,2,2,0,2,1,0,0,2,1,1,2,0,1,1,2,2,2,1,1,0,1,0,0,2,0,0,2,2,1,2,2,2,0,1,2,0,1,1,1,1,1,0,2,1,0,0,0,0,2,0,1,0,2,0,2,0,0,2,2,2,2,1,1,0,1,2,2,2}
Returns: 295234597
14
14
368
{2,1,0,0,1,0,1,0,1,1,1,2,1,2,1,0,1,1,0,0,2,0,0,0,2,1,0,0,2,0,1,2,0,2,2,0,2,0,0,0,2,1,0,2,0,2,0,2,1,2,2,0,1,0,1,1,1,2,0,2,0,1,1,0,1,0,1,2,2,1,2,0,0,0,2,1,2,1,2,0,1,1,0,2,1,0,0,2,0,1,1,2,1,0,2,1,2,1,0,0,2,1,2,1,2,1,2,1,2,1,0,2,0,1,2,0,1,0,2,2,0,0,2,2,1,0,1,2,0,0,1,0,0,0,1,0,0,0,1,0,1,1,0,2,1,1,1,0,0,1,1,1,0,1,2,0,0,1,2,0,1,0,0,1,0,2,1,0,1,0,0,2,2,1,2,2,2,1,1,2,1,2,1,1,0,2,1,2,0,1,2,1,1,1,0,1,1,1,1,0,0,1,0,0,0,2,0,1,0,0,2,2,1,0,1,1,1,1,1,1,0,1,0,2,2,1,1,2,0,2,2,0,2,2,1,0,2,0,1,2,1,1,1,0,1,1,1,0,2,0,1,2,0,2,0,1,1,1,1,2,2,2,1,1,1,0,1,1,0,0,0,2,2,2,0,0,0,2,0,0,1,1,2,1,1,0,2,1,0,0,1,1,1,1,1,0,1,0,0,0,2,1,1,2,0,1,0,1,2,0,0,0,1,2,0,0,1,0,1,1,2,2,2,1,1,0,0,2,1,0,2,1,2,0,1,2,0,2,2,0,1,0,0,0,2,1,2,0,0,2,0,0,0,0,0,0,2,2,0,1,0,1,1,2,0,0,2,1,0,0,2,1,0,2,2,1,2,0,2,1,0,1,2,1,0,1,1,1,0,2,2,1,2,0,1,1,1,0,1,2,0,1,0,1,1,2,0,0,0,0,1,1,2,1,0,2,0,0,1,1,2,0,1,1,1,2,0,1,1,2,2,1,1,1,0,0,1,0,0,2,1,0,1,1,0,0,2,2,2,0,1,1,1,0,2,2,2,2,0,2,1,2,2,2,0,2,1,0,2,0,0,0,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,1,0,0,1,0,2,1,2,1,0,0,0,1,2,1,2,1,0,0,2,0,2,2,1,0,2,0,2,1,0,2,2,1,0,1,0,0,2,1,2,1,1,2,1,2,1,1,2,1,0,0,2,0,1,1,0,2,0,0,0,1,2,1,1,0,1,2,2,1,1,2,0,0,1,2,2,2,0,0,2,2,0,1,2,2,2,0,0,1,0,0,2,0,2,1,1,0,0,2,2,1,1,0,0,2,0,1,2,1,2,2,0,1,2,1,0,0,2,0,0,2,1,0,1,0,2,1,1,1,1,0,0,1,1,0,2,0,1,1,2,0,2,1,1,0,1,0,0,2,1,1,0,2,1,0,0,1,0,1,1,1,0,1,1,0,2,2,2,0,0,0,1,0,0,1,1,2,2,1,1,1,0,0,0,0,0,2,2,2,1,0,0,0,2,2,1,0,0,0,1,2,1,2,2,0,0,0,2,2,2,0,0,1,1,1,0,2,1,2,2,1,1,2,0,0,1,2,0,0,1,2,2,2,1,2,1,0,0,0,1,2,0,0,1,2,1,0,1,2,1,1,1,2,2,1,2,0,0,2,1,2,1,2,1,0,1,2,1,1,0,2,1,0,0,0,0,0,2,1,0,0,1,1,1,0,2,2,1,2,1,1,1,2,1,1,0,0,0,1,2,0,2,0,2,2,0,2,2,1,1,1,2,0,2,1,1,2,2,0,0,0,0,1,2,2,1,0,2,2,0,2,0,1,0,0,1,1,1,2,0,1,2,0,2,0,1,0,0,0,1,0,1,0,2,2,1,2,1,2,0,1,2,1,0,2,2,2,0,2,1,2,1,0,1,1,0,2,2,2,0,0,0,2,1,0,1,0,1,0,1,1,1,0,2,2,2,1,2,1,2,2,2,0,2,1,1,1,1,2,1,1,1,2,0,2,2,2,2,1,2,2,1,0,0,0,0,1,2,2,1,1,1,1,1,2,2,1,1,1,2,2,0,0,2,1,0,1,0,0,2,0,2,0,1,1,2,1,0,1,2,0,1,2,2,2,0,1,1,2,0,1,1,1,0,0,0,0,0,1,1,1,0,2,0,0,0,1,2,2,1,1,0,1,0,0,1,0,2,2,0,0,2,1,1,2,1}
Returns: 0
981
578
981
{1,2,2,2,1,1,1,2,2,2,2,1,0,0,2,0,1,2,0,0,0,0,0,2,2,0,1,2,1,2,2,0,0,1,2,0,1,1,0,0,1,0,1,1,0,0,1,1,2,0,0,2,0,0,0,0,2,0,1,0,2,2,0,2,1,1,1,1,0,0,2,1,1,0,1,0,0,1,2,1,2,0,0,0,1,1,0,0,2,0,1,1,1,2,0,1,2,2,1,0,1,1,2,1,0,1,2,1,1,0,0,1,0,2,0,2,0,2,2,1,0,0,1,1,0,2,0,0,0,0,2,0,0,1,1,1,2,0,0,2,0,1,0,1,1,1,0,0,2,0,2,1,1,2,0,0,0,0,0,0,1,1,2,0,0,2,1,2,1,2,1,2,0,0,0,2,2,1,2,1,0,1,1,0,1,0,2,0,1,2,2,0,2,1,1,1,2,2,0,2,2,2,2,1,0,1,0,0,1,1,2,1,2,2,0,0,1,1,0,0,2,1,1,0,1,1,0,0,1,1,0,1,2,1,2,0,2,2,1,0,1,2,0,1,0,1,2,1,2,2,0,1,0,1,1,0,2,1,1,0,1,2,0,2,2,2,1,0,1,0,2,1,2,1,1,0,1,0,0,0,2,2,2,2,2,0,0,0,0,0,2,0,0,1,0,1,0,0,2,1,1,2,2,0,0,2,2,1,2,2,2,1,1,1,1,1,1,2,1,2,1,1,2,0,1,1,1,2,0,1,0,0,2,0,2,0,0,1,2,0,2,2,1,2,0,2,1,2,0,0,0,1,0,2,1,1,2,1,0,0,2,2,1,0,0,0,1,1,1,1,0,0,0,1,1,2,2,1,0,2,0,2,1,0,2,1,1,1,1,2,0,1,1,1,1,1,0,1,1,2,2,0,0,2,1,1,2,1,2,0,1,2,1,1,2,2,2,1,2,2,2,0,1,2,2,1,2,1,1,1,2,1,1,1,2,1,0,1,0,2,1,0,0,1,1,0,1,2,1,1,0,2,0,2,0,1,2,1,1,0,1,1,0,0,0,1,1,1,0,2,1,0,1,2,1,2,1,0,1,0,0,0,2,2,1,0,1,2,2,0,2,2,1,1,1,0,0,1,1,0,1,1,2,0,0,0,0,2,1,0,1,2,1,2,0,0,2,0,1,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,2,1,0,2,2,2,1,1,1,2,2,0,2,2,2,0,2,0,2,2,1,0,0,1,2,1,0,0,2,0,0,1,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,2,0,0,0,1,1,1,2,1,2,2,2,0,1,0,1,2,0,2,0,0,1,0,1,0,1,1,1,1,1,2,1,2,2,1,1,1,0,0,2,2,1,0,0,1,0,2,2,2,1,0,2,1,0,1,2,1,2,0,1,0,1,0,1,1,0,1,0,1,2,0,2,0,2,0,2,2,1,0,1,0,1,1,1,1,0,1,2,0,2,0,0,2,2,1,1,0,0,2,2,2,0,0,1,2,1,2,0,1,1,2,2,0,1,1,0,2,0,0,0,2,1,2,2,1,1,2,2,0,0,0,1,0,0,2,2,0,1,0,1,2,0,1,0,2,0,2,2,0,1,0,1,0,1,2,0,1,1,0,0,1,2,2,2,0,0,0,0,0,1,1,0,2,2,0,2,0,2,0,2,2,2,0,0,1,2,2,2,1,1,0,1,2,0,1,2,2,1,0,1,2,2,2,2,2,0,1,2,2,2,0,2,2,0,0,2,1,1,0,2,0,1,2,2,0,2,0,0,2,2,1,0,1,2,1,2,1,1,0,0,0,1,0,2,2,0,2,0,0,2,1,1,1,0,1,0,0,2,1,1,1,1,0,1,2,0,0,0,1,0,2,2,2,0,1,1,2,0,1,0,0,0,1,0,1,0,0,0,2,2,1,0,0,2,0,0,0,0,1,1,1,2,0,2,1,2,2,1,1,2,2,1,0,0,0,0,2,0,2,1,0,0,2,0,2,2,0,2,1,1,0,2,2,1,1,1,0,2,2,1,1,2,0,0,0,1,1,2,2,0,0,0,2,0,0,1,2,1,0,1,0,1,0,1,0,1,2,2,0,1,2,1,0,1,1,2,1,0,0,1,1,0,1,1,1,0,1,0,1,1,1,1,2,0,1,0,0,1,1,1}
Returns: 0
471
940
988
{2,1,1,0,2,1,0,1,0,2,1,2,2,2,2,2,2,0,1,0,1,0,0,0,1,0,0,1,0,1,2,2,2,1,2,0,0,1,2,2,1,2,2,0,2,2,1,0,0,0,2,2,2,2,2,2,0,2,1,1,0,2,0,1,2,0,0,2,2,0,2,2,1,1,2,1,2,2,0,1,0,0,0,2,2,0,1,1,2,0,0,0,2,2,1,2,0,2,1,2,2,2,2,1,1,2,0,2,2,1,2,1,0,2,2,1,2,0,0,2,2,1,0,1,2,2,0,1,1,2,0,1,1,0,2,2,2,1,2,0,0,2,0,2,1,1,1,1,0,1,2,2,1,0,1,2,1,1,1,1,1,1,2,1,0,2,0,1,0,0,0,1,2,1,1,0,1,2,2,1,0,2,2,2,1,1,0,1,1,0,0,1,0,2,2,0,2,1,1,0,1,1,2,2,1,2,2,1,0,0,2,2,1,2,0,0,2,0,2,2,2,0,1,1,2,0,0,2,2,1,0,2,1,0,2,2,0,0,1,1,0,0,1,0,2,2,1,2,0,1,2,2,0,0,2,2,1,1,2,1,1,2,0,1,2,0,2,0,1,0,2,2,2,1,0,2,2,1,0,2,2,1,2,0,0,2,2,0,2,0,2,0,0,0,2,2,1,0,2,2,1,2,0,2,2,0,2,0,1,2,0,2,1,1,2,1,0,0,1,0,0,0,0,0,2,1,0,0,2,2,0,2,0,1,1,1,0,1,0,0,0,1,0,0,1,1,0,0,1,0,1,2,2,2,1,0,2,1,2,2,2,0,2,1,0,0,2,0,2,2,2,2,2,1,1,2,0,1,2,0,2,1,1,1,1,0,2,1,1,1,2,2,2,2,0,2,2,1,1,2,0,1,0,2,0,0,0,0,0,1,0,2,0,0,1,2,2,1,1,2,1,0,1,2,2,2,0,0,1,2,0,1,0,2,1,2,1,2,1,0,2,1,2,2,0,0,2,1,0,1,1,1,1,2,2,1,1,1,2,2,0,1,0,0,1,2,2,0,0,0,2,1,0,2,1,0,2,1,2,0,2,2,0,2,2,0,1,2,0,0,0,1,0,2,1,0,2,1,0,1,1,2,0,1,1,0,1,2,2,1,1,1,0,1,1,0,0,2,0,0,2,2,2,1,2,2,0,2,0,2,1,2,0,2,2,2,0,2,0,2,2,0,0,2,0,0,2,0,2,2,0,1,0,2,0,1,1,2,0,1,2,0,2,2,2,1,0,1,1,0,1,2,2,0,0,2,0,2,1,1,2,2,0,1,0,1,2,0,1,0,0,1,0,1,0,0,2,1,1,1,2,2,2,1,0,2,0,1,1,1,0,2,1,0,0,1,2,1,2,2,2,1,2,2,0,0,2,1,2,2,0,2,2,0,1,0,2,1,1,0,1,0,1,2,1,2,2,2,2,0,2,0,2,2,2,2,1,0,1,1,1,0,2,1,1,0,1,0,2,1,2,1,2,0,1,1,0,1,2,2,1,0,2,1,0,1,2,1,1,0,0,2,1,2,2,2,1,0,0,1,2,1,1,0,2,0,1,2,2,0,1,2,2,0,0,0,1,2,2,0,2,2,0,1,2,2,2,2,1,2,2,2,1,2,1,1,2,0,0,2,2,2,1,1,0,1,2,0,2,2,2,1,0,0,1,2,0,1,0,1,1,2,2,0,0,1,1,0,2,2,1,1,2,0,2,1,0,0,0,2,0,1,0,1,2,1,0,2,1,2,2,0,2,2,0,0,1,1,2,1,2,2,0,0,0,2,2,0,0,0,0,0,0,1,1,2,1,2,2,1,1,1,1,0,1,1,0,2,1,0,2,2,2,1,1,0,1,2,1,0,2,2,2,2,0,2,0,1,1,2,2,2,2,2,0,1,1,2,0,1,0,0,1,1,2,2,0,2,2,0,0,2,0,1,1,2,2,0,1,0,1,2,2,2,0,2,2,0,2,2,1,2,1,1,0,2,0,0,0,0,2,1,0,0,2,2,0,2,2,2,1,1,0,2,2,2,1,2,2,1,2,1,1,1,1,0,0,1,1,1,2,1,0,1,0,1,0,2,0,2,2,0,2,1,1,2,2,1,2,2,0,0,0,1,1,2,0,0,1,0,2,1,2,2,1,1,0,1,0,0,2,1,0,0,2,2,2,0,2,1,1,1,2,2,1,1,0,1,1,2,2,0,0,2,1,2,2,2,2,0}
Returns: 0
27
814
510
{2,1,0,2,2,0,2,1,2,1,1,2,2,2,1,1,2,0,0,1,1,0,0,0,0,2,2,2,2,0,0,1,2,2,1,0,0,2,1,2,1,1,0,1,2,2,0,0,2,0,2,0,1,1,2,1,2,2,2,2,2,1,0,1,2,1,1,1,1,2,2,1,2,1,1,2,2,1,1,1,0,1,2,0,0,2,2,0,1,0,2,0,0,0,1,1,2,2,0,0,1,1,1,0,1,2,2,0,0,2,1,2,2,1,1,1,1,2,1,2,0,2,0,2,1,2,0,0,0,1,2,2,0,0,0,2,1,1,1,2,1,1,2,1,0,2,2,2,0,2,0,1,2,0,0,1,1,1,2,0,2,0,2,2,1,1,2,1,1,0,0,2,2,0,0,0,1,2,1,2,2,1,0,1,2,1,0,2,0,2,2,2,2,2,1,1,2,1,2,0,1,1,0,1,0,0,0,2,0,2,1,2,0,2,0,0,1,2,0,0,1,0,0,2,1,2,0,0,1,2,2,0,1,2,1,0,1,2,2,1,0,2,2,0,1,2,0,2,2,0,1,0,2,0,2,1,2,2,2,2,0,1,0,0,0,2,1,0,1,0,1,0,0,1,2,2,0,1,0,0,0,0,1,1,2,0,0,1,0,0,1,2,1,0,2,1,2,2,2,0,2,2,1,2,1,0,2,0,1,0,1,2,2,2,2,1,2,0,0,2,2,0,1,2,2,1,1,2,0,1,1,1,1,2,2,2,1,2,1,2,1,2,0,1,0,2,1,2,2,0,0,2,2,0,2,2,1,1,2,0,1,1,0,2,2,2,0,1,0,1,1,1,0,0,2,2,1,0,1,2,2,1,2,1,1,1,1,2,2,0,0,1,2,1,0,2,1,1,0,2,2,1,1,1,2,1,1,2,0,0,2,0,2,0,2,2,0,1,0,2,0,1,0,2,1,1,2,0,1,1,0,2,0,0,1,2,0,2,0,2,0,2,1,2,2,0,2,0,2,0,2,2,2,1,2,2,1,2,2,2,2,2,1,2,1,0,2,2,1,0,1,1,0,2,0,2,0,0,0,1,2,0,2,0,0,0,2,0,2,0,1,2,1,2,2,2,0,1,1,0,1,2,2,2,2,2,1,2,1,0,2,1,2,1,0,2,0,0,0,1,0,1,0,2,1,2,1,0,1,1,2,1,2,0,2,2,2,1,0,1,0,0,0,0,2,2,0,1,0,0,1,2,1,2,2,1,0,1,1,2,0,2,0,2,0,2,1,1,0,1,0,0,1,2,2,0,0,0,1,0,2,2,0,2,2,1,2,1,1,2,0,2,0,2,1,2,0,0,1,2,0,1,0,0,2,1,0,2,2,1,2,1,0,0,2,2,0,1,0,1,0,0,0,1,2,0,2,0,0,1,0,2,2,1,1,0,0,0,1,1,0,2,2,2,2,0,0,0,2,0,0,1,2,2,1,2,1,0,2,0,2,2,2,2,1,1,1,0,2,0,2,2,1,1,0,1,2,2,0,1,2,1,0,2,2,0,2,0,1,2,2,2,2,2,1,0,2,0,0,1,1,0,2,0,2,2,1,0,2,2,0,1,2,0,0,1,2,1,1,0,2,1,1,2,2,0,0,1,1,2,0,2,1,1,1,2,1,2,2,1,0,2,1,0,2,1,1,0,2,0,1,1,2,1,1,1,1,2,2,2,0,2,2,2,2,2,0,0,2,1,1,0,2,0,2,0,0,0,1,2,1,0,2,2,2,2,2,2,1,1,1,0,2,1,2,1,2,0,0,2,2,1,0,0,0,1,2,2,0,1,1,1,2,2,2,1,2,0,2,1,1,2,1,0,0,1,1,0,2,2,0,0,2,1,2,1,2,0,2,2,1,1,0,0,1,0,1,2,0,1,0,2,2,2,0,1,2,1,2,1,2,0,1,1,2,2,1,0,2,1,1,2,2,0,0,2,2,2,2,1,1,1,1,2,2,2,1,2,2,1,1,2,1,2,0,1,1,0,0,0,1,1,1,2,2,2,2,0,0,1,2,2,0,2,2,2,0,2,0,1,0,1,1,0,2,0,0,1,0,1,0,0,0,1,1,2,0,0,2,2,1,2,0,2,2,2,1,1,2,1,0,0,1,0,0,0,1,2,1,2,0,0,0,1,0,2,2,2,0,1,2,0,0,0,1,2,0,2,2,1,0,1,0,0,2,0,0,1,2,0,2,1,2,2,1,1,1,1,0}
Returns: 618376502
673
8
478
{1,1,0,1,0,2,0,0,1,0,0,2,0,0,1,2,1,0,0,0,0,1,2,2,0,0,2,0,1,1,2,0,2,1,2,2,0,1,1,2,0,1,0,1,1,0,0,0,1,2,1,2,2,1,2,2,2,2,2,1,2,2,1,1,1,2,2,0,0,1,1,2,0,1,1,1,0,2,1,1,1,1,2,2,1,1,1,0,1,2,1,2,0,2,2,0,0,1,1,0,0,0,0,0,2,0,2,2,1,0,2,1,0,1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,0,2,1,1,0,1,1,2,0,1,0,1,2,0,0,0,1,0,0,1,0,1,2,1,1,0,2,1,0,1,2,2,1,2,2,2,1,2,1,0,1,2,0,1,1,0,1,0,2,1,0,1,0,2,1,0,1,2,1,1,0,2,0,2,0,2,0,0,0,1,0,0,1,1,0,1,1,2,2,1,2,0,2,2,0,1,2,1,1,1,1,1,0,0,0,0,2,2,2,2,2,0,1,1,0,2,2,0,1,1,0,1,1,0,1,0,0,2,2,0,1,1,1,1,2,2,2,2,2,0,2,0,1,2,2,1,0,0,0,1,0,0,0,2,2,1,0,2,0,0,1,2,2,2,2,0,0,0,2,1,1,1,1,0,0,1,1,0,1,1,0,2,0,1,1,2,0,1,1,2,0,0,1,1,1,1,2,0,1,0,0,1,1,0,1,0,2,1,0,2,0,1,1,2,1,2,2,2,0,1,1,2,1,0,2,1,1,2,1,0,1,0,0,2,0,2,2,1,2,2,1,0,1,1,0,0,2,0,2,0,1,2,0,0,1,0,2,0,2,0,1,2,1,0,1,1,2,0,2,1,0,1,2,1,2,1,1,1,1,1,2,0,0,1,1,2,0,0,2,2,0,0,1,2,2,1,1,0,2,2,0,1,0,2,1,2,1,2,2,1,0,1,0,2,2,0,1,2,1,0,0,2,1,0,2,1,2,2,0,2,2,1,1,2,0,0,2,1,2,1,0,2,2,0,0,0,0,2,2,1,2,1,0,1,2,2,2,1,0,0,0,0,0,2,0,2,2,2,0,2,0,0,0,2,0,2,1,2,2,2,1,0,2,1,0,2,1,0,1,2,1,2,1,1,1,0,1,1,1,0,1,2,1,0,2,0,0,0,1,1,2,2,1,1,0,0,2,2,2,1,1,0,2,1,2,2,0,0,0,0,2,0,1,0,0,0,2,0,0,0,2,2,0,2,2,2,0,1,0,0,1,0,2,2,2,0,2,0,0,2,2,0,1,1,2,1,2,2,0,0,0,2,0,2,0,0,1,0,1,2,2,2,1,2,2,1,2,0,1,2,1,1,0,1,0,1,0,2,2,0,2,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,1,1,1,0,0,1,1,1,2,1,2,0,2,0,1,1,1,2,2,0,0,0,0,1,2,0,0,1,1,0,0,0,2,2,1,2,0,0,1,1,1,2,0,0,0,0,2,0,0,2,0,0,0,2,2,0,2,1,0,2,1,2,2,1,1,2,1,1,2,1,1,1,1,0,0,1,2,1,2,2,1,1,0,0,2,0,1,0,1,2,1,0,0,0,2,2,2,0,0,0,0,1,2,2,2,2,0,1,1,0,0,2,2,0,0,0,1,2,0,1,0,0,2,0,0,0,0,1,2,1,1,0,1,2,0,0,0,2,2,1,0,1,2,0,2,1,1,2,1,0,1,1,0,2,2,2,1,1,2,0,0,0,2,1,1,2,0,1,2,1,1,0,2,1,0,1,1,2,2,2,0,2,2,2,2,2,0,1,0,2,2,0,1,0,0,0,1,0,2,2,1,0,1,1,1,2,1,0,2,0,0,0,2,2,0,0,2,1,0,1,1,0,2,0,2,2,1,0,2,2,1,2,0,2,1,0,0,0,1,2,1,0,1,2,1,2,1,0,0,0,2,0,0,2,2,2,0,0,1,2,0,0,1,1,2,2,2,0,1,1,0,2,0,2,2,0,2,2,0,2,1,1,0,0,2,0,2,1,0,0,1,0,1,2,2,2,1,0,0,1,2,1,2,2,2,2,0,2,0,1,2,1,2,0,2,2,1,1,0,1,1,1,2,1,2,1,2,2,1,0,2,1,1,2,0,2,1,1,1,1,0,2,0,2,1,1,2,2,1,1,1,2,2,1,0,0,0,0,2}
Returns: 0
685
486
164
{1,1,1,2,0,1,2,0,1,0,2,2,2,1,1,0,2,2,1,1,1,2,1,1,2,2,2,2,1,0,0,0,0,1,2,0,0,2,1,0,0,1,0,2,0,1,2,0,2,0,1,1,1,1,2,2,0,1,1,0,0,1,0,1,2,2,2,1,2,2,2,1,0,1,2,2,2,0,1,0,2,2,1,0,2,1,0,0,2,0,1,1,0,2,1,1,1,0,0,0,2,2,1,1,1,2,1,0,0,2,1,2,2,1,1,1,2,2,1,1,1,0,1,2,0,0,2,0,0,1,0,0,1,1,1,0,1,0,0,0,2,0,1,0,1,0,1,1,0,0,0,1,1,2,1,1,2,1,2,1,0,2,1,2,2,0,1,1,2,0,1,1,0,1,0,1,0,0,2,0,1,0,0,0,0,2,0,0,2,0,2,0,1,1,1,2,0,0,2,0,2,0,1,0,0,1,1,0,1,2,0,1,0,2,0,0,2,2,0,0,2,2,1,0,2,0,0,0,0,2,1,1,0,0,1,2,0,0,2,1,2,0,1,1,2,0,0,2,1,1,0,2,2,1,0,1,0,1,0,0,0,0,0,1,1,0,2,0,1,2,0,1,2,0,1,1,0,0,0,1,2,2,0,0,2,1,0,1,1,1,2,0,0,0,0,1,0,2,1,0,1,1,2,1,0,0,1,2,0,0,1,1,1,1,2,1,2,0,0,2,0,0,2,2,0,2,2,2,2,1,1,1,0,0,0,2,0,1,2,0,1,1,1,0,0,1,1,2,1,0,0,0,1,1,2,0,2,2,1,0,1,1,0,2,0,2,1,0,1,0,0,0,0,0,0,1,1,1,2,2,0,2,1,0,0,0,0,1,0,1,1,2,1,2,1,1,1,2,0,0,0,2,1,2,1,0,2,2,2,1,2,2,2,1,1,2,1,1,2,1,1,1,0,1,2,0,1,2,1,1,0,0,0,1,0,1,0,1,1,1,2,1,2,2,2,0,0,0,2,0,0,2,2,1,2,0,2,2,0,2,1,1,2,1,1,0,2,2,0,0,2,1,0,2,1,2,1,0,0,1,0,0,1,2,1,0,0,1,2,2,1,0,0,1,1,0,1,1,1,0,0,0,1,2,0,2,1,0,1,1,1,2,2,1,1,1,2,1,1,2,2,1,1,2,0,1,2,0,0,0,1,0,1,2,1,2,0,0,2,2,0,2,1,1,1,2,1,2,2,2,0,0,1,1,1,0,0,2,0,2,2,1,0,0,2,1,1,1,1,1,2,1,1,2,2,1,2,0,1,1,1,1,0,1,0,0,2,1,0,1,0,1,0,1,1,0,1,0,0,0,1,2,1,2,0,0,0,2,2,2,0,0,0,2,2,0,1,0,2,1,0,1,0,2,0,0,0,0,1,1,2,0,2,0,1,0,1,0,1,0,1,0,1,2,2,2,2,2,0,1,1,1,0,2,0,1,1,2,2,1,2,1,1,0,2,0,1,0,1,1,2,0,0,1,1,0,2,0,1,2,1,1,1,0,1,1,1,0,1,2,2,0,1,2,1,2,1,0,2,0,1,0,0,0,0,0,0,1,2,1,0,0,1,2,2,1,1,2,2,1,0,2,0,2,2,1,0,0,2,1,2,2,1,1,1,0,0,1,2,2,0,1,2,2,2,0,2,1,1,1,1,1,1,0,0,2,1,2,0,0,1,2,2,0,1,0,2,1,2,2,0,2,2,1,0,1,1,2,1,1,0,2,2,1,1,0,2,2,2,1,2,1,0,1,2,0,2,0,1,1,1,1,2,0,2,0,1,1,0,1,2,2,0,0,0,0,1,1,1,1,0,1,2,2,0,0,2,1,0,0,0,0,2,2,0,0,0,1,2,2,2,2,0,0,2,1,1,1,1,1,2,0,2,2,2,1,0,0,0,2,2,2,1,2,0,1,0,0,1,1,2,2,1,1,0,0,0,1,1,2,1,0,2,0,1,1,0,2,0,2,0,1,1,0,2,1,0,2,1,0,0,2,0,0,1,2,0,0,1,2,1,0,2,1,1,2,1,0,2,0,0,2,1,0,0,1,2,0,0,0,2,0,1,2,2,1,0,0,2,1,2,0,1,1,0,0,2,0,2,2,1,2,0,1,0,0,0,2,1,0,1,0,1,1,2,0,1,2,2,1,0,0,0,2,2,1,1,2,1,1,0,0,2,0,2,1,0,1,0,0,2,1,0,1,0,0,2,2,2}
Returns: 0
393
160
372
{0,2,0,2,0,2,2,1,2,2,0,1,1,0,0,1,2,0,1,0,1,0,1,1,1,1,0,1,0,0,2,0,1,1,2,0,2,1,0,1,0,2,1,1,2,1,0,1,2,0,1,2,0,0,0,2,1,0,1,1,1,0,2,2,0,1,0,1,2,1,1,0,2,0,1,0,2,2,1,1,2,0,0,1,2,0,1,1,0,1,1,1,0,1,0,2,2,0,2,0,0,0,2,1,1,2,2,0,2,1,2,2,1,0,0,2,1,0,2,1,1,0,1,0,0,0,2,0,1,0,0,2,1,0,2,1,0,2,2,0,1,2,2,0,2,1,0,0,2,2,0,1,1,1,0,1,0,2,2,1,2,0,1,1,2,0,0,0,0,0,0,0,0,1,1,2,0,1,1,0,0,0,1,2,1,0,1,2,0,0,1,1,1,0,0,2,0,1,2,2,1,0,1,1,1,1,2,2,2,0,1,1,0,2,0,1,1,1,2,1,1,2,1,1,0,2,2,1,0,0,1,0,1,0,0,2,1,2,1,2,2,0,0,0,1,2,1,1,1,2,1,0,2,0,1,0,2,0,0,1,0,0,2,0,0,1,2,1,2,1,0,1,0,2,2,1,0,1,2,0,0,0,1,2,1,0,2,2,2,0,1,0,0,2,2,0,2,0,1,1,2,0,2,2,1,0,0,0,0,1,2,0,1,1,0,0,2,1,1,2,1,0,2,0,0,2,0,2,2,0,0,2,1,0,2,0,1,1,1,1,1,1,2,0,1,1,0,1,2,2,0,0,0,0,1,0,1,0,0,0,2,1,2,0,2,1,2,2,0,0,1,0,0,0,2,1,1,0,0,2,2,2,1,0,0,1,1,1,2,1,0,1,1,0,1,1,1,0,2,2,1,0,2,0,0,0,2,0,1,1,2,0,2,2,2,1,0,0,2,0,0,2,2,0,0,1,1,0,1,0,0,0,0,1,2,2,2,2,2,2,2,2,1,2,0,0,0,1,0,2,2,2,1,1,2,0,1,0,0,0,0,0,1,2,0,1,2,2,0,1,0,0,1,1,1,1,0,2,1,2,1,0,0,0,2,1,1,2,1,0,1,1,1,1,1,0,2,1,0,1,0,2,0,1,1,0,0,0,0,1,0,0,0,2,0,1,1,1,0,1,0,0,2,2,2,0,2,0,1,1,2,1,1,2,2,1,2,2,2,0,2,2,1,0,2,1,0,0,0,0,1,1,2,2,1,0,0,1,2,2,0,1,1,2,2,2,0,2,1,2,2,0,1,1,1,1,2,2,0,0,0,0,1,0,0,2,0,1,2,0,0,1,1,0,1,0,0,1,0,0,2,2,0,0,0,1,0,2,1,1,1,0,0,1,0,1,1,0,0,0,2,1,2,1,2,0,1,0,2,2,2,1,1,2,1,1,2,1,1,2,0,2,2,2,2,1,2,1,1,0,2,1,1,0,1,2,1,1,0,2,0,1,0,2,2,0,1,0,2,1,2,1,1,2,0,1,1,0,0,2,0,0,2,1,1,0,0,0,0,1,0,0,1,0,1,0,1,2,0,0,0,0,0,0,1,0,1,1,0,2,2,1,0,1,1,0,0,1,1,0,1,2,1,2,2,0,1,1,2,0,2,2,1,2,1,2,1,0,1,0,0,2,0,2,2,1,2,0,1,0,1,1,1,0,0,1,2,1,2,0,1,1,1,1,0,1,1,2,1,2,0,2,0,2,0,0,1,0,2,1,2,1,2,0,2,2,0,1,1,2,2,1,0,0,1,1,1,0,0,2,2,0,1,0,2,0,1,0,2,1,2,0,0,1,0,0,0,1,0,2,2,2,1,0,1,2,1,1,2,2,2,0,0,2,0,0,0,1,2,0,1,1,2,1,2,2,2,2,2,0,2,0,0,1,0,0,0,1,0,2,0,0,1,1,2,1,2,1,0,1,1,2,1,0,0,2,2,2,0,1,1,1,2,1,0,1,2,1,0,1,1,1,2,0,1,2,2,1,0,2,2,1,1,2,0,0,1,2,2,1,2,0,1,1,0,1,1,1,1,1,2,2,0,0,2,1,2,2,1,2,0,2,0,1,2,0,1,2,0,2,1,0,2,2,1,2,2,1,2,2,0,0,0,0,1,1,1,2,1,0,1,0,1,1,2,2,2,1,2,1,1,2,0,2,1,0,0,2,0,1,0,0,1,1,0,0,0,2,1,1,2,2,1,0,1,1,2,1}
Returns: 0
644
208
100
{2,0,0,2,0,0,2,1,2,1,0,1,2,1,2,1,0,0,0,2,1,2,1,1,0,1,1,2,0,1,2,2,1,0,0,0,2,1,0,0,0,2,1,2,0,1,1,2,1,0,0,2,2,1,0,0,2,2,2,2,2,0,0,1,0,0,1,0,0,2,2,0,2,0,0,1,0,1,1,0,0,0,2,2,2,2,0,0,2,1,0,0,0,2,1,2,0,0,1,0,0,2,2,0,0,0,1,1,2,1,0,0,2,0,0,0,1,1,0,1,1,2,2,0,2,0,0,1,0,0,0,1,0,2,2,0,0,2,0,1,1,0,0,2,1,1,1,2,1,1,0,0,2,0,1,0,0,1,2,1,2,0,2,2,1,0,1,2,1,2,2,0,2,2,1,1,0,1,1,0,0,0,0,1,1,2,0,2,2,2,1,0,0,1,1,1,2,0,2,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,0,0,1,0,1,0,1,1,0,0,0,2,2,2,1,2,1,0,0,2,1,2,1,2,0,2,1,0,1,1,0,0,1,0,2,2,1,2,0,1,2,1,0,1,0,1,0,2,1,0,0,2,0,1,1,0,0,0,0,1,1,0,0,2,2,1,1,1,0,0,1,2,1,0,0,1,1,2,0,2,2,2,2,1,2,0,0,1,2,1,2,1,1,0,1,0,2,1,0,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,2,1,0,1,2,0,1,1,1,0,1,0,1,1,2,2,2,0,0,2,2,0,2,0,0,1,1,2,2,0,0,2,2,1,0,2,0,2,0,0,2,0,2,0,1,0,1,0,1,2,0,2,1,0,1,2,2,2,2,1,2,0,2,0,2,0,2,1,2,0,1,1,1,2,0,2,1,2,2,1,0,0,2,2,0,0,1,0,0,0,0,1,1,0,1,2,1,1,0,0,0,1,1,1,1,2,0,0,2,1,2,1,0,1,2,0,1,2,1,1,1,2,1,1,0,1,1,2,2,2,2,1,2,0,1,0,2,0,1,1,2,1,0,0,1,2,1,0,1,0,0,2,2,2,1,0,2,1,1,1,1,0,0,1,0,2,2,1,0,1,1,0,1,1,2,0,2,0,0,2,0,1,0,2,0,2,1,1,1,1,2,1,1,1,0,1,2,2,0,0,2,0,2,2,2,1,0,1,2,1,0,2,1,2,2,2,1,0,2,0,0,0,1,2,0,1,0,1,2,1,1,0,0,0,1,2,1,2,2,2,1,0,2,1,2,2,2,2,1,1,2,2,1,0,1,2,1,2,2,1,1,2,0,0,1,1,2,0,0,0,2,0,1,2,2,0,2,2,2,1,1,0,0,2,0,0,1,1,2,0,2,0,0,2,2,2,0,1,1,2,0,0,2,1,2,2,2,2,0,0,1,1,0,1,2,2,0,1,1,1,2,2,0,2,1,0,0,1,2,1,2,0,1,1,1,0,2,1,1,2,2,0,0,2,0,0,0,0,1,1,2,2,0,0,2,1,1,1,2,2,1,0,0,2,2,0,2,2,1,1,0,1,2,2,2,1,2,0,2,1,0,0,1,1,1,1,0,0,2,0,1,0,2,1,1,1,2,1,1,0,1,0,2,0,1,0,1,2,0,2,1,1,1,0,2,2,1,1,0,0,1,1,1,2,1,1,1,2,2,2,0,2,1,0,1,2,0,1,1,1,2,1,1,2,0,0,2,2,0,2,0,2,1,0,1,1,0,0,2,1,0,2,2,2,1,1,2,0,0,2,2,1,2,2,0,0,1,2,1,0,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,2,1,1,2,1,1,0,2,2,2,2,0,0,2,1,1,1,1,0,2,1,0,2,2,1,1,2,1,1,1,0,1,0,1,1,1,2,2,1,0,1,2,2,0,1,2,2,2,2,0,0,0,1,2,1,2,1,0,2,2,0,2,0,1,1,2,0,0,2,1,0,0,0,1,1,0,0,1,2,2,2,2,0,2,0,1,1,2,1,2,1,1,0,2,0,2,2,2,2,0,1,2,0,2,1,2,1,0,1,1,1,2,0,1,1,1,1,1,1,0,2,0,1,2,2,2,1,1,1,2,1,1,1,1,0,1,2,1,2,2,0,2,1,2,1,2,2,0,2,1,1,1,0,0,2,2,1,1,1,2,0,1,0,2,2,1,1,0,0,0,2,0,1,2}
Returns: 0
537
85
564
{2,1,1,1,1,0,0,2,0,0,2,0,2,2,1,0,2,2,1,2,0,2,2,2,0,0,2,2,0,0,2,1,0,1,1,1,1,0,1,1,1,1,1,0,1,2,0,0,0,0,2,2,2,0,0,1,0,1,2,1,0,1,0,1,2,1,2,0,2,2,0,0,0,1,1,0,0,2,1,1,2,1,1,0,0,2,0,2,2,2,0,2,1,1,1,2,0,0,1,0,0,2,2,0,2,1,2,2,1,2,0,0,2,0,2,2,2,1,2,2,1,1,0,0,0,1,2,1,0,2,2,1,2,0,0,2,0,1,2,0,0,0,1,1,1,2,2,2,1,1,0,2,0,0,0,2,2,1,2,2,0,0,1,1,2,0,2,1,2,0,0,2,1,0,0,0,2,0,1,0,1,2,1,1,2,2,1,1,0,2,0,1,2,1,1,1,1,1,2,2,2,1,0,0,1,1,0,0,1,1,2,2,0,1,2,1,1,0,0,1,1,1,0,2,2,2,0,1,0,2,0,1,0,2,2,2,2,2,0,2,2,2,0,1,1,1,2,1,2,1,1,1,0,0,2,0,1,0,2,0,1,0,2,1,2,0,0,0,2,0,0,2,2,1,1,2,2,1,2,1,1,0,1,0,2,2,1,0,1,0,1,0,0,2,2,2,2,1,2,0,1,2,2,0,1,1,1,0,1,0,2,1,1,2,0,2,2,0,0,1,2,2,1,0,1,2,0,0,2,0,1,2,0,0,1,2,0,1,2,0,2,2,0,2,1,1,0,0,0,2,2,2,2,2,1,2,1,1,1,0,0,1,2,2,0,0,2,1,0,2,2,0,2,1,2,0,0,1,1,2,2,1,1,0,1,0,1,2,1,0,1,0,0,2,2,0,2,2,2,1,0,1,2,1,2,1,2,0,1,0,0,0,0,1,1,2,2,1,1,0,0,2,2,1,1,1,1,0,0,2,1,1,2,0,0,2,1,2,1,2,2,0,1,2,1,2,1,1,0,2,1,2,2,0,1,2,2,1,2,0,2,0,2,0,1,2,0,2,2,2,2,1,2,1,2,0,0,1,0,1,1,1,1,1,0,2,2,2,2,0,1,1,1,2,0,2,1,2,2,0,2,0,2,1,0,1,0,0,2,2,1,1,0,1,1,0,2,2,2,1,0,2,0,2,1,2,2,1,2,1,2,2,0,1,1,2,0,2,1,1,2,2,1,1,1,0,0,0,0,2,1,2,1,0,0,2,0,0,2,1,1,0,1,2,1,0,0,2,2,1,1,1,0,0,1,1,0,2,0,1,2,0,0,1,1,1,0,0,0,2,2,2,1,0,0,0,1,1,0,0,2,1,1,0,2,2,2,0,0,1,2,1,0,2,2,0,2,0,0,1,0,1,1,2,0,1,0,2,1,1,0,2,1,1,0,0,2,2,1,0,0,1,1,1,2,0,2,1,1,2,2,1,1,1,2,2,2,2,2,1,1,0,0,0,0,0,0,2,2,1,1,0,0,1,1,2,2,2,0,1,2,1,2,0,2,2,2,2,0,0,2,1,2,1,1,1,0,2,2,0,2,0,1,2,1,2,2,0,2,2,1,1,2,2,2,0,2,2,1,0,0,0,2,2,0,2,1,0,2,0,1,0,2,1,0,0,2,2,2,0,0,1,1,1,0,0,1,1,2,0,2,1,0,2,0,2,2,0,1,0,1,1,1,1,2,0,2,1,0,1,1,0,0,2,0,2,1,0,2,1,1,0,1,2,1,2,1,1,1,1,0,1,2,0,0,1,2,0,0,1,1,2,1,0,0,1,0,0,0,0,1,2,0,1,0,0,2,0,2,2,2,0,0,1,0,1,1,0,2,0,0,2,2,0,0,1,1,2,0,0,2,1,1,2,0,2,1,2,2,2,2,2,2,1,2,1,1,2,0,1,0,1,0,1,0,2,0,2,0,2,2,2,2,2,1,1,2,1,1,2,0,1,2,1,2,1,2,2,1,1,1,2,0,2,2,2,0,0,2,1,1,2,1,2,0,1,1,2,2,2,0,2,0,2,2,2,2,0,2,2,2,0,0,0,2,0,0,0,2,2,0,1,1,1,0,2,2,2,1,2,1,2,1,2,2,1,1,0,1,2,0,1,0,2,1,0,0,1,1,0,1,2,2,1,1,2,1,0,0,0,1,1,0,2,1,0,1,0,2,1,1,0,1,1,2,2,1,0,2,1,1,0,0,1,1,0,1,2}
Returns: 0
964
896
528
{0,2,2,0,0,2,0,1,2,1,0,2,2,0,1,1,1,2,0,0,0,2,2,0,1,0,2,1,2,1,0,2,0,1,1,1,1,1,0,0,1,2,2,0,0,2,1,0,0,0,1,2,1,2,1,1,1,2,0,2,0,2,0,0,0,1,0,2,0,2,1,0,1,2,2,2,0,2,2,2,0,1,0,0,1,1,2,2,1,1,2,1,1,1,2,2,2,0,2,0,0,1,0,1,0,2,1,1,2,0,2,2,1,2,0,2,1,1,1,0,0,2,0,0,2,2,0,2,2,1,1,1,2,0,0,2,2,2,2,0,1,1,1,0,2,2,2,2,2,1,2,2,1,2,0,0,2,2,2,0,2,2,2,0,1,1,1,2,2,2,1,0,0,2,2,0,2,0,1,0,2,1,2,2,1,1,1,1,1,0,1,1,2,1,0,2,2,2,2,2,2,0,2,0,0,1,1,1,1,2,1,0,1,0,2,1,2,2,2,1,1,1,1,2,1,1,0,1,0,2,1,1,1,0,0,2,0,2,1,0,1,2,2,0,0,2,1,2,2,0,1,1,2,2,0,1,0,0,2,1,0,1,0,0,2,2,1,2,0,1,0,2,0,0,1,2,0,2,1,0,2,1,2,1,2,1,0,1,0,1,1,0,2,2,2,2,2,0,0,1,1,1,2,2,1,1,2,0,2,0,2,2,2,1,2,2,1,0,2,0,1,0,1,1,0,1,1,0,0,1,2,1,1,0,2,0,0,2,1,2,0,1,1,0,0,2,0,1,2,1,1,2,1,1,0,0,0,0,1,1,2,2,1,2,2,0,2,1,0,2,2,2,0,2,0,2,2,0,1,2,0,0,0,1,0,2,0,0,2,0,2,2,0,0,1,2,0,2,2,1,1,1,2,2,1,1,0,0,2,2,1,0,2,1,0,0,1,1,2,0,1,0,2,0,2,0,2,2,2,0,0,1,2,0,0,0,1,1,0,2,1,0,1,1,0,2,1,2,0,0,1,2,2,2,2,0,0,2,2,0,1,1,0,1,2,1,2,2,1,2,0,2,2,1,2,0,1,1,1,0,0,1,1,0,1,0,0,1,2,2,0,0,0,2,1,0,0,2,2,2,2,0,2,2,2,1,2,2,1,1,2,1,1,1,1,2,0,1,0,2,0,2,0,0,0,0,0,0,2,0,0,0,1,1,2,1,0,0,1,2,1,1,0,0,1,1,0,2,2,1,2,2,0,2,1,0,1,0,2,0,2,1,0,1,1,1,0,2,2,1,0,1,0,2,2,0,2,0,2,0,0,0,0,2,0,1,0,2,1,2,2,0,0,0,1,2,0,2,0,2,0,0,2,2,2,2,2,2,2,1,1,2,0,2,1,2,1,1,0,1,1,2,2,1,1,2,1,1,0,1,2,0,1,2,1,0,1,0,2,2,0,2,2,2,0,2,1,1,1,0,0,2,1,1,1,2,2,2,1,0,2,2,2,2,2,0,0,0,0,0,0,2,2,1,0,2,2,0,0,1,2,2,2,2,1,0,1,2,2,0,2,1,2,1,1,0,0,2,0,2,1,2,2,0,0,1,2,2,1,0,0,1,0,2,1,1,2,0,2,0,1,1,0,1,0,2,1,2,0,1,0,0,1,0,2,0,0,0,0,0,2,2,0,1,1,1,0,0,0,0,2,0,2,1,0,0,0,1,1,0,1,0,1,0,0,2,1,2,1,0,1,1,1,1,2,2,0,0,0,2,0,0,1,1,2,0,2,1,0,1,1,0,2,0,0,2,1,2,1,0,2,1,0,2,0,2,0,0,2,1,1,1,2,2,2,1,2,1,2,1,0,1,1,2,0,2,0,2,1,2,0,0,0,1,2,2,2,2,2,2,1,1,0,0,2,0,1,1,2,2,0,2,2,1,2,0,1,1,2,2,1,0,1,1,2,1,0,0,2,2,0,0,0,2,1,0,2,2,2,1,2,1,0,1,1,2,0,0,1,1,0,2,2,1,0,2,2,0,0,1,1,2,2,2,2,2,2,0,1,0,0,0,1,2,0,2,2,2,0,2,0,0,0,2,0,2,0,0,1,0,2,0,0,2,1,2,0,1,1,1,2,2,1,2,2,0,2,1,2,0,1,0,1,2,0,1,0,0,2,2,1,2,1,1,1,0,2,2,2,2,2,1,0,0,2,2,0,2,1,2,0,2,2,2,2,2,1,0,0,1,2,2,2,1,0,2,2}
Returns: 0
835
886
317
{2,2,0,1,1,2,0,0,2,2,0,1,2,1,0,0,2,0,2,0,2,0,0,2,2,0,0,1,1,0,0,0,2,1,2,2,1,2,0,0,1,0,0,1,0,1,2,2,1,1,2,2,1,2,2,2,1,1,2,2,1,1,1,1,0,2,0,0,1,1,2,2,2,0,1,0,1,0,0,0,1,0,2,0,1,2,2,2,2,0,1,2,2,1,2,1,1,0,0,2,1,2,1,1,2,1,1,0,2,2,1,0,2,0,2,1,2,2,1,2,1,0,0,1,2,2,0,2,0,2,0,2,2,0,1,0,0,0,2,2,2,0,0,0,1,0,0,0,1,2,1,2,1,1,1,1,0,1,0,2,0,0,2,1,2,2,2,1,0,1,0,2,2,0,2,1,1,1,1,0,2,2,2,1,1,0,1,2,0,0,1,2,1,1,0,0,2,1,0,2,0,1,2,2,2,2,0,1,2,2,2,1,2,2,2,1,0,1,0,0,1,0,0,0,1,2,2,1,1,0,2,2,2,0,0,0,1,1,2,0,0,2,1,2,2,0,0,1,1,0,0,1,2,1,1,0,0,2,2,1,2,0,0,1,0,2,2,1,1,2,1,0,0,1,2,2,2,2,0,1,2,1,2,0,2,2,2,2,2,2,1,2,0,2,2,1,0,2,0,0,0,0,1,2,2,2,0,1,1,2,0,0,1,2,0,0,0,2,0,1,0,2,1,2,2,1,0,2,1,1,0,2,2,2,2,2,1,0,1,0,2,2,2,0,2,1,1,1,2,2,1,2,1,0,2,2,2,2,1,1,1,1,0,1,2,1,2,2,0,2,2,0,1,1,0,0,2,2,2,2,2,1,0,0,0,0,2,1,2,0,2,1,0,0,2,2,1,1,1,2,2,0,1,2,2,2,0,2,2,2,0,2,2,1,0,2,1,0,2,1,1,0,2,2,1,2,1,2,2,0,1,0,1,0,0,1,0,1,1,1,2,1,1,2,1,1,2,2,2,2,1,2,0,2,2,0,2,0,0,2,2,0,1,1,1,0,1,1,1,0,2,1,1,0,2,2,0,1,2,2,0,0,0,2,2,0,2,0,2,1,2,2,1,2,2,2,0,2,0,1,0,2,1,2,0,0,1,1,2,2,2,1,0,0,1,2,2,0,0,2,1,2,1,2,2,1,1,2,1,1,1,2,1,0,0,2,1,0,0,0,0,2,2,1,0,0,1,2,1,2,0,1,0,1,0,1,1,2,1,1,0,0,2,2,0,0,2,0,1,2,1,1,2,0,1,0,2,0,0,0,0,1,2,0,1,2,2,1,0,1,1,0,0,2,2,1,2,0,1,2,2,0,2,2,1,1,1,0,0,2,1,0,2,2,1,2,1,1,2,1,1,0,1,1,1,0,0,2,0,2,2,0,1,0,0,1,0,2,2,2,2,0,2,1,1,2,1,1,0,2,2,1,2,0,0,2,0,0,0,0,0,1,2,0,0,0,2,2,0,0,1,1,1,1,0,2,0,1,1,1,2,1,0,2,1,0,2,0,1,0,0,0,1,1,1,2,2,1,0,1,2,0,1,1,0,0,2,0,1,0,2,0,0,1,2,0,0,1,1,2,2,1,2,2,0,0,1,2,0,2,1,0,0,2,0,1,1,2,2,1,0,1,2,2,0,1,2,0,1,0,0,2,0,0,0,1,2,2,2,0,0,1,0,1,1,1,2,1,0,1,2,0,0,2,0,1,0,2,1,1,1,1,0,0,2,0,0,2,1,2,1,0,2,0,1,0,2,2,1,2,2,1,2,2,0,0,1,2,2,0,1,2,1,2,1,1,1,2,0,2,2,2,1,1,2,0,0,2,1,2,0,0,1,0,2,0,2,1,2,2,2,1,0,1,2,1,0,0,2,0,0,2,2,2,2,0,0,2,2,0,0,1,2,1,0,2,1,2,2,0,0,1,2,2,0,0,1,2,1,1,1,1,1,1,0,2,1,1,2,2,1,1,0,1,2,0,0,2,2,0,0,2,2,1,1,1,1,0,0,1,1,0,2,0,2,2,1,0,2,0,0,2,1,2,1,0,1,2,2,1,2,2,0,1,2,1,0,2,0,2,0,1,0,2,2,1,0,1,0,2,0,2,2,2,0,1,1,0,0,1,1,1,1,0,1,1,1,0,0,2,2,1,0,2,2,0,0,2,0,0,1,1,1,2,1,0,2,0,2,0,2,1,0,1,0,0}
Returns: 0
254
554
201
{0,1,0,1,2,0,2,0,0,1,0,2,0,0,1,0,0,2,1,0,0,2,0,0,2,1,2,1,1,0,1,2,0,1,2,1,2,0,2,1,1,2,0,0,2,1,2,2,1,1,2,2,1,2,2,1,1,1,0,1,1,2,2,0,2,1,0,0,2,1,1,2,0,0,0,0,2,2,2,1,1,1,2,2,0,1,2,0,2,1,2,2,0,0,2,2,2,1,2,1,0,2,2,2,1,1,2,0,1,1,1,2,2,0,2,2,0,0,1,0,0,1,1,0,2,1,2,2,0,0,2,2,2,2,2,2,2,2,2,2,0,0,2,0,2,1,0,0,0,1,0,2,1,0,2,0,0,0,0,2,1,1,1,2,2,1,1,1,0,1,0,2,0,1,0,0,0,1,2,1,1,1,0,0,1,2,1,0,2,2,2,2,0,2,1,1,2,1,2,2,2,2,2,2,0,1,2,2,1,0,1,1,0,2,1,1,2,1,0,1,0,1,2,2,0,0,1,1,2,0,2,2,2,2,1,2,2,2,0,1,0,2,1,2,0,2,1,1,0,0,1,2,0,2,0,2,1,2,1,0,2,0,0,0,1,1,0,1,0,1,0,0,0,0,1,0,0,2,1,2,1,2,0,2,0,0,2,2,2,2,0,1,2,1,2,0,0,0,0,0,0,1,2,1,0,2,2,2,0,0,2,2,2,2,2,2,0,1,1,2,2,0,2,0,1,0,1,0,1,0,0,0,0,0,1,1,0,1,2,0,0,2,2,1,0,2,1,0,1,2,0,2,1,2,0,2,1,0,1,1,0,2,2,2,1,2,2,2,2,1,1,2,2,2,1,0,2,1,1,1,1,0,0,0,0,1,1,2,0,2,1,0,2,0,1,2,0,2,1,0,0,1,2,2,1,0,1,0,0,1,0,2,0,0,1,2,1,0,0,0,0,2,2,0,0,1,0,0,2,2,2,2,0,1,0,0,1,1,1,0,1,0,1,1,1,0,2,2,2,1,2,1,2,0,0,2,2,2,2,1,0,2,1,1,2,1,0,2,0,0,1,0,0,0,0,1,1,1,2,0,2,2,2,0,1,0,2,0,1,2,1,1,0,2,1,1,0,1,0,2,0,2,0,1,1,2,2,0,1,0,1,2,1,1,0,0,1,2,0,2,1,2,1,2,1,2,1,0,2,0,0,1,0,1,1,0,0,1,0,2,0,0,0,0,0,0,2,2,2,0,2,1,0,1,2,1,2,2,2,0,1,0,2,0,1,0,1,2,2,1,2,0,0,2,0,1,0,2,1,1,1,0,2,1,1,1,2,1,2,2,1,0,1,2,0,1,2,2,0,1,2,0,2,0,1,0,0,1,0,2,0,1,2,2,1,2,0,0,2,1,1,1,0,2,0,1,2,2,2,1,0,2,2,2,0,1,1,0,1,0,2,1,2,0,2,0,1,1,0,1,2,0,1,2,1,2,0,2,2,2,2,2,0,1,0,2,1,0,2,2,1,2,1,2,1,0,0,0,1,1,2,0,2,0,2,1,0,2,0,1,0,1,0,0,0,1,0,2,2,1,2,0,0,2,2,1,2,2,2,0,1,1,2,1,1,1,2,1,1,2,0,2,2,0,0,2,0,1,0,0,1,2,1,1,1,1,2,0,0,2,2,2,1,1,0,2,0,0,1,2,1,2,0,0,2,1,0,2,2,0,0,1,0,0,2,2,1,0,2,0,0,0,0,2,1,0,2,2,0,2,2,2,2,0,1,0,2,2,0,1,0,1,1,2,2,1,0,0,2,1,0,2,2,1,0,2,0,0,1,0,0,0,0,0,1,2,0,1,2,2,0,2,1,1,2,2,2,1,1,2,2,2,2,1,1,0,0,0,0,1,2,0,2,2,2,0,2,0,2,0,1,0,0,1,0,2,1,1,1,0,0,2,1,2,1,0,2,0,0,1,1,2,2,2,1,1,2,2,1,2,0,2,2,2,1,2,2,1,2,2,2,1,0,0,0,1,0,0,0,1,1,0,1,2,1,2,2,0,0,1,2,2,2,1,1,1,2,2,0,1,1,0,0,1,2,2,0,0,0,1,2,0,1,2,0,0,2,2,2,0,0,0,2,2,0,0,1,1,1,1,0,2,1,2,0,2,0,1,2,1,0,1,1,2,2,2,2,1,0,0,1,2,0,0,1,2,1,1,1,2,0,2,2,1,0,1,2,0,1,0,1,1,2,0,2,2,0,2,0}
Returns: 0
981
700
828
{2,0,2,1,2,1,1,1,1,1,0,2,2,2,2,1,0,2,2,2,0,1,1,1,2,1,1,2,0,2,2,2,0,0,2,1,0,1,1,1,1,1,0,1,2,2,0,2,0,2,2,1,2,1,2,0,2,1,0,2,1,2,0,2,0,1,1,1,0,2,2,2,0,1,0,1,1,0,2,2,0,2,1,0,2,0,2,0,0,0,0,2,1,1,0,0,1,2,2,0,0,0,2,2,1,0,2,1,2,1,1,2,1,2,2,2,1,1,0,0,2,1,0,0,0,2,2,2,0,2,0,0,2,1,2,2,0,0,2,1,1,1,1,1,1,1,0,1,2,1,2,2,2,2,0,0,1,1,0,2,0,1,2,0,0,2,0,0,1,2,0,2,2,2,0,0,0,0,1,1,0,0,0,2,0,1,0,1,2,1,0,2,1,0,0,2,2,1,2,1,0,1,2,0,1,0,1,1,0,1,1,1,0,2,2,1,2,1,2,2,1,0,2,1,1,1,2,0,0,1,1,2,1,1,1,1,2,1,2,0,0,1,0,1,0,2,0,1,1,1,1,0,1,1,2,2,1,1,2,1,2,0,1,0,2,2,1,2,2,1,2,2,2,2,2,2,2,1,2,0,0,0,1,0,0,0,0,2,2,0,2,2,0,2,1,2,1,0,2,1,1,0,0,0,0,1,2,1,1,2,2,2,1,2,0,1,1,1,2,1,1,2,2,2,1,0,2,0,0,1,2,0,1,2,0,2,0,0,2,1,1,1,0,0,0,1,1,0,1,2,2,1,1,2,2,2,2,1,2,0,2,0,2,2,2,0,1,1,1,2,2,1,1,1,0,0,1,0,0,0,2,2,2,1,0,2,2,2,1,2,1,1,0,0,0,1,1,2,1,2,0,2,0,2,0,2,0,0,0,1,2,1,1,2,2,2,1,1,0,0,0,2,2,1,0,2,1,1,2,1,2,0,2,1,2,1,0,1,1,1,0,2,1,2,1,1,0,0,1,2,1,2,1,1,1,1,2,2,0,1,1,1,1,2,0,2,1,2,0,2,1,2,2,0,2,0,0,1,0,2,0,2,0,1,1,2,2,0,1,2,1,2,2,2,0,0,1,0,0,0,1,1,0,2,1,2,2,2,0,1,1,2,2,1,1,2,1,2,0,2,1,2,1,2,2,0,1,0,0,1,2,1,0,0,1,1,2,2,2,2,1,1,0,2,1,1,2,2,0,2,2,0,0,0,1,1,0,0,1,2,1,1,2,2,2,1,2,1,0,0,1,2,1,2,1,0,1,2,2,1,2,0,0,0,1,0,1,2,1,0,2,2,2,0,1,2,2,0,1,0,1,0,2,2,1,2,0,0,1,0,2,1,2,0,1,1,0,2,1,2,1,1,2,1,1,1,0,0,2,0,1,1,0,1,1,1,1,2,1,2,1,1,1,0,1,2,1,1,2,0,2,0,1,1,2,1,0,0,2,1,2,1,0,0,0,0,0,0,2,1,1,2,1,1,2,0,1,1,0,2,1,0,0,0,1,1,2,0,2,0,0,2,2,2,0,1,2,0,0,0,0,1,2,1,0,1,0,1,2,1,0,2,0,1,1,2,0,2,1,0,2,1,2,1,2,0,2,1,1,1,0,1,0,1,0,2,2,1,1,1,2,0,1,2,1,2,1,1,0,1,0,0,1,2,2,0,1,1,2,1,2,2,0,1,1,0,0,1,2,0,0,2,0,2,1,0,2,1,2,0,2,2,0,1,1,2,2,2,2,0,2,2,2,0,1,1,2,1,1,0,2,0,1,1,2,0,1,0,1,1,0,0,2,2,1,2,1,2,0,1,2,1,1,1,2,0,1,1,2,1,2,1,0,0,2,2,0,2,0,0,0,1,0,2,1,2,0,0,0,1,0,0,0,1,2,1,1,2,1,2,0,1,2,1,1,0,2,2,1,1,0,0,0,0,0,1,0,1,1,0,0,1,1,0,2,1,2,2,1,1,0,1,2,0,2,1,2,0,0,2,2,2,0,2,0,0,0,2,1,1,2,2,1,2,2,2,0,1,1,2,2,1,1,2,2,1,2,0,0,1,2,2,1,0,0,1,0,2,0,0,2,0,0,2,0,0,0,1,1,2,1,0,0,2,2,2,2,2,2,2,1,0,0,1,2,2,0,2,1,1,2,2,1,0,1,0,0,2,0,2,0,1,2,1,1,2,0,1,0,1,0,1,0,1,0,2,2,2}
Returns: 0
859
639
718
{2,2,0,1,0,1,1,2,0,0,1,1,2,2,0,0,1,1,2,1,1,0,0,1,2,0,1,2,0,1,0,2,2,1,1,2,1,0,2,2,2,2,2,0,1,2,2,1,0,0,0,0,1,0,0,0,0,0,2,0,1,2,1,0,2,0,0,2,1,0,2,1,2,2,2,0,1,1,0,0,0,2,2,0,1,2,2,0,1,2,1,1,2,0,2,1,2,1,2,1,2,2,2,0,0,1,0,1,0,2,0,0,1,0,0,1,2,1,2,2,0,0,1,1,1,2,0,0,0,2,0,1,2,1,1,1,0,0,2,2,2,1,0,1,0,0,2,2,0,0,2,0,1,0,1,0,0,1,0,1,2,0,0,0,1,0,2,2,0,2,0,0,0,0,1,2,1,2,1,1,1,2,2,1,0,2,2,1,2,0,2,0,0,0,2,0,1,0,0,2,1,1,1,2,0,1,0,2,2,0,2,0,1,1,0,0,2,2,1,0,1,1,0,2,1,0,0,2,1,2,0,0,1,1,2,1,0,0,0,0,1,2,1,1,2,1,0,0,1,2,0,0,2,1,0,1,2,2,0,2,1,2,0,2,0,0,2,1,0,0,0,0,0,0,0,1,2,2,2,0,0,2,1,2,2,0,1,0,1,1,0,0,2,1,2,1,0,2,1,0,1,2,1,0,0,0,1,2,0,2,1,1,2,1,0,0,1,0,2,0,0,2,0,0,2,0,2,0,0,0,1,2,0,0,0,0,2,1,1,2,0,1,2,2,2,2,1,2,1,0,1,2,2,0,0,2,0,2,0,2,2,2,0,0,1,0,0,2,0,0,0,2,2,0,2,2,2,0,0,1,1,0,0,1,2,2,2,0,1,0,1,0,1,2,0,2,1,1,0,0,1,1,2,1,0,1,0,2,0,1,0,1,2,1,1,2,2,0,0,0,1,0,2,1,1,0,0,0,1,2,1,1,0,2,2,1,2,1,0,1,0,1,0,1,2,2,0,0,1,0,0,0,0,2,2,0,1,2,2,2,0,1,1,2,2,2,0,2,0,0,2,1,2,2,0,2,1,1,1,1,1,2,1,1,0,0,0,0,1,0,1,0,0,2,2,2,0,0,1,1,1,2,1,1,1,1,0,1,0,2,0,2,2,2,0,2,1,2,2,1,0,2,0,0,0,0,1,0,1,0,1,2,2,2,1,0,1,2,2,2,0,1,2,2,1,1,0,2,0,1,0,1,0,2,0,1,0,1,1,1,0,1,1,0,0,1,2,0,1,1,0,1,0,0,2,1,2,2,1,2,0,0,0,2,1,2,0,1,0,1,1,1,2,0,1,2,1,1,2,1,1,1,2,0,2,2,2,0,1,1,0,2,2,1,1,2,0,0,2,1,2,0,2,0,0,2,0,2,2,2,2,0,2,1,2,2,2,0,1,0,1,2,2,2,2,1,2,0,0,2,2,1,1,1,2,2,0,2,0,2,1,2,0,1,1,2,0,1,1,0,0,1,1,0,2,2,0,1,2,1,0,2,1,2,2,0,0,2,0,1,0,0,0,0,2,1,0,0,2,1,2,2,2,0,0,1,0,2,0,2,2,0,2,1,2,2,0,0,0,2,1,2,2,0,2,2,0,1,2,0,2,1,2,2,0,2,2,0,2,2,2,2,1,2,1,2,1,0,2,1,0,2,2,2,2,0,0,2,1,0,1,0,0,0,0,2,2,2,1,2,1,2,0,1,2,0,1,0,1,1,1,0,1,2,2,1,2,0,0,0,0,0,2,1,2,0,2,2,1,2,1,0,1,2,0,0,0,1,0,1,0,2,2,1,0,2,0,2,2,2,2,0,0,2,1,1,0,0,0,1,1,0,1,0,2,0,1,0,1,0,1,1,1,1,1,2,2,0,1,0,2,2,1,0,2,0,0,0,2,1,2,1,1,1,2,0,2,1,2,2,0,2,2,0,2,1,0,2,2,1,2,1,1,0,0,2,1,2,2,1,1,1,2,2,2,2,0,2,0,0,1,0,1,0,0,2,1,0,0,1,1,2,1,2,1,0,2,2,2,1,0,0,2,2,0,1,2,0,0,0,2,0,1,2,1,2,1,0,0,0,2,0,1,1,1,1,2,1,0,0,2,1,2,2,1,1,1,1,2,0,0,2,0,1,1,1,2,0,1,0,1,0,1,0,2,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,1,2,0,2,0,2}
Returns: 0
629
371
245
{2,0,2,0,1,1,0,0,1,2,0,2,0,2,0,2,1,1,1,0,2,2,1,1,1,2,2,2,2,2,0,2,2,0,2,0,0,1,2,2,0,2,0,2,0,1,2,2,0,1,2,2,1,1,2,2,1,0,1,1,1,1,1,2,1,2,0,2,2,2,2,2,0,2,2,1,1,1,1,1,2,0,0,0,1,1,2,0,0,1,1,2,1,0,0,0,2,1,1,0,0,0,1,2,2,2,2,2,2,1,1,1,2,2,1,0,0,1,0,0,2,2,1,2,1,0,1,0,2,2,2,0,1,0,0,0,0,2,0,1,1,0,1,1,0,0,0,0,1,2,1,2,2,2,2,0,1,2,2,0,1,2,2,0,0,1,1,1,2,2,2,0,0,1,2,0,0,1,0,0,2,1,1,1,0,1,0,1,0,0,0,0,1,2,2,2,2,1,1,2,1,1,0,2,2,0,0,2,0,0,1,0,0,2,1,1,2,0,1,0,2,1,2,0,2,1,2,0,2,2,2,0,0,2,0,2,0,0,0,2,2,2,2,1,0,0,1,2,1,0,0,2,1,0,1,0,1,0,2,0,0,0,1,0,1,2,0,1,2,0,0,1,2,1,2,0,0,2,0,2,1,0,0,1,0,2,0,0,0,1,2,1,1,0,0,0,2,2,1,0,0,0,1,0,0,0,2,2,2,0,2,0,1,1,0,0,0,1,1,2,1,0,2,0,1,0,0,0,2,2,2,1,2,0,1,0,1,0,0,2,0,0,1,0,1,2,1,2,2,2,0,0,2,1,1,0,0,2,0,1,1,2,1,0,1,1,1,1,0,1,1,0,2,0,1,0,0,2,1,0,2,2,1,2,0,1,0,0,2,0,0,1,1,2,2,2,2,1,0,0,2,0,0,2,0,1,2,1,1,1,2,1,2,1,1,0,2,0,0,1,2,0,2,2,1,2,1,0,2,0,1,0,2,2,0,1,0,2,0,0,2,2,0,2,1,1,1,1,1,0,0,2,2,0,2,1,2,0,1,1,2,2,2,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,2,2,2,1,1,1,2,0,0,2,0,0,1,1,0,0,2,0,0,0,1,0,2,1,2,0,0,2,2,1,2,1,2,0,2,1,2,0,0,1,1,1,1,2,2,2,2,2,1,2,1,0,1,2,0,1,2,1,0,1,2,2,2,2,1,0,1,0,1,2,2,2,2,1,1,2,0,2,1,0,2,1,1,1,0,2,0,0,0,0,1,1,1,1,0,0,1,2,1,2,2,2,1,2,0,1,0,2,0,2,1,1,0,0,0,2,0,0,2,1,2,2,1,0,0,2,1,2,2,0,1,0,0,2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,2,2,1,2,1,2,0,1,1,2,1,0,0,0,1,2,0,2,0,1,1,1,1,0,0,2,1,0,0,2,0,1,0,1,2,1,2,2,2,2,1,2,0,1,0,0,0,2,1,2,1,0,1,2,0,2,2,0,2,0,2,1,1,1,1,2,0,0,0,0,2,0,0,1,0,0,2,2,0,0,2,0,1,2,0,0,2,2,0,0,0,0,1,1,0,2,2,2,2,2,2,0,0,2,2,2,2,0,0,0,2,0,2,0,1,0,2,0,1,2,0,0,1,1,0,0,1,2,2,0,2,2,2,2,2,1,0,0,1,1,1,0,1,0,0,1,0,0,2,2,2,2,2,2,2,0,1,2,0,0,2,2,2,1,1,2,0,2,1,2,1,0,1,0,2,2,0,2,1,0,1,1,2,1,0,2,1,1,1,2,2,0,2,0,0,1,0,1,1,2,0,2,1,2,2,2,1,0,1,0,0,1,2,1,0,0,0,2,1,2,1,1,2,0,2,1,0,1,2,2,2,0,2,0,0,0,0,0,0,0,2,2,1,0,0,1,1,0,0,1,0,0,1,1,0,2,1,0,1,2,0,1,0,0,2,2,1,1,0,1,0,2,0,2,0,0,1,1,2,0,1,1,1,0,2,1,0,2,0,1,2,2,0,2,1,2,1,2,2,2,2,2,1,2,2,1,0,2,1,1,2,2,0,0,1,1,1,0,2,0,2,2,1,2,2,0,2,0,2,1,1,1,0,1,1,2,1,2,0,0,2,2,2,2,1,1,2,0,0,1,1,2,2,0,2,1,1,0,1,1,1,0,0,1}
Returns: 0
686
52
817
{1,2,0,2,2,2,1,1,0,1,1,2,0,2,2,1,0,2,2,1,1,1,1,1,2,0,0,0,0,0,1,2,2,0,2,0,2,1,2,0,0,2,0,2,1,0,1,0,2,2,2,0,2,2,0,2,2,2,0,0,1,1,2,2,0,0,0,2,1,2,2,2,2,0,2,2,1,1,1,1,0,0,1,1,0,2,1,0,0,1,1,1,0,2,2,1,2,2,0,1,2,2,0,0,2,0,1,2,0,0,0,0,2,0,0,0,1,0,1,2,1,1,1,1,1,1,0,2,2,0,2,0,2,1,0,0,2,2,0,0,2,0,1,0,0,1,1,0,0,2,0,2,1,2,1,0,0,1,0,0,0,1,0,2,0,0,0,1,0,2,1,2,1,0,0,2,1,2,1,1,0,1,2,0,0,0,0,1,2,0,2,0,0,1,1,1,2,1,2,0,1,0,0,2,1,0,2,0,1,1,0,2,2,1,0,2,0,0,2,0,0,0,0,0,0,2,0,0,1,0,0,1,1,1,0,0,2,0,0,1,0,1,0,2,0,2,1,0,0,2,1,0,1,0,2,0,1,2,2,2,0,0,1,2,0,0,1,2,2,1,1,2,1,1,1,0,2,1,0,2,0,1,1,2,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,0,0,2,1,0,2,2,0,1,2,0,0,0,1,2,0,1,2,2,1,0,2,1,0,0,2,1,2,2,0,0,1,0,2,2,2,2,2,2,0,1,0,2,1,1,1,0,1,2,0,2,1,0,0,1,0,0,0,2,2,0,1,1,2,2,2,2,2,2,0,1,0,2,2,0,2,1,0,2,2,0,2,0,1,2,2,2,0,1,1,1,2,2,0,2,2,1,2,0,1,1,0,0,1,1,2,1,2,0,1,2,1,1,1,0,1,2,1,2,1,1,1,2,1,2,0,2,2,1,0,1,2,2,0,2,0,1,2,2,0,2,0,2,2,0,0,0,0,1,1,1,1,0,2,0,2,0,2,1,2,0,2,2,1,1,1,0,0,2,1,1,1,0,1,0,2,0,0,1,1,1,2,1,2,1,2,0,0,1,0,0,0,0,0,1,2,2,1,1,2,1,1,1,2,2,0,1,2,2,2,1,1,0,0,2,0,2,0,0,2,0,0,1,0,2,0,2,1,1,1,1,2,1,0,0,2,2,2,2,1,1,2,2,2,1,1,0,1,1,0,0,1,0,0,1,2,0,0,0,0,0,0,0,0,0,2,0,1,0,2,2,2,1,0,0,2,2,0,1,0,1,0,1,0,1,1,0,2,0,0,1,1,0,1,1,0,0,0,0,2,0,1,1,0,2,0,1,1,0,2,0,0,1,1,2,1,0,0,0,0,1,0,0,0,1,1,2,0,1,1,0,0,2,0,1,2,0,1,1,1,1,0,2,1,1,2,2,1,0,0,1,2,1,0,1,0,1,0,2,2,2,1,0,0,0,0,0,1,1,1,0,2,1,0,1,2,1,0,1,0,2,2,1,2,2,0,1,2,2,0,0,1,2,0,0,2,2,0,1,0,1,1,0,2,2,1,1,0,0,2,1,0,1,0,1,1,2,1,0,0,1,1,1,2,1,1,1,2,2,1,2,2,2,0,0,1,0,2,0,2,1,1,1,2,0,1,1,1,1,1,2,0,1,1,1,1,0,2,0,2,1,1,1,0,2,0,1,0,0,0,2,2,2,0,2,2,0,2,0,1,2,0,0,2,0,1,0,2,2,2,0,1,0,1,2,1,1,0,2,2,1,1,0,1,2,2,0,1,1,2,1,0,1,2,1,0,0,1,0,2,0,1,1,1,0,2,1,0,0,0,2,0,0,1,1,1,0,2,1,0,2,1,2,1,0,0,2,1,1,2,2,0,1,0,1,0,0,2,2,0,0,1,0,0,0,1,2,2,2,2,1,0,0,2,2,2,1,1,1,2,2,0,1,1,1,2,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,1,0,1,0,0,2,0,1,0,1,2,0,1,1,0,0,0,1,1,1,2,2,0,1,1,0,0,0,1,1,0,0,0,2,1,2,2,2,2,0,1,1,1,1,2,2,1,2,1,1,0,0,1,1,0,1,1,0,0,2,1,0,1,1,1,2,0,2,1,0,2,1,1,1,1,0,0,1,1,1,2,0,1,0,2,2,0,2,2,1,2,1,1,1}
Returns: 0
625
921
635
{0,0,2,1,2,0,2,2,0,2,0,2,1,1,1,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0,1,1,1,1,1,1,2,0,1,2,0,2,1,0,0,2,0,1,0,1,0,1,2,2,0,2,0,1,2,0,2,1,0,2,0,0,0,1,0,0,1,2,0,0,1,2,2,2,0,0,1,0,0,2,1,1,1,1,0,2,2,2,0,1,1,1,1,2,2,2,0,1,1,2,1,1,1,2,1,2,0,2,2,0,1,2,1,2,1,0,2,1,1,1,1,0,2,1,1,1,0,1,2,0,2,0,2,2,2,2,2,2,0,0,2,2,1,1,0,2,0,1,0,2,0,2,1,1,0,1,1,0,2,1,0,2,1,1,2,0,2,1,1,2,2,0,0,2,2,2,2,2,2,0,0,2,1,2,2,1,0,1,2,0,1,2,1,1,0,1,2,0,0,2,2,0,2,2,1,2,0,2,2,0,2,1,2,0,2,2,1,2,2,1,1,2,0,0,1,2,0,1,2,0,1,2,0,0,1,1,1,1,0,1,2,0,1,0,1,2,0,0,0,1,0,2,2,0,0,0,0,1,0,0,1,2,1,1,2,1,1,2,0,0,1,1,0,0,1,0,2,1,2,0,2,0,0,2,0,1,0,2,0,1,0,1,1,1,0,1,1,1,1,1,2,2,0,2,1,2,2,1,0,0,2,1,0,1,1,0,1,0,2,1,2,2,1,2,0,1,2,2,1,1,1,2,0,2,2,1,2,0,0,1,2,1,2,0,2,2,0,1,0,2,0,2,2,1,1,2,1,1,0,1,0,1,0,2,1,2,1,0,0,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,2,2,2,1,2,1,0,0,0,1,0,2,0,1,0,2,2,0,1,1,1,2,1,1,0,1,0,1,2,2,2,0,2,0,2,1,1,0,0,0,0,0,1,0,0,1,1,0,1,0,2,0,2,2,1,2,1,2,0,2,1,1,0,1,0,2,1,0,1,0,0,1,2,1,2,0,1,1,0,0,0,0,2,0,0,1,0,0,2,0,2,2,1,1,2,2,2,2,2,2,2,0,0,0,1,1,2,2,2,1,0,0,1,0,2,2,0,1,0,2,2,1,0,1,0,0,1,2,2,2,1,0,2,0,1,2,0,2,1,0,1,0,1,0,1,0,1,0,0,1,2,0,1,2,2,2,1,2,0,1,0,0,1,2,1,0,0,1,0,1,0,1,2,0,1,1,0,1,2,1,1,1,2,2,0,2,2,2,1,0,0,1,2,1,0,1,1,1,1,0,1,0,2,0,1,1,1,2,1,0,0,1,1,1,0,0,0,1,2,2,1,2,2,2,2,1,0,2,2,2,0,1,2,0,0,1,1,0,1,0,1,2,1,0,0,2,1,2,1,0,1,2,1,1,1,2,2,0,0,2,2,0,2,0,1,0,1,1,2,2,0,1,2,1,1,2,0,0,1,1,0,0,1,2,2,1,2,2,2,0,0,2,1,2,0,0,0,0,2,0,1,0,0,2,0,1,1,2,1,1,0,0,1,0,0,0,1,1,2,0,0,0,1,2,0,0,2,0,0,1,1,0,2,0,0,0,0,2,1,0,0,0,2,1,1,1,2,0,1,1,0,2,1,1,0,1,1,0,0,2,1,0,1,1,0,0,1,2,0,0,2,2,2,2,1,0,1,2,1,2,2,0,2,1,2,2,2,2,2,0,1,1,0,0,1,2,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,1,1,1,2,0,0,0,1,2,0,2,0,0,2,1,0,1,1,2,1,1,1,0,1,1,2,2,0,1,0,0,2,1,1,0,0,1,1,2,2,1,2,1,0,2,0,2,2,2,1,1,1,0,1,1,2,0,1,1,0,0,2,1,0,2,1,0,1,0,1,2,0,2,1,2,1,1,0,0,1,0,1,2,2,1,1,0,2,0,2,1,1,0,1,1,2,1,1,1,1,1,0,1,0,0,0,2,1,2,1,1,0,1,2,0,1,2,0,0,0,1,1,2,0,2,0,2,0,0,0,1,2,1,1,1,0,0,2,0,1,2,2,2,1,0,1,1,1,0,0,0,2,0,2,2,0,2,1,1,2,1,1,0,1,2,1,2,0,1,2,2,1,1,1,1,1,0,2,0,1,0,1,2,0,1,0,2,2}
Returns: 737400183
736
207
312
{2,1,1,2,2,0,2,0,2,0,2,1,0,0,1,1,0,0,2,1,1,1,2,1,1,0,1,2,0,1,1,0,1,2,1,0,2,0,0,2,1,0,0,2,0,2,0,1,2,0,0,0,2,0,1,0,0,0,0,1,0,2,2,0,1,1,2,0,1,1,1,2,2,0,2,1,2,0,0,1,1,1,1,0,2,0,1,1,1,2,0,1,0,0,0,2,2,0,2,0,0,1,2,1,0,0,1,0,2,0,1,2,2,2,0,0,0,2,0,2,1,2,0,2,1,0,1,2,0,2,0,0,1,2,2,0,2,0,2,1,1,0,2,1,1,0,0,0,1,2,2,2,1,2,0,1,2,1,1,1,2,1,2,2,0,0,0,1,1,2,1,0,2,1,1,1,0,0,2,1,0,2,0,2,0,1,2,0,1,2,2,0,2,2,1,2,1,2,1,2,0,2,0,2,1,0,2,1,1,2,0,1,1,2,1,0,0,1,1,2,2,1,2,1,0,1,1,2,1,2,0,2,0,2,2,1,2,2,1,1,1,2,2,0,0,1,1,0,2,1,0,1,2,2,1,0,2,2,1,0,1,0,1,2,0,2,1,0,0,0,2,2,2,0,1,0,2,1,2,1,1,1,1,2,2,0,0,1,0,1,0,0,1,2,1,2,1,1,1,0,1,1,0,0,0,2,1,1,0,0,1,2,1,0,0,1,1,0,2,0,1,2,0,2,0,0,1,0,1,1,0,0,2,2,1,0,2,2,0,1,1,1,0,2,0,0,0,2,2,2,0,1,0,0,2,0,1,2,1,0,0,1,0,0,1,1,2,0,0,2,0,1,0,0,1,0,1,2,2,2,0,1,1,0,0,2,2,0,0,1,1,1,0,1,0,1,2,2,1,2,0,1,1,1,1,1,1,1,2,0,1,1,0,0,2,2,0,2,1,2,0,1,1,2,0,1,1,1,1,2,2,2,0,1,2,1,1,2,2,0,2,0,0,1,2,1,1,1,0,0,0,2,0,0,0,0,1,0,1,0,2,0,0,0,1,2,2,1,1,0,2,1,2,0,1,1,0,0,2,2,2,0,2,0,1,0,0,0,2,1,0,2,2,2,0,2,2,2,1,2,1,0,0,1,1,1,2,0,0,0,2,1,0,0,1,0,1,2,2,2,0,2,0,2,1,1,0,0,2,2,0,0,2,2,2,1,1,1,0,1,0,0,2,2,0,0,0,1,2,1,1,1,0,2,1,1,2,0,0,0,2,2,1,2,0,0,0,0,1,1,1,0,1,2,0,2,2,0,0,2,2,0,0,2,2,2,1,0,1,2,0,0,0,0,0,2,0,1,2,2,2,0,0,1,1,0,1,0,2,0,2,2,2,0,0,0,1,0,2,1,0,1,2,2,2,0,2,1,1,1,0,1,0,0,2,0,0,2,2,0,1,2,0,0,2,2,2,2,1,1,0,0,1,2,2,2,1,0,0,1,0,2,1,0,2,0,1,2,1,0,2,2,1,0,2,2,2,0,2,1,0,0,2,2,1,1,0,2,2,0,2,2,2,0,1,1,0,1,0,1,2,1,0,1,0,2,2,0,0,1,0,2,2,2,0,1,2,2,2,2,1,0,2,0,0,2,1,2,1,2,1,2,1,1,0,1,1,1,1,2,0,1,1,1,0,2,2,0,1,1,2,2,0,1,1,2,2,0,1,2,0,1,0,1,1,1,0,0,1,0,2,1,2,1,0,2,1,2,2,0,0,2,0,2,1,1,1,2,1,0,0,0,2,2,2,1,0,2,2,2,1,0,2,0,1,0,2,1,0,0,2,2,1,1,2,1,1,2,2,0,0,0,2,1,1,1,2,1,0,0,0,1,2,0,0,1,2,0,1,2,2,0,0,0,0,2,1,1,2,0,1,2,2,0,2,1,2,1,2,2,1,0,2,0,1,1,0,1,1,0,0,2,2,2,0,2,2,1,2,0,1,2,2,1,2,2,1,1,2,2,2,1,0,0,0,1,2,2,1,1,2,1,1,0,2,0,0,2,1,2,2,2,1,1,1,1,1,0,0,0,1,2,0,1,1,0,1,0,2,0,2,1,2,0,0,0,1,2,2,0,2,1,2,2,1,1,0,0,1,2,0,2,2,1,2,0,2,0,1,2,0,1,2,2,0,1,0,0,2,0,2,0,1,1,0,2,2,0,1,1,0,2,2,2,2,0,0,1,2,0,0,1,0,1,0,2,1}
Returns: 0
314
174
824
{1,0,2,0,0,0,2,1,1,2,1,0,2,0,2,2,0,0,2,2,1,1,0,1,0,1,2,1,0,0,1,0,2,2,2,2,1,2,1,1,0,2,1,2,2,0,0,2,2,0,1,2,1,2,1,1,0,1,1,1,0,2,0,2,1,2,2,2,1,1,1,0,1,2,0,1,0,0,2,1,2,0,0,1,2,0,1,1,1,1,2,1,2,0,1,2,1,2,1,0,0,0,2,0,2,2,1,0,2,2,2,1,1,2,0,2,1,2,2,2,0,1,0,2,1,2,1,0,1,2,0,2,2,0,2,2,0,1,2,2,1,0,1,0,0,1,2,1,1,2,2,2,0,0,1,1,2,2,2,1,2,1,0,0,2,2,2,1,2,0,0,0,0,0,2,1,1,1,2,0,2,2,0,0,0,1,2,0,1,2,0,2,0,1,1,1,1,0,2,1,0,2,2,0,2,2,2,1,1,1,2,0,2,0,2,0,2,1,0,0,2,2,2,0,2,0,0,2,0,2,1,1,2,1,0,2,0,2,2,2,1,1,2,0,0,0,0,2,1,2,0,0,2,2,1,1,0,1,1,2,0,1,0,2,2,2,0,2,0,0,2,2,1,2,2,0,1,1,2,0,1,1,0,0,2,0,1,2,2,0,0,1,0,2,2,2,1,2,0,2,1,0,1,2,0,1,0,0,2,2,1,1,2,2,1,1,0,0,1,1,2,1,2,0,1,1,2,2,0,2,0,2,2,1,2,1,1,2,0,2,1,2,2,0,0,1,2,2,2,1,2,2,0,2,2,2,1,0,1,2,2,2,2,1,1,1,1,2,1,1,1,0,2,2,2,2,0,0,2,2,0,2,1,0,2,2,0,0,1,0,0,0,2,2,1,1,0,2,0,1,0,2,2,2,2,2,0,1,0,1,2,1,2,2,1,0,0,1,2,0,0,0,1,1,2,1,2,1,0,2,1,0,2,1,2,0,1,2,1,2,2,1,1,0,0,2,1,1,0,2,1,2,1,2,2,2,2,1,2,2,0,1,0,2,2,1,1,0,1,0,1,2,0,2,0,0,2,0,2,0,1,1,2,2,0,0,1,2,0,0,0,1,2,1,0,1,0,1,2,2,0,0,2,0,1,2,1,1,0,1,1,2,1,0,0,1,2,2,1,2,1,1,2,2,0,2,2,1,2,2,0,0,0,2,0,1,2,1,0,2,0,0,2,0,2,1,2,2,0,0,2,1,0,1,1,0,1,2,2,2,2,2,0,1,0,1,1,2,0,2,1,1,1,0,0,2,1,2,0,2,0,1,0,0,0,2,2,2,0,0,0,1,2,1,1,2,1,0,1,2,1,2,2,0,2,0,2,0,2,1,0,0,1,2,0,2,0,0,2,2,2,1,1,2,2,2,2,2,1,2,2,1,1,2,2,0,2,1,1,0,2,2,0,1,0,0,1,0,1,2,0,0,0,1,1,1,1,0,1,2,1,0,1,2,0,1,1,1,2,0,0,2,0,0,1,2,2,2,2,0,0,1,2,2,0,1,1,1,2,2,1,1,2,0,2,1,0,2,1,2,1,2,2,1,1,0,1,1,0,0,1,0,1,2,0,0,1,2,1,2,2,1,0,1,2,0,1,2,2,0,0,2,2,1,1,1,2,1,2,0,2,0,2,0,0,0,2,2,1,1,2,2,1,0,0,0,2,0,1,0,1,1,1,1,2,0,2,2,2,2,0,1,1,2,2,1,0,1,1,1,0,1,1,1,0,0,0,2,0,2,0,0,0,2,1,2,2,0,2,1,2,2,0,1,1,2,2,1,1,1,0,2,2,1,2,2,2,0,1,1,1,2,0,2,0,1,0,1,1,2,0,2,2,2,1,1,1,2,1,0,0,0,2,1,2,0,2,2,1,0,1,2,0,2,0,0,0,1,1,2,2,1,1,1,2,1,0,1,0,1,2,0,2,1,0,0,1,2,2,1,0,1,2,2,0,1,0,2,0,0,1,2,1,0,0,1,0,0,2,1,1,2,2,1,2,2,0,1,0,1,2,2,2,0,1,1,1,2,2,2,2,0,1,2,0,0,1,2,0,2,0,1,2,1,1,1,0,1,0,0,1,0,0,1,1,2,0,0,1,2,1,0,2,2,1,1,0,2,0,2,1,0,2,1,0,0,1,2,2,1,1,0,1,2,0,2,0,2,0,2,0,2,2,1,2,2,2,2,1,0,2,1,0,2,1,1}
Returns: 0
632
136
506
{0,1,1,0,2,2,2,0,1,2,1,2,2,2,0,0,2,2,1,2,2,1,0,0,0,2,2,0,2,2,2,2,0,2,2,0,2,0,2,2,2,0,1,2,1,1,0,1,2,1,1,2,0,1,2,0,2,1,2,2,2,2,1,0,1,0,0,2,0,2,0,2,1,0,1,2,2,2,1,0,2,1,2,0,1,1,2,2,0,2,2,1,0,0,1,0,1,1,2,0,1,0,2,0,0,0,0,2,2,0,1,2,2,2,2,1,0,2,0,2,1,2,0,0,2,0,2,0,1,1,2,0,2,0,2,2,2,1,0,2,0,1,2,2,1,0,0,1,2,0,1,1,0,1,0,2,2,0,1,0,1,2,1,1,1,2,0,2,1,2,2,0,0,0,0,0,2,2,0,2,1,0,0,0,1,1,0,1,0,0,1,0,1,2,2,1,2,1,0,1,1,0,1,0,2,1,2,1,0,0,0,0,0,2,2,1,0,0,2,0,1,2,0,0,0,2,1,0,1,1,0,0,0,2,0,2,1,1,1,2,2,0,1,2,2,2,1,2,0,0,1,2,2,2,2,2,2,0,1,0,0,0,2,2,2,1,0,2,2,2,1,0,0,0,1,0,0,2,2,2,2,2,2,0,2,1,1,1,2,1,0,2,1,0,1,2,1,0,1,1,2,1,0,1,0,1,0,2,1,0,0,1,0,0,1,0,1,0,1,0,2,1,2,0,2,0,1,2,1,2,0,2,0,0,0,0,0,2,0,2,1,0,2,0,0,2,1,2,2,1,0,0,2,2,1,0,0,1,0,0,2,1,0,0,2,2,1,2,0,0,0,1,2,2,2,1,1,2,2,1,2,2,2,1,2,2,2,0,0,1,1,0,1,2,0,1,1,1,2,2,1,2,0,0,2,2,0,2,2,2,0,1,0,2,0,0,1,1,1,1,1,1,1,0,1,1,0,2,0,0,2,2,2,0,0,1,2,2,2,2,2,2,2,2,0,0,2,0,2,1,2,0,0,2,0,2,1,2,1,1,0,0,2,2,2,1,2,0,2,0,1,0,0,1,0,2,0,1,0,2,2,0,2,0,1,0,0,0,2,1,0,2,2,1,0,0,2,2,1,0,2,1,1,0,1,1,2,2,1,2,2,1,1,2,2,1,1,1,1,0,2,2,1,0,1,1,2,1,0,1,0,1,1,1,2,0,1,1,2,1,0,2,1,1,0,1,1,1,2,2,1,1,0,2,1,2,2,1,1,0,2,0,2,1,1,2,0,1,2,2,0,0,1,0,0,2,0,2,0,0,2,0,2,2,0,2,0,0,2,2,0,1,1,2,0,0,2,1,2,1,2,2,1,0,0,2,1,0,2,0,2,1,0,2,1,0,1,2,1,0,2,2,0,2,0,0,0,2,0,1,2,1,0,1,2,2,1,1,2,1,1,1,2,0,0,0,1,2,1,2,0,1,1,1,0,1,1,0,1,1,2,0,1,2,2,1,1,0,0,1,0,1,0,0,0,0,0,0,0,1,1,0,2,2,2,1,2,2,0,0,1,0,1,0,1,2,0,0,0,2,2,1,0,0,2,1,1,0,1,2,1,1,1,1,0,1,2,1,0,0,1,0,0,0,0,2,0,0,2,1,2,1,1,1,1,0,0,0,1,2,0,0,0,1,1,1,0,2,1,0,1,2,2,2,2,0,2,2,2,1,2,1,2,1,0,1,1,2,2,2,2,2,0,1,1,1,0,1,2,0,2,2,1,2,0,2,1,2,1,0,1,2,1,2,2,0,2,0,2,1,2,1,0,1,2,1,2,1,1,2,0,0,0,2,1,0,1,2,0,1,2,0,2,0,0,2,1,1,0,1,2,1,1,1,0,1,0,0,1,1,2,2,1,2,1,1,1,1,1,0,0,0,0,0,2,2,2,1,2,0,2,0,1,1,1,2,1,2,1,2,0,0,2,2,0,1,2,0,2,0,2,0,1,2,1,2,0,2,0,2,1,2,2,1,1,0,0,0,1,1,2,2,1,0,2,2,2,0,1,2,1,1,1,1,1,0,2,0,0,1,0,1,1,0,1,2,1,0,2,0,1,2,1,2,0,1,0,0,2,0,2,2,0,0,1,0,1,0,2,1,2,0,0,2,1,1,2,1,1,1,2,2,1,0,0,0,0,1,2,2,0,1,0,2,1,0,2,2,1,1,1,1,0,0,0,0,1,0,1,1,2,1,2,0,1}
Returns: 0
208
844
933
{2,0,2,0,2,1,1,2,0,0,1,0,2,2,1,0,1,1,1,1,0,2,0,0,2,2,1,1,1,1,1,1,1,0,2,1,2,1,0,2,1,2,2,0,0,2,1,0,0,1,2,0,1,0,1,0,0,0,1,2,2,2,2,2,0,2,1,2,1,0,0,1,2,0,2,0,2,1,1,2,0,1,2,0,0,1,1,2,1,1,2,2,1,2,2,2,1,1,1,1,1,2,1,2,1,1,2,1,2,2,1,1,1,0,1,1,2,2,0,0,0,0,1,0,0,0,1,2,1,1,0,1,2,0,0,0,2,2,0,2,2,1,0,2,2,0,2,0,2,0,0,1,2,1,1,2,0,1,1,1,1,0,2,1,0,2,1,0,1,2,1,0,1,2,0,1,2,2,2,0,2,2,1,1,0,1,0,1,2,1,1,0,2,2,2,0,2,0,2,1,1,2,2,1,2,1,1,0,1,0,1,2,0,1,0,1,1,0,2,1,0,1,1,2,0,0,2,2,2,2,2,0,1,1,1,2,2,0,1,2,2,2,1,1,2,0,0,2,1,2,2,2,0,0,2,0,0,0,0,2,1,2,1,2,1,2,2,2,2,1,1,0,1,0,1,0,0,1,1,2,1,2,2,2,2,0,1,1,2,0,2,0,1,0,0,2,2,1,2,2,2,1,0,2,2,0,1,1,2,2,0,1,2,1,0,2,0,0,0,2,1,1,2,0,0,0,2,1,1,1,0,0,2,0,1,1,2,1,2,2,0,2,2,1,2,0,2,0,1,1,0,1,1,2,2,0,1,0,1,0,0,1,1,2,2,2,0,0,2,1,1,0,2,0,1,1,1,1,1,0,0,0,0,0,1,1,0,1,1,2,2,2,2,2,0,0,1,1,0,1,2,2,0,2,1,0,0,2,2,2,1,0,0,0,1,2,2,0,2,1,2,0,1,1,2,1,0,2,1,1,1,2,1,0,2,0,2,1,1,1,2,2,1,2,1,1,0,2,0,2,0,2,1,0,0,2,2,1,1,2,1,1,2,0,2,2,0,1,1,2,2,0,0,1,0,0,2,0,1,2,0,2,2,0,1,1,1,1,2,2,0,2,1,2,2,2,2,0,0,1,1,0,1,1,2,2,2,2,2,1,2,1,1,0,1,1,1,1,2,1,0,2,2,0,2,2,0,0,2,1,0,0,2,0,1,1,2,2,2,1,1,0,1,2,2,1,1,1,0,1,2,0,1,1,1,1,0,1,0,0,1,1,0,2,2,1,1,0,2,2,2,0,1,2,0,0,0,2,2,2,1,1,0,1,1,2,1,0,1,2,2,2,0,1,0,1,1,1,0,2,2,1,1,0,0,2,0,0,2,0,1,2,1,1,2,0,0,2,0,2,1,1,2,2,1,0,2,0,1,0,1,2,1,1,0,1,2,1,0,2,1,2,2,1,2,1,2,1,1,1,1,1,0,2,1,0,1,0,1,2,1,1,1,0,2,2,1,2,0,0,0,0,0,2,2,2,0,0,1,2,0,0,0,1,0,2,0,1,1,2,1,2,1,0,2,0,1,2,2,1,1,2,0,1,2,0,0,0,2,2,0,2,2,1,1,0,2,1,2,2,1,2,0,2,2,1,1,1,0,0,2,2,0,2,0,2,0,1,1,0,2,2,0,2,1,1,0,0,2,1,1,1,1,2,1,2,2,1,0,1,0,2,0,2,1,0,1,0,1,0,0,0,2,2,2,0,0,2,1,2,1,0,2,1,2,2,2,1,2,0,2,2,2,2,2,0,0,2,1,0,0,1,2,2,0,0,0,1,1,0,2,0,1,1,2,0,1,1,1,1,2,2,2,0,0,0,0,1,2,2,0,2,1,2,0,0,2,0,1,2,1,1,2,2,0,2,2,0,2,0,2,0,0,2,0,2,1,2,0,1,2,0,1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,0,2,0,1,0,2,1,2,1,0,1,1,1,0,0,0,2,0,0,2,2,2,0,1,2,1,2,0,0,2,2,1,0,2,1,2,0,2,0,2,1,2,0,0,2,0,1,2,2,1,1,0,2,1,2,2,1,2,2,2,0,1,0,2,0,2,2,2,1,2,2,2,0,2,1,0,0,1,2,2,2,1,2,1,0,1,0,0,1,2,2,2,0,2,2,1,0,1,0,1,2,2,1,2,0,2,1,0,0,0,2,1,0,0,0,1,0,0,2,0,1}
Returns: 0
942
223
742
{0,1,1,2,2,1,1,1,1,0,1,1,0,2,2,2,2,1,0,1,1,1,1,2,1,1,1,0,2,1,0,0,0,1,2,0,0,0,1,0,0,0,0,1,0,2,1,2,1,2,2,0,0,0,2,2,2,1,0,1,1,2,1,0,1,0,0,1,2,2,0,2,1,0,0,2,2,2,2,0,0,2,1,2,0,0,0,0,2,0,2,1,0,2,1,0,2,1,0,0,1,0,0,2,1,2,2,0,0,1,1,1,0,1,2,0,0,1,2,2,1,0,1,2,2,0,2,0,2,1,0,2,1,0,0,2,1,1,2,1,2,0,2,2,0,0,1,0,1,0,0,1,2,2,1,2,0,1,0,1,1,0,0,1,2,0,0,1,2,1,0,2,1,0,0,2,0,1,0,2,1,2,1,0,1,2,2,2,0,1,2,0,1,1,2,1,2,0,2,1,1,0,1,0,2,2,0,0,1,2,1,0,0,1,1,0,1,1,2,0,0,1,0,0,2,0,0,1,2,1,0,2,2,1,0,2,0,2,2,0,2,2,0,2,0,2,0,0,2,1,0,1,1,1,2,0,2,1,0,2,2,0,0,0,2,1,0,2,1,2,0,1,2,2,1,1,1,2,0,0,2,2,2,0,2,1,2,0,1,2,1,0,1,1,1,1,1,0,2,1,1,0,1,1,2,0,1,0,0,0,2,0,1,2,0,0,2,2,0,0,1,1,2,0,2,1,1,0,2,1,2,0,1,1,0,0,1,1,1,1,2,2,1,2,2,0,2,2,1,1,0,2,1,0,0,1,1,2,1,2,2,2,0,1,2,1,1,2,1,1,1,0,2,1,1,0,1,2,0,0,0,2,1,1,1,2,1,0,2,0,0,0,1,1,1,0,0,2,1,2,0,2,1,2,1,1,1,0,2,0,2,0,0,1,0,1,1,0,2,2,1,1,0,1,2,1,2,1,2,2,1,1,1,2,1,2,1,2,2,2,0,2,0,1,1,2,1,1,0,1,1,0,0,2,0,2,0,1,0,1,1,1,0,1,2,1,1,0,1,1,2,1,0,0,0,1,1,1,1,0,0,2,0,1,1,2,2,1,0,2,0,1,0,0,0,1,1,1,1,1,1,2,1,0,1,2,0,1,2,1,0,1,0,1,2,2,0,0,2,1,1,0,0,0,1,1,1,1,2,2,0,2,0,1,2,2,1,1,1,2,0,0,2,2,2,0,1,2,0,1,0,2,1,1,2,1,0,0,0,0,1,2,0,1,1,1,2,2,2,1,0,2,1,0,0,2,1,1,2,0,2,1,1,1,1,1,0,0,1,2,2,1,0,1,2,1,2,2,0,0,2,1,2,2,1,0,1,2,2,2,1,0,0,1,1,1,2,0,0,1,2,2,0,2,1,1,1,1,0,2,1,1,2,1,1,1,2,2,0,1,0,1,1,0,0,0,1,2,2,0,1,0,0,0,1,2,2,2,2,0,2,0,0,2,0,2,1,0,1,1,2,2,2,2,0,2,1,2,0,2,2,0,1,0,0,2,2,2,2,1,1,2,2,0,2,2,2,1,1,1,2,0,0,1,0,2,1,0,1,2,2,0,2,1,1,0,0,1,2,1,1,0,2,0,2,0,1,1,0,2,1,1,2,1,2,1,1,2,2,1,0,0,0,2,2,2,1,0,0,2,0,2,2,2,1,0,0,1,1,2,0,1,1,1,1,0,1,1,2,0,2,2,1,1,0,0,2,2,2,0,0,2,2,1,1,2,0,2,0,0,1,1,1,1,1,2,2,0,0,2,0,1,2,0,0,2,2,0,0,2,0,0,0,1,2,1,0,2,0,2,1,2,2,0,1,0,0,2,2,1,1,2,0,0,1,2,2,2,2,1,0,2,0,0,2,1,0,0,1,2,2,1,2,2,0,2,1,0,1,1,2,1,1,2,1,0,2,2,2,1,0,0,1,0,1,1,0,1,1,1,1,0,1,1,2,1,2,0,0,2,0,2,0,1,1,2,0,1,2,2,1,2,2,0,2,0,1,1,2,2,1,0,1,0,0,1,2,0,2,2,1,0,2,1,0,0,2,2,2,0,2,1,2,2,2,2,1,1,2,2,0,0,0,2,2,1,0,1,2,0,0,2,2,0,1,2,0,2,2,2,0,0,1,0,1,2,0,0,2,0,2,2,1,0,0,1,0,1,1,0,2,1,1,1,2,1,0,2,2,1,0,0,1,1,2,0,2}
Returns: 0
300
689
626
{0,1,1,1,1,2,1,0,1,1,1,0,2,0,0,1,1,2,2,1,1,1,2,2,0,1,1,2,2,2,2,2,2,2,1,1,0,0,1,2,1,2,2,1,0,1,0,0,2,2,1,0,2,1,0,0,2,2,2,0,0,0,1,1,2,2,2,0,2,2,0,2,1,1,1,1,2,2,2,2,2,1,2,2,1,2,2,1,2,1,2,2,2,2,0,1,1,1,0,1,0,1,0,0,2,2,2,1,0,0,0,0,2,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,0,0,2,2,2,0,1,1,1,0,1,0,0,2,2,0,0,1,1,1,0,1,0,0,2,1,0,2,2,2,1,2,1,2,1,0,0,0,0,2,2,2,0,2,0,1,2,1,0,2,1,1,0,1,2,0,2,1,0,1,2,2,2,1,1,1,2,1,0,0,1,2,2,2,0,2,1,2,0,1,2,1,0,0,2,0,0,1,0,1,0,1,2,0,2,0,2,2,2,2,2,2,0,1,2,2,0,1,0,1,0,0,1,0,0,1,1,2,1,2,2,0,0,2,2,0,2,2,1,2,1,1,1,2,0,1,2,0,1,2,2,2,0,1,2,2,0,0,1,1,2,2,2,2,1,2,1,1,0,1,0,1,2,1,1,0,1,0,0,0,2,2,2,1,1,1,1,1,0,2,2,0,0,1,1,2,2,2,2,2,0,0,1,1,0,2,1,0,1,2,2,0,2,1,1,2,0,1,0,2,2,2,1,1,2,1,0,0,2,1,2,2,0,1,2,1,0,2,1,1,0,1,1,1,1,1,1,2,0,1,2,0,1,1,0,1,0,0,0,1,0,1,0,1,1,2,1,0,1,1,1,2,0,2,0,1,0,0,2,2,2,2,1,1,1,0,1,1,1,1,2,0,2,0,0,0,1,2,1,0,2,2,1,2,1,0,0,1,0,2,2,0,1,0,2,1,0,1,2,2,1,0,2,2,0,1,0,2,2,2,2,2,2,0,0,0,0,1,0,1,1,1,1,2,1,1,2,2,0,2,2,1,2,2,1,2,0,0,2,0,1,1,0,0,0,2,2,0,1,2,1,2,1,1,0,2,0,1,1,1,1,0,0,2,2,2,0,0,2,0,1,0,1,0,2,2,1,2,2,2,2,0,0,1,1,0,1,2,0,0,1,1,2,1,1,2,1,2,1,2,0,0,1,0,1,1,2,0,0,0,1,0,1,1,2,1,1,1,2,2,1,1,2,2,0,0,0,2,2,0,0,0,1,2,2,2,1,2,0,0,2,1,0,1,1,2,1,0,1,2,2,2,0,1,1,1,2,2,2,1,1,0,1,2,0,2,1,2,1,2,2,0,2,2,1,0,1,0,0,1,0,0,2,1,1,0,2,0,1,1,1,0,1,1,1,1,1,2,0,0,0,1,2,0,2,1,1,2,1,0,1,1,2,2,2,0,2,0,0,0,1,1,0,1,2,0,2,2,0,0,2,2,2,1,1,0,0,2,1,0,2,1,1,0,1,2,2,2,0,0,0,1,1,2,2,2,1,0,0,0,2,1,2,0,2,0,1,0,1,1,1,1,1,1,2,0,1,0,2,0,1,2,1,1,0,2,1,0,0,1,1,0,1,1,0,2,0,0,1,1,1,2,0,1,1,1,2,0,1,2,0,2,1,2,1,2,0,1,0,0,1,2,1,0,1,2,1,1,1,1,0,2,2,1,2,1,1,1,1,1,1,2,2,0,0,2,1,0,0,2,1,1,0,1,2,0,2,0,0,0,0,2,2,0,2,1,1,0,2,1,0,2,0,1,2,2,1,2,0,1,0,1,0,1,1,0,0,2,2,2,1,1,2,2,1,0,0,1,2,1,1,0,1,1,1,0,0,1,1,2,0,1,1,0,2,2,0,2,1,0,0,0,2,2,0,0,0,0,0,0,1,1,2,0,1,0,0,1,2,1,1,0,2,1,2,0,0,2,1,1,1,0,2,0,2,1,2,0,1,2,0,1,2,2,0,2,0,0,2,0,0,2,1,0,2,2,2,1,2,0,2,1,1,0,1,0,0,2,2,0,0,0,2,2,0,2,0,1,1,2,1,0,2,1,0,1,2,2,1,2,1,2,0,0,1,2,1,0,0,2,1,1,1,1,1,1,1,2,0,1,1,1,1,1,1,1,0,0,1,2,2,0,0,2,1,1,2,2,1,2,1,0,2,1,1,2,2}
Returns: 0
175
294
951
{1,2,1,1,1,2,2,2,1,1,1,1,2,1,0,2,2,2,1,2,2,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,0,0,2,1,0,1,1,1,0,1,2,2,2,0,0,0,1,1,1,1,0,1,1,1,1,1,1,2,1,2,1,2,2,1,0,0,2,0,1,1,2,1,0,0,0,1,1,1,2,0,1,1,1,1,1,1,2,2,2,1,2,2,1,2,2,1,2,2,0,2,1,1,1,1,1,1,1,2,0,0,1,0,1,1,0,1,0,1,1,2,0,0,0,1,0,1,1,2,2,1,1,0,0,0,0,2,1,2,0,2,0,0,0,2,0,0,0,2,1,0,0,0,2,2,0,1,2,0,1,1,2,1,2,1,0,1,2,2,1,1,0,0,2,1,2,1,0,1,0,0,2,0,2,2,2,1,0,2,1,2,1,1,2,1,1,1,1,2,1,0,2,0,0,2,1,2,0,0,0,2,1,1,0,2,0,2,0,1,0,1,2,2,0,0,0,1,0,0,2,1,0,1,0,2,0,0,0,0,0,2,0,1,1,0,1,1,1,0,0,2,0,0,0,2,0,0,0,2,0,0,1,2,0,2,0,2,0,2,1,1,2,0,1,1,1,2,2,0,2,1,2,0,2,2,0,0,0,0,0,1,0,0,1,0,2,0,0,1,0,2,1,1,0,2,0,1,0,1,0,0,0,2,0,1,0,1,1,0,0,1,2,1,1,2,1,2,1,2,2,1,2,1,0,1,1,1,1,1,2,2,1,0,1,1,1,1,0,0,0,2,1,1,0,0,1,0,2,0,1,2,0,0,2,1,0,0,2,2,0,2,2,2,2,0,2,2,1,2,2,1,1,1,2,0,1,0,2,0,0,0,2,0,1,1,1,2,2,0,0,2,2,2,0,0,1,0,0,0,0,2,2,0,1,2,1,2,2,2,0,1,2,0,2,0,0,0,2,2,2,2,0,0,2,0,0,0,0,1,1,0,0,2,1,1,0,2,0,1,1,0,1,0,0,0,2,2,1,1,0,1,2,2,0,1,2,1,0,0,1,1,0,2,2,0,2,1,2,0,1,2,1,2,1,2,2,2,0,1,0,0,0,0,1,1,2,1,0,0,1,0,2,1,2,1,1,2,1,2,0,2,0,2,1,0,0,0,2,0,1,0,1,0,0,1,2,0,0,1,0,2,0,0,0,0,1,1,0,1,1,0,0,0,1,0,2,2,1,1,2,1,1,2,0,1,2,1,0,0,0,1,1,0,2,1,2,1,1,1,0,1,1,0,1,0,2,1,2,2,2,2,1,1,1,0,1,0,2,2,2,0,1,0,2,0,0,1,0,0,2,1,1,1,1,2,1,2,0,1,0,2,0,0,2,2,0,2,1,0,2,0,2,2,0,2,2,2,0,1,1,1,2,1,2,1,0,2,0,1,0,1,0,2,2,1,2,2,1,0,0,1,1,2,1,1,1,2,2,2,0,0,2,0,2,2,2,0,2,2,0,0,0,0,2,2,1,1,1,2,1,1,2,0,1,1,1,2,2,0,2,1,2,2,2,0,0,0,0,0,1,2,1,0,0,2,1,2,0,1,0,2,1,0,1,0,1,1,0,0,2,1,1,1,2,0,0,2,0,2,2,1,1,2,1,0,0,2,2,1,0,0,0,1,2,1,2,1,1,1,0,2,0,2,2,2,0,1,1,2,2,1,2,1,2,0,1,1,2,0,0,0,1,0,2,0,2,2,2,1,2,1,2,1,0,2,0,1,0,1,0,2,1,1,2,2,2,1,2,1,1,1,1,1,2,1,1,0,1,0,2,1,0,2,2,0,0,0,2,1,1,0,2,1,0,0,0,1,1,0,1,1,1,2,1,1,2,1,1,0,1,2,1,1,1,1,0,0,0,0,0,1,2,0,1,1,1,2,1,1,0,0,1,0,0,2,1,0,0,1,0,1,0,2,2,1,0,2,2,2,2,1,2,0,2,2,0,2,2,1,1,1,0,2,2,2,1,1,2,1,2,1,0,0,0,2,1,2,2,2,2,1,0,0,2,0,1,0,0,1,1,1,1,1,0,2,1,0,0,0,0,1,1,2,1,1,0,0,0,1,2,0,0,0,1,1,1,2,2,1,2,0,2,1,1,0,1,2,2,0,1,1,1,0,1,2,1,1,1,2,0,1,0,0,0,0,1,1,1,1,2,2,0,2,2,2,0,2,0,1,0,0,0}
Returns: 0
437
528
48
{1,1,2,0,0,1,1,1,2,1,2,1,2,1,1,0,1,1,1,0,2,2,2,0,0,0,2,1,0,2,2,2,1,1,0,2,0,2,0,1,1,0,2,0,0,2,2,2,2,1,0,2,1,0,1,1,1,2,0,0,2,0,0,2,2,2,1,0,2,2,0,1,0,2,1,1,1,0,1,2,0,2,0,0,0,0,2,1,1,0,1,2,0,2,0,1,2,1,1,0,2,0,1,0,1,0,0,0,2,0,1,0,1,2,1,2,0,1,2,0,1,0,1,1,2,0,1,1,1,1,2,2,0,2,2,0,0,0,2,0,2,0,0,1,2,2,2,0,2,1,1,2,0,0,0,2,1,1,2,1,1,2,2,2,2,2,1,2,2,2,0,0,2,2,2,2,2,1,2,1,2,0,2,0,2,2,1,1,2,2,1,0,2,1,2,0,2,2,2,1,2,0,2,2,0,2,0,2,0,1,2,1,2,0,0,2,1,1,2,2,1,2,1,1,0,1,2,0,1,0,2,0,0,0,1,0,1,2,0,2,2,2,2,2,0,2,1,2,1,2,1,2,2,2,1,2,0,2,0,0,0,2,2,1,0,2,0,2,2,0,1,0,1,0,2,0,0,2,0,2,2,0,0,1,1,1,2,2,2,0,2,2,1,1,1,1,2,2,1,0,2,1,1,1,0,0,0,1,1,0,0,1,2,0,2,1,1,1,1,0,0,0,1,2,1,1,2,0,0,0,1,1,0,2,2,0,0,2,1,2,1,0,2,0,2,1,0,0,2,1,0,0,2,1,2,2,1,2,1,2,2,1,2,2,2,1,0,0,2,0,1,1,1,1,0,0,1,0,2,1,2,0,1,2,0,1,2,0,0,1,2,1,2,0,2,2,2,2,2,0,1,2,0,2,0,0,0,0,2,2,1,2,2,0,1,0,2,2,1,1,0,1,1,2,1,0,2,0,1,1,2,2,1,2,0,0,0,2,2,2,0,1,1,2,0,1,0,0,2,1,1,1,2,0,1,2,2,1,1,1,2,2,0,2,0,0,2,2,2,2,2,2,2,1,2,2,0,0,1,1,1,2,1,2,2,2,2,1,1,1,2,2,1,1,1,0,2,1,2,1,2,0,1,1,0,0,0,1,2,2,2,1,1,0,2,1,1,0,2,2,0,1,0,1,0,1,1,0,2,2,1,2,0,1,2,0,0,2,2,2,1,0,0,0,2,0,0,0,2,2,0,2,0,1,2,0,2,0,1,1,2,0,0,0,1,2,2,1,0,0,2,2,2,1,0,2,0,0,2,0,0,2,1,0,0,0,1,1,1,0,2,1,1,0,2,1,0,2,0,2,2,0,0,0,1,1,1,1,0,1,0,2,1,1,0,0,0,1,0,1,2,0,2,1,1,2,0,1,0,1,2,2,0,1,0,1,2,0,0,0,1,0,2,2,1,2,0,2,1,2,0,2,2,2,1,2,1,1,2,0,2,0,2,2,2,0,0,1,2,0,2,2,2,1,0,2,0,0,0,1,1,0,0,1,2,0,1,0,0,2,2,1,2,2,1,2,2,0,2,1,0,0,2,1,2,1,1,0,1,1,1,0,2,1,0,0,0,2,0,1,0,2,2,1,1,0,2,0,0,1,2,1,1,2,1,1,2,2,2,1,1,1,2,0,1,2,0,1,0,1,0,1,1,0,0,1,2,2,1,0,2,1,1,0,1,0,2,1,1,1,2,2,2,0,0,0,2,0,1,1,2,2,2,0,2,1,2,1,0,2,0,1,1,1,1,2,0,1,2,1,2,0,0,2,0,0,0,0,2,2,1,1,0,1,2,1,0,0,0,0,2,0,1,0,2,1,0,2,2,0,2,1,2,2,2,1,1,1,2,2,0,2,0,2,1,2,1,2,1,2,0,2,2,0,1,2,0,2,1,0,0,1,2,1,2,1,2,0,0,1,1,0,1,2,2,1,2,2,1,2,2,0,2,2,1,2,2,1,2,0,0,0,0,2,0,1,1,1,0,1,0,0,2,1,1,1,2,1,0,0,2,2,0,0,1,1,2,2,0,2,1,0,0,2,2,0,1,0,1,1,2,2,0,1,2,0,0,1,1,0,2,0,2,1,2,1,2,0,2,2,2,2,1,1,1,1,0,0,0,0,1,2,0,2,1,0,0,1,2,0,1,0,1,2,0,1,0,1,1,0,0,1,1,1,2,1,2,1,1,1,2,0,1,1,2,1}
Returns: 0
237
386
45
{1,1,2,0,0,2,0,2,0,1,0,0,0,0,1,2,1,0,2,1,2,0,0,1,0,0,1,2,1,0,1,1,2,0,1,2,1,1,2,0,0,0,1,0,1,1,2,2,2,0,0,1,1,2,2,2,1,2,0,1,2,1,2,2,0,1,1,1,2,1,1,1,2,1,2,1,0,1,1,0,0,0,1,2,0,1,0,0,2,1,1,0,1,1,2,1,0,1,0,2,0,2,2,0,1,1,0,0,0,1,1,1,1,2,0,1,2,1,2,0,0,2,0,0,2,1,1,0,1,2,0,0,0,2,2,1,0,2,0,0,0,1,1,0,1,0,0,2,2,0,0,0,1,0,1,1,1,1,1,0,1,2,2,0,1,2,2,0,2,0,1,2,0,0,1,2,0,0,1,2,0,1,1,0,2,2,2,0,1,2,1,1,2,0,1,2,2,2,2,2,1,1,0,0,1,0,1,2,0,1,1,1,2,2,0,0,1,2,0,2,0,0,0,0,2,1,2,0,1,0,0,1,0,0,0,1,1,2,1,0,0,0,2,1,1,0,2,0,0,1,2,2,2,1,0,0,2,1,0,1,2,2,2,1,0,2,0,1,0,2,0,1,0,1,1,0,1,2,2,1,2,0,1,2,2,2,0,2,0,0,0,0,2,0,0,1,2,0,1,1,0,1,1,0,1,1,2,2,1,0,2,2,2,0,0,0,2,2,2,2,2,0,0,2,0,0,1,0,1,0,2,1,0,0,1,0,0,2,2,0,1,2,0,1,1,1,0,2,2,0,1,0,1,2,0,2,1,2,0,1,2,2,1,2,2,2,1,1,0,2,1,0,0,0,0,0,0,0,1,0,1,0,2,1,0,1,2,0,0,0,2,1,2,1,0,1,0,1,1,0,1,1,1,1,2,0,2,0,0,1,2,2,2,2,1,2,2,0,1,2,1,1,1,1,0,1,2,2,0,2,1,2,2,0,1,1,0,0,1,0,1,0,0,1,0,2,1,1,2,1,0,0,1,2,1,1,1,0,1,0,2,2,1,0,1,1,2,0,0,0,2,2,2,0,1,0,0,2,1,2,1,1,1,0,0,2,1,2,1,1,2,0,0,0,0,0,1,2,1,2,0,2,1,1,1,1,2,2,1,2,1,1,1,0,2,1,0,2,0,1,0,1,1,2,2,2,1,2,0,0,2,1,1,0,0,2,0,2,0,1,0,1,2,1,0,1,2,1,0,0,1,1,2,2,2,2,1,2,0,0,0,1,2,1,0,0,2,1,0,0,1,1,0,0,0,2,1,1,1,2,1,2,0,1,2,1,0,1,0,2,1,1,0,0,2,0,2,0,1,2,1,0,0,2,0,2,0,2,0,0,0,2,0,0,0,2,1,2,2,0,2,0,0,1,2,0,2,0,0,2,0,1,0,0,2,1,2,2,0,1,1,2,1,2,1,2,1,2,1,1,2,2,0,1,2,1,1,2,1,0,1,1,1,0,2,1,2,2,2,1,0,2,2,0,2,2,1,2,1,2,1,2,0,0,1,2,0,1,0,0,0,2,0,1,1,1,1,1,2,0,0,1,0,1,2,1,0,2,0,1,0,1,0,1,1,0,0,2,0,0,2,1,0,0,1,0,2,1,2,2,2,1,0,0,1,0,0,0,2,1,1,1,0,1,1,0,2,0,2,2,2,1,2,0,1,0,0,0,2,2,1,0,0,0,0,0,0,2,0,1,0,1,2,1,2,0,2,0,0,0,0,0,1,2,1,1,2,0,1,0,0,1,0,2,0,1,2,2,1,0,2,1,2,0,1,1,1,1,0,2,2,1,2,0,2,0,2,1,0,1,2,1,0,2,0,1,2,0,1,0,1,0,0,0,0,1,0,1,1,0,0,0,1,2,1,1,2,1,0,1,0,0,2,1,0,0,1,2,2,2,2,0,1,2,0,2,0,0,2,0,1,0,2,0,2,2,1,2,1,0,1,2,1,1,0,0,2,0,2,2,2,2,2,1,2,2,1,0,1,2,1,0,1,1,0,0,0,1,2,0,2,0,0,0,0,2,2,1,1,2,1,1,1,0,0,0,1,1,0,2,1,2,1,2,0,1,0,1,2,2,1,1,1,2,1,0,0,0,1,2,0,1,0,1,2,1,0,1,1,1,1,2,1,1,1,1,0,2,0,0,1,0,0,2,0,0,1,1,0,1,2,0,2,2,0,1,0,2,0,0,1,1,2,2,0}
Returns: 0
428
606
765
{1,1,0,1,2,0,1,2,0,0,2,2,2,1,0,2,1,0,1,2,2,2,0,2,2,0,2,0,1,1,0,2,1,0,1,1,2,2,0,2,0,0,2,2,1,1,0,0,2,2,0,1,2,1,2,2,0,1,1,2,1,1,2,0,0,0,0,1,1,2,0,0,0,0,1,1,0,0,0,1,2,2,1,2,2,0,1,2,0,1,0,0,2,2,2,2,1,2,1,2,1,0,1,0,2,2,2,2,2,2,2,1,1,2,0,2,2,2,0,2,2,0,2,2,2,2,0,1,1,2,1,1,0,1,1,1,0,0,0,2,2,0,2,0,2,2,0,2,1,2,0,1,1,2,1,1,0,0,1,1,2,2,1,0,1,0,0,1,1,1,2,0,1,2,1,0,1,2,1,2,0,2,1,1,0,2,0,1,0,1,0,0,2,1,0,0,2,0,2,0,2,2,2,1,0,2,1,1,1,0,0,0,2,1,1,1,2,1,0,2,2,2,1,2,1,1,1,2,2,1,1,1,1,2,2,1,2,1,0,2,2,0,1,0,1,2,2,2,0,0,0,1,0,2,2,2,0,2,2,0,0,2,1,2,1,2,1,0,1,1,1,1,0,1,2,1,0,1,0,0,1,0,2,1,2,2,2,2,0,0,2,0,0,1,0,0,1,1,1,0,2,1,1,1,2,1,1,1,2,1,2,0,1,1,2,2,1,2,2,0,2,2,0,1,1,0,2,1,0,1,1,0,1,2,1,2,2,2,0,0,0,1,1,0,1,1,1,2,2,2,0,0,0,0,2,2,1,2,2,1,2,1,0,1,1,2,2,1,1,0,1,1,0,0,1,0,1,0,2,0,1,2,0,0,0,0,0,1,0,2,1,2,2,1,0,0,0,1,2,1,0,2,0,2,1,0,0,0,2,1,1,1,1,2,1,0,2,0,2,2,0,2,0,2,1,1,1,2,0,0,2,2,2,0,0,1,0,2,2,0,2,2,2,2,2,1,1,0,1,2,2,2,0,2,0,2,0,0,0,0,1,1,0,1,0,0,0,0,2,0,2,2,1,2,0,0,1,0,1,0,0,2,1,2,0,2,0,1,2,2,2,0,0,1,1,0,1,2,1,1,2,2,1,2,0,2,2,2,0,2,1,1,2,2,2,2,2,2,2,1,1,1,2,0,0,2,1,0,0,2,2,0,2,0,2,0,1,1,0,1,0,1,2,2,1,1,2,2,0,0,0,2,2,2,1,0,0,0,0,2,0,2,1,1,2,0,1,0,2,2,2,1,2,2,0,0,2,2,0,1,0,1,0,0,0,2,2,2,2,1,2,0,1,2,1,1,2,1,2,0,0,2,0,0,1,0,1,0,0,2,0,1,1,1,0,2,1,1,1,0,2,0,1,1,2,2,2,2,1,2,2,2,2,1,0,0,1,1,2,2,1,0,2,1,0,0,0,2,1,0,1,0,1,0,1,2,0,0,0,2,0,0,1,2,2,2,0,2,0,2,1,2,1,2,1,1,2,1,1,2,0,0,0,2,0,0,0,2,0,1,1,2,0,1,2,1,0,0,2,1,0,0,1,2,2,2,0,0,1,2,2,1,0,0,2,1,1,0,0,2,2,1,0,0,0,2,1,2,0,2,1,1,2,2,0,1,0,0,2,0,0,0,1,1,2,0,2,1,0,0,2,1,2,2,0,2,0,2,2,1,2,2,2,2,2,0,0,1,2,1,2,2,1,2,1,2,0,0,2,0,2,2,1,1,1,2,0,2,0,2,2,2,0,1,0,2,1,0,2,0,1,0,2,0,2,2,1,0,0,2,0,2,0,0,1,1,1,0,1,1,0,0,1,0,1,0,2,2,1,2,2,2,1,2,1,0,1,2,1,2,1,1,2,1,1,1,1,1,0,1,1,0,1,0,0,2,0,0,0,0,1,0,2,2,2,0,2,2,2,2,0,1,1,1,1,1,0,1,0,1,2,1,2,0,1,0,2,0,2,1,1,1,1,1,1,0,1,1,2,2,1,1,1,1,2,2,2,0,1,2,1,0,0,2,2,2,0,1,0,2,1,2,2,0,2,0,2,2,0,2,1,0,1,0,0,0,1,2,0,1,2,1,1,0,2,0,1,2,0,2,2,0,1,2,0,0,1,2,0,1,2,2,1,2,1,0,1,1,0,2,2,2,2,0,1,2,2,0,2,1,1,1,2,0,1,0,1,2,0,2,0,2,0,2,2,1}
Returns: 242410261
962
442
33
{0,0,2,2,1,2,0,1,2,0,0,1,2,0,1,2,0,2,0,0,2,0,1,1,2,2,1,2,1,2,2,0,2,0,2,2,2,0,1,0,1,2,0,1,1,0,0,0,2,1,2,1,0,1,0,2,1,2,2,1,1,2,1,1,0,1,0,0,1,1,0,2,2,2,2,0,2,1,2,1,1,1,2,2,0,2,2,1,2,0,0,2,1,0,1,2,2,0,1,0,1,2,1,1,1,0,1,0,2,2,2,1,1,2,2,1,1,1,1,2,2,0,0,0,2,0,2,1,0,1,0,2,2,2,0,2,0,0,2,0,1,2,1,2,1,1,1,0,1,1,0,2,0,0,1,2,2,1,2,2,0,1,0,2,0,1,1,1,0,1,2,0,1,2,0,0,2,0,0,1,2,1,0,1,1,0,1,0,1,2,2,0,2,1,0,1,2,0,0,0,0,2,2,2,2,1,0,1,0,1,1,1,2,0,0,1,0,2,0,1,2,2,0,2,0,2,0,1,2,0,2,2,2,0,0,0,0,0,1,1,0,2,2,1,1,1,0,1,0,0,0,0,0,2,0,1,2,1,0,0,0,1,1,2,1,1,2,0,2,1,1,0,1,0,1,1,2,2,0,0,1,0,0,1,2,0,2,0,2,2,0,1,0,2,0,2,0,0,2,2,1,0,2,1,1,2,0,2,1,0,2,0,0,2,0,0,2,2,1,0,2,2,2,2,1,1,2,2,2,0,1,2,0,0,0,0,0,1,2,2,2,0,2,0,0,1,0,2,1,1,0,0,1,0,2,1,0,0,0,2,0,1,1,2,2,0,1,2,1,2,0,1,0,0,0,0,2,0,2,0,2,0,2,2,0,0,0,2,2,2,2,2,0,0,0,0,2,0,0,0,2,1,1,0,0,0,2,2,0,0,1,0,0,0,1,2,2,1,2,0,0,2,0,2,0,1,0,2,2,1,0,2,1,0,1,0,0,1,0,0,1,2,1,2,1,1,0,1,1,0,0,0,1,0,2,0,0,1,2,2,2,0,2,0,2,2,1,2,0,2,1,0,1,2,2,1,0,1,2,1,1,0,1,2,1,2,2,1,2,2,1,2,0,0,2,0,0,0,1,2,0,1,0,1,1,2,0,0,1,2,1,2,1,0,1,2,2,0,1,2,0,0,1,1,2,1,1,0,0,2,2,2,1,1,0,2,1,0,0,1,2,1,2,0,1,0,0,0,0,1,0,2,0,0,1,1,0,2,1,2,0,2,2,0,1,1,1,0,0,1,1,0,0,0,0,2,1,0,1,2,0,0,1,1,0,1,0,2,1,0,0,0,0,1,0,1,1,0,1,2,2,0,0,1,2,2,2,1,1,2,2,1,2,2,1,0,0,2,2,2,2,1,0,2,2,0,2,2,0,1,1,2,2,1,0,0,0,0,2,0,2,1,2,0,1,0,2,0,2,2,2,1,2,0,2,2,1,0,2,0,0,2,0,1,0,2,2,0,2,1,0,2,1,0,2,0,2,1,2,2,1,0,0,0,0,0,1,1,1,0,0,1,2,0,1,1,0,2,0,0,1,2,1,1,0,2,0,2,0,1,0,0,0,1,2,0,1,0,2,0,1,0,2,2,1,1,2,2,0,1,0,2,0,1,1,2,1,1,2,1,2,1,2,1,2,2,1,0,1,1,2,2,2,0,2,0,1,2,1,2,0,0,0,1,1,1,2,0,1,0,0,2,1,2,0,2,0,2,1,2,2,1,1,0,1,1,0,1,2,1,2,0,1,1,0,0,2,1,1,0,2,0,1,2,0,1,0,1,2,1,0,0,1,2,1,1,2,2,1,2,0,2,2,0,2,1,2,1,1,2,2,0,0,1,2,0,1,1,2,2,0,2,0,2,2,2,1,1,0,1,1,2,0,0,0,1,0,2,0,0,1,1,2,0,2,1,0,1,2,0,1,1,0,2,2,0,1,1,2,0,2,1,1,0,2,0,0,0,0,2,0,1,0,0,2,0,0,1,2,2,0,0,0,2,0,1,0,2,1,1,0,1,2,2,0,2,2,1,2,2,1,2,2,2,2,2,1,2,2,1,1,0,2,2,0,1,0,1,2,1,1,0,2,0,1,2,2,2,2,2,2,2,0,2,2,0,1,2,2,0,1,0,0,1,0,2,1,2,2,2,2,1,1,1,2,2,2,0,0,0,2,1,2,1,1,2,2,1,1,0,1,0,2,0,2}
Returns: 0
933
127
438
{2,1,0,0,2,0,2,1,2,1,0,1,1,0,1,1,2,0,0,2,1,1,0,2,1,2,1,2,0,1,0,0,0,2,2,0,1,1,0,1,0,2,1,2,2,2,1,2,1,2,0,0,1,0,1,1,0,1,0,0,0,1,0,0,1,1,2,2,1,0,2,0,1,2,1,1,1,2,0,1,2,2,2,2,1,1,0,1,1,1,1,0,0,1,1,0,1,1,1,1,0,1,0,2,2,2,2,1,1,2,1,2,2,1,0,1,1,1,0,2,1,2,2,2,2,2,0,1,1,1,0,1,1,0,0,2,0,0,2,0,1,1,1,0,2,1,2,0,0,1,0,1,0,2,1,1,1,2,1,2,1,1,0,1,2,0,2,0,2,1,0,1,2,1,0,2,2,2,2,0,0,1,0,0,1,0,1,0,2,0,1,2,2,1,0,0,2,0,0,0,0,0,2,1,1,0,0,1,1,2,1,2,2,0,2,0,0,0,1,0,1,1,0,2,1,1,1,0,0,2,2,0,1,1,2,0,2,0,0,0,0,2,0,1,1,0,2,2,2,2,1,1,2,0,1,2,0,2,0,2,1,1,0,2,0,2,2,2,0,0,0,2,2,1,2,2,2,2,1,1,1,2,1,2,0,1,0,1,1,2,1,1,1,2,2,0,1,2,2,0,1,0,2,2,1,2,1,0,1,1,2,2,0,2,1,1,1,0,1,2,2,2,2,0,1,2,1,0,1,2,1,1,0,1,2,1,0,0,0,0,2,2,1,1,1,0,0,2,0,2,1,2,1,0,2,2,2,2,2,2,0,1,0,0,2,0,1,2,1,2,1,1,2,0,2,1,0,2,2,1,2,1,2,0,1,2,1,1,0,0,2,2,0,1,1,0,0,2,2,1,1,2,2,0,2,2,1,1,2,0,0,1,1,0,0,1,0,2,0,0,0,1,0,2,0,0,1,1,1,0,0,0,0,2,2,1,1,1,2,2,0,2,0,0,1,0,1,2,1,1,0,2,0,2,1,0,0,0,0,1,2,1,1,1,1,1,0,2,0,2,0,2,0,1,2,1,2,2,1,2,2,2,1,0,2,1,1,0,0,0,0,2,2,1,1,0,1,2,0,2,0,2,2,2,1,2,2,2,2,2,0,1,0,2,2,0,0,1,2,0,2,0,2,1,1,1,0,2,1,0,0,2,2,1,1,1,1,1,0,1,0,2,0,1,0,0,0,2,0,0,2,1,1,1,1,0,0,1,2,1,0,0,1,2,1,1,1,0,0,1,1,2,1,0,0,2,1,2,1,1,2,2,1,2,1,2,2,2,1,1,1,1,1,0,2,0,1,2,1,2,0,1,1,1,2,2,1,1,0,1,2,0,1,0,1,2,2,0,1,0,0,2,1,2,2,0,2,1,1,2,0,0,2,0,0,0,0,2,1,2,1,0,0,2,0,1,1,2,1,1,2,2,2,1,2,0,0,1,0,2,1,1,1,1,1,1,1,2,2,1,0,0,0,1,1,2,2,1,1,2,0,1,0,2,2,1,1,0,1,2,1,2,2,1,2,0,2,2,2,1,1,1,0,2,1,0,2,0,0,1,1,2,0,2,2,1,0,0,1,0,1,0,0,1,0,0,2,1,2,0,0,0,0,1,1,0,1,1,2,0,2,2,0,0,2,2,0,1,2,0,0,0,2,2,0,2,0,2,1,2,2,2,0,0,2,2,2,2,0,1,0,1,2,0,0,2,1,2,2,1,0,1,1,2,2,2,2,0,0,2,2,0,2,0,1,0,1,1,0,1,1,2,0,2,1,0,1,0,1,2,1,2,0,0,1,0,0,0,0,1,1,0,0,2,1,1,1,0,1,0,0,1,0,1,1,2,1,0,0,1,1,2,1,2,2,2,0,2,2,1,0,1,1,0,1,1,2,2,2,2,2,1,1,1,1,0,2,0,0,0,2,1,2,2,0,2,2,1,2,0,1,2,2,2,1,0,2,1,0,2,2,1,1,2,1,1,1,1,0,0,0,2,2,0,1,1,1,2,0,1,1,1,1,0,1,0,0,1,2,1,2,2,2,0,2,1,0,1,2,1,1,1,1,2,0,2,0,0,2,1,0,1,1,0,0,2,1,0,1,2,1,1,2,2,1,0,0,0,1,2,0,0,0,1,2,0,2,0,2,0,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,0,1,2,1,2,1,2,0,2}
Returns: 0
0
0
0
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}
Returns: 56888193
401
434
733
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}
Returns: 736160953
302
979
375
{0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2}
Returns: 725253584
1000
1000
1000
{0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2}
Returns: 18962731
3
11
0
{1,0,1,1,1,1,1,1,0,2,1,1,0,1,1,2,0,0,1,0,1,0,2,1,0,1,0,1,1,1,1,0,1,2,2,2,2,1,0,0,1,0,1,0,1,1,1,0,1,0,0,2,0,0,1,0,1,2,0,0,1,1,0,2,1,0,0,1,2,2,2,1,2,2,0,2,1,0,1,1,2,0,1,1,2,1,1,1,0,1,0,1,1,1,0,2,0,0,0,1,0,1,2,0,1,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2}
Returns: 953195726
12
8
10
{0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0}
Returns: 648642783
5
3
2
{0,0,2,0,0,2,2,2,0,1,0,0,0,0,0,0,0,2,2,0,1,0,2,2,0,2,0,0,0,1,0,2,0,0,0,2,0,0,0,0,2,2,0,0,0,1,2,0,2,1,2,0,0,2,0,2,2,0,2,0,0,0,1,0,0,0,0,2,2,0,2,0,0,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,2,0,2,0,1,0,0,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,2,0,2,0,0,0,2,0,0,1,1,0,0,2,2,0,2,0,2,2,2,2,0,1,0,0,1,2,2,2,2,0,2,2,0,0,1,0,0,0,0,0,2,0,0,0,2,2,2,1,0,0,0,0,2,0,2,0,0,1,0,0,0,0,0,0,2,1,2,0,0,0,0,0,2,0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0}
Returns: 980218061
10
0
7
{0,1,1,2,1,0,2,1,1,2,0,1,1,1,2,1,1,1,1,1,1,1,2,0,0,2,2,1,1,2,0,0,2,2,1,2,2,1,1,1,0,0,1,1,1,2,1,2,2,1,1,2,1,2,0,0,1,2,1,1,1,2,0,0,1,1,2,0,2,2,2,1,2,1,2,1,1,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,2,1,1,1,1,2,2,2,2,1,0,1,0,0,2,2,1,2,1,2,2,1,1,0,1,2,0,1,1,1,2,2,2,1,2,1,1,1,1,0,2,0,0,2,2,1,2,1,1,1,1,2,1,2,0,0,0,1,0,2,1,0,0,1,1,0,0,2,2,2,1,1,2,0,2,1,0,2,2,1,2,2,1,2,1,2,2}
Returns: 779506781
2
6
10
{2,1,0,2,1,1,1,2,0,2,2,0,0,1,1,1,2,1,1,0,0,0,1,0,0,0,0,2,1,2,2,0,1,1,1,2,2,1,0,0,1,0,0,2,0,2,2,1,2,0,1,1,0,0,1,0,0,1,2,0,1,0,1,1,1,0,1,2,1,2,2,0,2,0,1,1,1,2,2,2,1,1,1,1,2,0,1,1,0,0,1,0,1,0,1,1,2,0,1,1,0,1,1,0,0,1,2,0,2,0,0,0,1,2,2,2,2,0,0,1,1,1,0,0,1,0,0,2,1,0,0,1,0,0,0,2,1,1,2,0,2,2,0,2,1,2,2,2,2,0,1,1,2,0,0,0,2,0,0,0,1,2,2,0,0,1,2,0,1,2,2,1,2,0,2,0,1,1,1,0,2,1,0,0,0,2,0,2,1,1,1,0,1,2,1,0,1,0,0,0,0,1,2,1,1,1,1,0,2,1,1,1,1,2,2,2,0,0,2,1,2,0,0,1,0,2,2,1,0,2,1,0,2,1,1,0,2,0,1,2,0,2,0,0,0,2,0,0,0,1,0,1,2,0,1,1,1,0,0,1,0,0,2,0,0,0,1,1,1,1,2,1,0,1,2,1}
Returns: 496980174
6
11
9
{1,0,0,1,1,1,0,0,2,1,0,2,0,1,1,1,0,0,2,1,2,2,0,1,1,0,2,1,0,0,0,1,0,2,0,1,1,1,0,2,1,1,1,0,2,1,1,2,1,0,2,2,1,2,2,1,2,1,1,1,0,0,0,2,1,1,2,1,1,2,2,0,1,2,0,2,0,1,1,1,0,2,0,0,1,2,1,0,2,0,1,0,2,2,0,2,1,1,2,0,0,1,0,2,0,0,0,0,2,2,2,1,1,0,2,1,1,1,1,1,2,1,2,1,2,2,2,2,1,1,0,2,0,2,2,1,2,2,0,1,0,1,1,2,2,0,2,1,2,0,2,0,0,1,1,1,0,1,1,0,1,1,1,0,2,2,1,1,2,1,1,0,1,1,1,2,2,2,1,0,2,1,0,1,1,0,2,1,1,1,1,1,1,2,2,2,0,1,2,0,2,0,0,0,0,1,0,0,0,0,0,2,2,2,2,2,0,1,1,0,0,1,0,0,0,0,2,1,1,2,1,0,1,2,1,1,0,1,2,1,1,1,0,1,0,0,2,2,2,1,2,2,2,2,0,2,1,1,0,2,0,1,2,1,1,1,1,0,0,2,1,1,1,0,0,0,2,0,0,2,2,1,2,1,1,2,2,0,0,1,0,2,2,0,2,2,1,2,2,0,0,0,0,2,1,1,0,1,2,0,1,1,1,1,2,1,1,1,0,0,1,2,1,2,0,2,2,2,2,1,2,0,2,2,1,1,1,2,2,0,0,2,0,0,2,2,1,2,2,2,0,1,0,1,2,1,1,2,1,0,1,2,0,0,1,2,1,0,1,2,0,1,2,0,1,1,2,2,0,2,1,2,2,2}
Returns: 926772991
3
3
7
{2,1,1,1,0,1,1,1,2,1,1,2,0,1,0,1,2,1,1,1,1,1,0,1,1,1,1,1,1,0,2,0,0,1,0,1,1,0,1,1,0,1,1,1,1,2,2,1,0,2,1,1,1,0,1,0,1,1,2,0,2,1,1,1,0,0,1,1,1,1,1,1,2,0,0,2,0,0,1,0,0,0,1,0,0,2,1,1,1,1,1,2,1,2,1,0,1,1,1,2,0,1,1,1,0,0,0,0,1,1,2,1,0,1,2,1,1,0,1,2,0,0,1,0,0,1,1,0,1,0,1,0,0,1,2,1,1,1,0,2,2,0,0,1,1,0,1,2,2,1,0,2,0,0,0,1,2,0,0,1,1,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,0,1,0,1,0,1,1,0,0,1,1,0,1,1,0,1,1,0,0,0,1,1,1,0,0,1,0,2,1,1,1,0,2,0,0,1,1,1,0,1,1,1,1,0,1,1,0,1,0,1,0,1,1,1,1,0,0,2,0,1,1,1,0,1,0,1,1,1,2,0,0,1,1,1,0}
Returns: 100433697
9
0
8
{0,1,0,0,1,0,1,0,1,1,0,1,0,1,1,0,0,1,0,2,0,1,2,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,0,0,1,0,0,1,1,0,1,0,1,0,0,1,1,2,0,1,1,1,0,1,1,0,0,1,0,1,1,0,1,0,1,1,1,0,2,0,2,1,1,0,0,0,2,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,2,0,1,1,1,1,1,1,1,1,2,0,1,1,1,1,1,0,1,1,1,0,2,0,0,2,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,1,2,1,1,0,0,0,1,1,1,1,1,1,1,1,0,1,2,0,1,1,1,1,0,1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,0,2,0,1,0,0,2,1,1,1,0,1,1,0,0,0,2,1,0,0,1,1,0,2,0,1,2,1,1}
Returns: 295678834
11
2
12
{0,1,1,0,1,0,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,2,0,2,0,1,0,1,1,1,1,1,1,0,2,0,1,1,0,0,1,2,0,2,1,0,1,1,0,1,1,1,1,0,1,0,1,2,1,1,0,1,1,0,1,1,0,1,0,0,1,0,1,1,1,0,0,1,1,1,1,1,0,0,1,0,1,0,1,1,1,2,2,0,1,0,1,0,0,2,1,2,1,1,0,1,1,1,1,2,0,1,1,0,2,1,1,0,1,0,2,0,1,1,1,0,1,1,0,0,0,0,1,0,0,1,1,1,1,1,2,1,0,1,1,1,1,0,2,2,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,0,0,1,1,2,0,1,1,2,0,1,0,1,1,0,1,1,0,0,0,1,0,1,0,0,1,2,1,1,2,1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0}
Returns: 975447889
10
1
5
{1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,1,1,0,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,2,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,0,1,1,1,1,1,0,1,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1}
Returns: 804488399