Statistics

Problem Statement for "RockPaperScissorsMagic"

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 int[] card. Each element of card is between 0 and 2, inclusive. Each of the numbers represents one type of pictures. (For example, it is possible that each 0 is a rock, each 1 are scissors, and each 2 is a paper.)

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 ints win, lose, tie, and the arrangement of Bob's cards. Let X be the number of ways in which Alice can perform the above trick and be sure that it succeeds. Two ways are considered different if she either announces a different final score, or if she chooses a different sequence of cards. Return the value (X modulo 1,000,000,007).

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

  1. 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. 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.

  3. 0

    0

    0

    {1,0,2,2,2,0}

    Returns: 729

  4. 514

    451

    145

    {0,0,0,0,0,1,1,1,1,1,1,2,2,2}

    Returns: 0

  5. 3

    6

    9

    {0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2}

    Returns: 2336040

  6. 514

    451

    145

    {0,0,0,1,1,1,1,1,1,2,2,2,2,2,2}

    Returns: 116100

  7. 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

  8. 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

  9. 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

  10. 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

  11. 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

  12. 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

  13. 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

  14. 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

  15. 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

  16. 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

  17. 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

  18. 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

  19. 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

  20. 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

  21. 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

  22. 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

  23. 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

  24. 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

  25. 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

  26. 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

  27. 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

  28. 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

  29. 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

  30. 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

  31. 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

  32. 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

  33. 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

  34. 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

  35. 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

  36. 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

  37. 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

  38. 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

  39. 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

  40. 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

  41. 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

  42. 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

  43. 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

  44. 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

  45. 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

  46. 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

  47. 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

  48. 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

  49. 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

  50. 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

  51. 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

  52. 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

  53. 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

  54. 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

  55. 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

  56. 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

  57. 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

  58. 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

  59. 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

  60. 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

  61. 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

  62. 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

  63. 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

  64. 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

  65. 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

  66. 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

  67. 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

  68. 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

  69. 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

  70. 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

  71. 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

  72. 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

  73. 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

  74. 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

  75. 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

  76. 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

  77. 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

  78. 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

  79. 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

  80. 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

  81. 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

  82. 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

  83. 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

  84. 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

  85. 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

  86. 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

  87. 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

  88. 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

  89. 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

  90. 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

  91. 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

  92. 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

  93. 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

  94. 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

  95. 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

  96. 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

  97. 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

  98. 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

  99. 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

  100. 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

  101. 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


This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2024, TopCoder, Inc. All rights reserved.
This problem was used for: