diff options
author | Anthony Wang | 2021-02-08 17:24:36 -0600 |
---|---|---|
committer | Anthony Wang | 2021-02-08 17:24:36 -0600 |
commit | a665306847b51343292a39160c1da1552d9e91a0 (patch) | |
tree | 0ab5caf3948dd698585c8b8197232fa59b2f162e | |
parent | 7ca81e8f8022abd247b267fb17a60ef59b348c8f (diff) |
Add some more 3 stuff
-rwxr-xr-x | ai/3.py | 32 | ||||
-rw-r--r-- | ai/re | 2 |
2 files changed, 21 insertions, 13 deletions
@@ -83,17 +83,22 @@ class spaceship_bot: # now check all moves score = [] + it = math.atan2(y,x) + low,high = it-math.pi,it+math.pi for move in self.moves: a,b = x+move[0],y+move[1] - angle = math.atan2(y, x)-math.atan2(b, a) + angle = math.atan2(b, a) + while angle > high: angle -= 2*math.pi + while angle < low: angle += 2*math.pi + angle = it-angle v = oc.get((a, b)) if v == None: v = 0 - if status == 1: - score.append(angle-v/2) # adjust this constant + if status == -1: + score.append(angle-2*v-math.sqrt(a*a+b*b)/64) # adjust this constant else: - score.append(-angle-v/2) # same + score.append(-angle-2*v-math.sqrt(a*a+b*b)/64) # same - idx = score.index(min(score)) + idx = score.index(max(score)) return (self.moves[idx][0], self.moves[idx][1]) @@ -113,22 +118,25 @@ LOCAL_VIEW = True # The first ship will be displayed as "1", other ships will be displayed as "0", # crashed ships will be displayed as "X", and the sun will be displayed as "S". -SIDE = 10 +SIDE = 20 # Set a list of (arbitrarily many) strategies you would like to test locally LOCAL_STRATS = [ - #spaceship_bot(), - #spaceship_bot(), - #spaceship_bot(), - #spaceship_bot(), - #spaceship_bot(), + spaceship_bot(), + spaceship_bot(), + spaceship_bot(), + spaceship_bot(), + spaceship_bot(), + spaceship_bot(), + spaceship_bot(), + spaceship_bot(), spaceship_bot() ] # Set how many rounds you would like the game to run for (official is 500) -ROUNDS = 10 +ROUNDS = 50 #============================================================================= @@ -1 +1 @@ -{"seat": 31, "gamedata": [{"round": 1, "state": [[1, 33, -1, 0], [7, 33, 1, 0], [13, 31, -1, 0], [19, 27, 1, 0], [23, 23, -1, 0], [27, 19, 1, 0], [31, 13, -1, 0], [33, 7, 1, 0], [33, 1, -1, 0], [33, -5, 1, 0], [32, -10, -1, 0], [30, -16, 1, 0], [25, -21, -1, 0], [21, -25, 1, 0], [17, -29, -1, 0], [12, -32, 1, 0], [5, -33, -1, 0], [-1, -33, 1, 0], [-7, -33, -1, 0], [-13, -31, 1, 0], [-18, -28, -1, 0], [-23, -25, 1, 0], [-27, -19, -1, 0], [-31, -13, 1, 0], [-33, -7, -1, 0], [-33, -1, 1, 0], [-32, 4, -1, 0], [-32, 10, 1, 0], [-29, 17, -1, 0], [-27, 21, 1, 0], [-21, 25, -1, 0], [-16, 30, 1, 0], [-10, 32, -1, 0], [-5, 33, 1, 0]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": [-2, 1], "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [1, 2], "using": [1, 2]}, {"seat": 20, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-33, -1, 1, 0], "error": "invalid coords", "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 2, "state": [[-1, 32, -1, -0.00979337554770685], [9, 34, 1, -0.00791763201708973], [12, 29, -1, -0.0007542831824570049], [17, 28, 1, 0.010751281562606133], [22, 21, -1, 0.003700610705193437], [25, 20, 1, 0.009793375547706816], [30, 11, -1, 0.007262980318165274], [32, 9, 1, 0.010368070513367751], [32, 3, -1, -0.010055890149796671], [31, -4, 1, 0.0035090800674215366], [31, -12, -1, 0.010575653279352648], [28, -15, 1, -0.0002947310391839344], [23, -20, -1, 0.002718965638001457], [22, -23, 1, 0.010268640855704426], [19, -30, -1, -0.00546754857798247], [14, -33, 1, 0.006757421062492136], [4, -31, -1, 0.0035090800674215453], [0, -31, 1, 0.004821401635912198], [-6, -31, -1, -0.002839082780013944], [-14, -29, 1, -0.00838430911541967], [-17, -26, -1, 0.0012313482980143386], [-21, -24, 1, 0.003967030010837651], [-28, -17, -1, 0.010751281562606116], [-29, -14, 1, 0.00838430911541967], [-35, -6, -1, 0.00624598303556046], [-35, -2, 1, 0.004263287039597754], [-30, 5, -1, 0.006492516275343986], [-30, 9, 1, 0.00181883445074363], [-27, 16, -1, 0.0007542831824570049], [-25, 20, 1, -0.0021800683416441386], [-19, 26, -1, 0.010755760644670457], [-15, 28, 1, 0.0002947310391839256], [-9, 30, -1, 0.0018188344507435947], [-4, 35, 1, -0.005821795645853129]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": [-2, 1], "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 20, "got": "", "error": "process exited", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process exited", "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 3, "state": [[-2, 34, -1, -0.014172681256550548], [11, 33, 1, -0.017941156607551807], [11, 27, -1, -0.0016239736686254808], [15, 29, 1, 0.02162310354679378], [20, 20, -1, 0.0], [23, 21, 1, 0.02017567983495711], [29, 9, -1, 0.015304213732910165], [33, 7, 1, 0.0], [34, 4, -1, -0.013817033941190401], [29, -3, 1, 0.007526408528871146], [30, -14, -1, 0.02128574678288528], [26, -14, 1, -0.0006340800837595091], [21, -19, -1, 0.005853709727773777], [23, -21, 1, 0.021034174807250304], [20, -28, -1, -0.014329310501683429], [16, -32, 1, 0.01669168321526258], [3, -29, -1, 0.007526408528871133], [1, -29, 1, 0.01030732944391768], [-7, -29, -1, 0.00442861650266148], [-15, -27, 1, -0.017510077100804163], [-16, -24, -1, 0.0026523368163116085], [-19, -23, 1, 0.008484411112824188], [-29, -19, -1, 0.005284672191489657], [-27, -15, 1, 0.017510077100804163], [-37, -5, -1, 0.011889113117185544], [-37, -3, 1, 0.008054885661039615], [-28, 6, -1, 0.013804835355861939], [-28, 8, 1, 0.00391285759816236], [-25, 17, -1, 0.01065715589185847], [-23, 19, 1, -0.004679678660823076], [-17, 27, -1, 0.021762570381045707], [-14, 26, 1, 0.0006340800837594562], [-8, 32, -1, 0.009216058800930111], [-3, 37, 1, -0.011056068770170777]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [-1, -2], "using": [-1, -2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": [-2, 1], "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 17, "got": [1, 2], "using": [1, 2]}, {"seat": 18, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 20, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-35, -2, 1, 0.004263287039597754], "error": "invalid coords", "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 4, "state": [[-3, 36, -1, -0.018053739665707138], [10, 31, 1, -0.01639601153232773], [10, 25, -1, -0.0026376857123217076], [13, 30, 1, 0.03251527846713953], [19, 18, -1, 0.004300438052716573], [22, 23, 1, 0.030941213786502983], [28, 7, -1, 0.024207591319058766], [35, 6, 1, -0.00624598303556042], [32, 3, -1, -0.010055890149796671], [27, -2, 1, 0.012164592736403534], [29, -16, -1, 0.03203488091847052], [24, -13, 1, -0.0010290046903066482], [19, -18, -1, 0.009504397303145385], [21, -20, 1, 0.01768589376501855], [21, -26, -1, -0.023745604392844316], [18, -33, 1, 0.02237337346217152], [4, -27, -1, 0.0005241087852317552], [2, -27, 1, 0.016589164966631195], [-5, -28, -1, -0.005142946635570926], [-16, -25, 1, -0.027411852023347776], [-15, -22, -1, 0.004310140847503838], [-17, -22, 1, 0.013666154174783427], [-30, -17, -1, 0.01554280777043765], [-25, -16, 1, 0.027411852023347703], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-26, 5, -1, 0.010445863071547063], [-26, 9, 1, -0.004831853789511934], [-23, 16, -1, 0.01234823095996793], [-21, 18, 1, -0.007573086094184063], [-15, 28, -1, 0.03292130322758478], [-13, 24, 1, 0.0010290046903066307], [-7, 34, -1, 0.015889973992558017], [-2, 39, 1, -0.015777707604841505]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 20, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 5, "state": [[-5, 35, -1, -0.027405019286345485], [9, 33, 1, -0.009108295163484485], [9, 23, -1, -0.0038343168706790097], [11, 31, 1, 0.04332649477440901], [17, 17, -1, 0.0], [20, 24, 1, 0.041833988474497694], [27, 5, -1, 0.03405416480682232], [34, 8, 1, 0.0035121874193995836], [34, 2, -1, -0.004529877984726147], [25, -1, 1, 0.017569550393126618], [28, -18, -1, 0.04272556009957299], [22, -12, 1, -0.0014943686947562849], [17, -17, -1, 0.013804835355861958], [19, -19, 1, 0.013804835355861958], [22, -28, -1, -0.021605834933335323], [20, -34, 1, 0.027526388055212257], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, -27, -1, -0.015655390828592908], [-17, -23, 1, -0.03810627235351176], [-14, -20, -1, 0.006268872017919666], [-15, -21, 1, 0.01965660604899118], [-31, -15, -1, 0.025870003007573257], [-23, -17, 1, 0.03810627235351176], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-24, 6, -1, 0.019197853108401934], [-24, 8, 1, -0.0030025671851686034], [-21, 17, -1, 0.02392185564204758], [-19, 17, 1, -0.01095885063621549], [-14, 26, -1, 0.03258195418300925], [-12, 22, 1, 0.001494368694756232], [-6, 36, -1, 0.02192139563398806], [-1, 41, 1, -0.020051297657965927]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 20, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 6, "state": [[-6, 33, -1, -0.03344597516026229], [7, 32, 1, -0.00100820787256343], [8, 21, -1, -0.005268106397803561], [9, 32, 1, 0.05395987563305524], [16, 15, -1, 0.005132250738873868], [18, 25, 1, 0.05308866580179894], [26, 3, -1, 0.04491397691002673], [36, 7, 1, -0.002701643312371808], [35, 0, -1, 0.0048214016359121896], [23, 0, 1, 0.023932356067122535], [27, -20, -1, 0.05326341869645512], [20, -11, 1, -0.0020508522420002824], [15, -16, -1, 0.018937086094735843], [17, -18, 1, 0.009258788018037735], [23, -30, -1, -0.01971403763886952], [22, -35, 1, 0.032211805338052436], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, -26, -1, -0.027148706340104307], [-18, -21, 1, -0.04958421750615788], [-13, -18, -1, 0.008617851894918602], [-13, -20, 1, 0.026639412260595997], [-33, -16, -1, 0.02574398961894755], [-21, -18, 1, 0.0495842175061578], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-22, 5, -1, 0.015775693656624908], [-22, 9, 1, -0.013597219502641802], [-19, 16, -1, 0.027004948707899677], [-17, 16, 1, -0.014970310444370579], [-13, 24, -1, 0.03218702957646208], [-11, 20, 1, 0.0020508522420002733], [-7, 34, -1, 0.015889973992558017], [0, 43, 1, -0.023932356067122552]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 8, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 20, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 7, "state": [[-4, 34, -1, -0.023459837213014798], [5, 33, 1, 0.009334678500109028], [7, 19, -1, -0.007016991421165405], [7, 33, 1, 0.06432794614642298], [14, 14, -1, 0.0], [16, 26, 1, 0.06460640193565406], [27, 1, -1, 0.05730522207257272], [35, 5, 1, -0.010683416916798263], [34, -2, -1, 0.014172681256550527], [21, 1, 1, 0.03150544216130661], [26, -22, -1, 0.06356203798059028], [18, -10, 1, -0.0027281032311783017], [13, -15, -1, 0.02515377085579218], [18, -16, 1, 0.02315611497650029], [24, -28, -1, -0.02839491287121144], [24, -36, 1, 0.03648339529554534], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [1, -25, -1, -0.03962984024122744], [-19, -19, 0, -0.06180284349225656], [-12, -16, -1, 0.011485198260378932], [-11, -19, 1, 0.03484853652152429], [-31, -17, -1, 0.01776221601452113], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-20, 6, -1, 0.02659507745858838], [-20, 8, 1, -0.012353846805806954], [-17, 15, -1, 0.030679276704539717], [-15, 15, 1, -0.01979171208028281], [-12, 22, -1, 0.031721665572012475], [-10, 18, 1, 0.0027281032311782575], [-8, 32, -1, 0.009216058800930111], [1, 45, 1, -0.027468550567280085]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [1, -2], "using": [1, -2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 8, "state": [[-5, 32, -1, -0.02948989927624622], [6, 31, 1, 0.0028390827800139446], [6, 17, -1, -0.009197059762809543], [5, 34, 1, 0.07435640814689737], [13, 12, -1, 0.0063628056739959095], [14, 27, 1, 0.07627286529240543], [26, -1, -1, 0.06931548473487066], [36, 7, 1, -0.0027016433123718073], [35, 0, -1, 0.00482140163591219], [19, 2, 1, 0.04062403928238511], [25, -24, -1, 0.07354676676619795], [16, -9, 1, -0.0035701850192731057], [11, -14, -1, 0.032812539279836794], [16, -15, 1, 0.018937086094735826], [25, -30, -1, -0.02618456966915791], [26, -35, 1, 0.044586193313955656], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, -24, -1, -0.026639412260595928], [-19, -19, 0, -0.06180284349225656], [-11, -14, -1, 0.015061111986837373], [-9, -18, 1, 0.044580568868147805], [-29, -16, -1, 0.0173544758055693], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-18, 5, -1, 0.023330818466256856], [-19, 6, 1, -0.0004765103818376668], [-15, 16, -1, 0.04574578959618405], [-13, 14, 1, -0.02568364651545352], [-11, 20, -1, 0.031165182024768433], [-9, 16, 1, 0.0035701850192730793], [-6, 31, -1, 0.017777672202397184], [2, 47, 1, -0.030700823419372917]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 9, "state": [[-3, 31, -1, -0.020175679834957133], [5, 33, 1, 0.009334678500109028], [5, 15, -1, -0.011988965332960056], [3, 35, 1, 0.08398639056424409], [11, 11, -1, 0.0], [12, 28, 1, 0.08796449008176715], [24, 0, -1, 0.06319715650774342], [37, 5, 1, -0.011889113117185516], [36, -2, -1, 0.013654263079979507], [17, 3, 1, 0.051732299960015146], [24, -26, -1, 0.08315718168438115], [14, -8, 1, -0.004645539891914626], [9, -13, -1, 0.04242940888021206], [14, -14, 1, 0.013804835355861958], [26, -28, -1, -0.034721604422139445], [28, -34, 1, 0.05254559619100101], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, -23, -1, -0.012624234647307902], [-19, -19, 0, -0.06180284349225656], [-10, -12, -1, 0.019639846722660014], [-7, -17, 1, 0.056205335882365606], [-31, -17, -1, 0.01776221601452113], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-16, 6, -1, 0.037308413529671326], [-17, 5, 1, 0.0026791230617404043], [-13, 15, -1, 0.051962474357240364], [-11, 13, 1, -0.03302405011007775], [-10, 18, -1, 0.03048793103559045], [-8, 14, 1, 0.0046455398919146166], [-5, 33, -1, 0.024273267922492233], [3, 49, 1, -0.033664388413746034]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 10, "state": [[-2, 29, -1, -0.01578025227212764], [7, 34, 1, 0.000951384570174775], [4, 13, -1, -0.015689576038153494], [1, 36, 1, 0.09317514662700292], [10, 9, -1, 0.008368854178287057], [10, 29, 1, 0.09955611362643246], [23, -2, -1, 0.07700199186360537], [35, 6, 1, -0.006245983035560419], [38, -3, -1, 0.017360258463693472], [15, 4, 1, 0.06540851489528242], [23, -28, -1, 0.09234809638960904], [12, -7, 1, -0.006066528410211967], [7, -12, -1, 0.054759176568280686], [12, -13, 1, 0.007442029681866031], [27, -26, -1, -0.043616106042478724], [30, -35, 1, 0.05568124840394722], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-5, -22, -1, 0.002300371169676102], [-19, -19, 0, -0.06180284349225656], [-9, -10, -1, 0.0256999617325252], [-5, -16, 1, 0.07016675370374967], [-32, -19, -1, 0.012317973628058976], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-14, 7, -1, 0.054000096744933904], [-15, 6, 1, -0.012353846805806954], [-11, 14, -1, 0.059621242781285014], [-9, 12, 1, -0.0423753297307161], [-9, 16, -1, 0.02964584924749563], [-7, 12, 1, 0.006066528410211956], [-3, 32, -1, 0.03332833220390592], [4, 51, 1, -0.03638959498252429]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [-1, -2], "using": [-1, -2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 11, "state": [[-1, 31, -1, -0.009953652374786074], [6, 32, 1, 0.003767992133467291], [3, 11, -1, -0.02082182677702738], [-1, 37, 1, 0.10189541876637111], [8, 8, -1, 0.0], [8, 30, 1, 0.11092886045818558], [21, -1, -1, 0.07077024260192749], [33, 5, 1, -0.009334678500109005], [37, -1, -1, 0.009121839688628766], [13, 5, 1, 0.08236988669329426], [22, -30, -1, 0.1010892711841497], [10, -6, 1, -0.008031304433946018], [5, -11, -1, 0.07090496096581603], [13, -11, 1, 0.0270371733856569], [28, -24, -1, -0.05283216484340885], [32, -36, 1, 0.05854859476940758], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-7, -21, -1, 0.017941156607551845], [-19, -19, 0, -0.06180284349225656], [-10, -8, -1, 0.051680459649450894], [-3, -15, 1, 0.08695589859886384], [-33, -21, -1, 0.007397224350186521], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-12, 8, -1, 0.07379180882521665], [-14, 4, 1, 0.003912857598162359], [-9, 15, -1, 0.07960310404599484], [-7, 11, 1, -0.05459395571681478], [-8, 14, -1, 0.028570494374854094], [-6, 10, 1, 0.008031304433945972], [-1, 33, -1, 0.04338422235370259], [5, 53, 1, -0.038902666511493135]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 12, "state": [[-2, 33, -1, -0.014455371799570925], [4, 33, 1, 0.014069181458829646], [2, 9, -1, -0.028394912871211445], [-3, 38, 1, 0.11013383754143583], [7, 6, -1, 0.012218625986098696], [6, 31, 1, 0.12197706749912784], [19, 0, -1, 0.06319715650774342], [34, 3, 1, -0.019260226041756784], [35, -2, -1, 0.013906090311422092], [11, 6, 1, 0.10340585513924816], [21, -32, -1, 0.109364131608066], [8, -5, 1, -0.010924711867307056], [3, -10, -1, 0.09241804581699081], [11, -10, 1, 0.021377921450046022], [29, -26, -1, -0.04928612347429823], [34, -35, 1, 0.06559344248377368], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-9, -20, -1, 0.034032257982641145], [-19, -19, 0, -0.06180284349225656], [-11, -6, -1, 0.07959531683868663], [-1, -14, 1, 0.10702344219343421], [-31, -20, -1, 0.006404586848619798], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-10, 9, -1, 0.09683943374143017], [-12, 3, 1, 0.009216058800930075], [-7, 14, -1, 0.09182173003209351], [-5, 10, 1, -0.07099990325506617], [-7, 16, -1, 0.04555800428120246], [-5, 8, 1, 0.010924711867307028], [1, 34, -1, 0.052885302650437796], [6, 55, 1, -0.041226325690527456]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [1, -2], "using": [1, -2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 13, "state": [[-3, 35, -1, -0.01842999178532267], [5, 31, 1, 0.007816070551337925], [1, 7, -1, -0.04061353885731016], [-5, 39, 1, 0.11788875719507351], [6, 4, -1, 0.0314164790945006], [4, 32, 1, 0.13261330720606268], [18, -2, -1, 0.08080880024638207], [36, 4, 1, -0.015655390828592904], [36, 0, -1, 0.004821401635912189], [9, 7, 1, 0.12914064398683978], [20, -34, -1, 0.1171678623452189], [6, -4, 1, -0.01560439052813008], [1, -9, -1, 0.12119319161722333], [9, -9, 1, 0.01380483535586196], [30, -28, -1, -0.046099466665315635], [36, -34, 1, 0.07244592172787014], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-11, -19, -1, 0.050256806604608614], [-19, -19, 0, -0.06180284349225656], [-10, -4, -1, 0.09850934511539051], [1, -13, 1, 0.13059100367946314], [-32, -22, -1, 0.001737972414575642], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-8, 10, -1, 0.12281993165835586], [-10, 2, 1, 0.016789144895114207], [-5, 13, -1, 0.10717600823113842], [-3, 9, 1, -0.09358352090549943], [-5, 15, -1, 0.05998697346935467], [-4, 6, 1, 0.015604390528130034], [2, 36, -1, 0.05703848543368211], [7, 57, 1, -0.04338032150460962]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 14, "state": [[-5, 36, -1, -0.026785742477463476], [7, 30, 1, -0.003216360728313777], [3, 6, -1, 0.010594652317473231], [-7, 40, 1, 0.12516788489879815], [7, 2, -1, 0.08070723360854763], [2, 33, 1, 0.14277104912268673], [16, -1, -1, 0.07313141866051386], [34, 3, 1, -0.019260226041756784], [38, -1, -1, 0.009008723188064878], [7, 8, 1, 0.15952700838459574], [19, -36, -1, 0.12450521938745951], [4, -3, 1, -0.024437251972197406], [-1, -8, -1, 0.15859654743614476], [7, -8, 1, 0.0032101830383887437], [31, -30, -1, -0.04322240259546453], [37, -32, 1, 0.07941271811533562], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-13, -18, -1, 0.06628200141687483], [-19, -19, 0, -0.06180284349225656], [-11, -2, -1, 0.13044424238646216], [3, -12, 1, 0.1573619428820491], [-33, -20, -1, 0.010877195257136827], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-6, 9, -1, 0.13662476701421788], [-8, 1, 1, 0.02841391190933201], [-3, 12, -1, 0.1266239736686255], [-1, 8, 1, -0.12500000000000006], [-3, 14, -1, 0.07759861720799331], [-3, 4, 1, 0.024437251972197357], [1, 38, -1, 0.05239294554176746], [8, 59, 1, -0.045381872178597495]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 15, "state": [[-7, 37, -1, -0.03458007669922064], [6, 32, 1, 0.0037679921334672906], [2, 4, -1, 0.010594652317473231], [-9, 41, 1, 0.1319859721825634], [6, 0, -1, 0.125], [0, 34, 1, 0.15240501928634548], [14, 0, -1, 0.06319715650774343], [32, 4, 1, -0.013475322486948771], [36, -2, -1, 0.013654263079979505], [5, 9, 1, 0.19322512245857493], [18, -38, -1, 0.13138833172719996], [6, -4, 1, -0.015604390528130082], [-3, -7, -1, 0.2032453645604403], [8, -6, 1, 0.03638845300629523], [32, -32, -1, -0.04061353885731015], [36, -30, 1, 0.08232884357819817], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-15, -17, -1, 0.08179870327999808], [-19, -19, 0, -0.06180284349225656], [-12, 0, -1, 0.15906881591081223], [4, -10, 1, 0.17893184848878618], [-31, -19, -1, 0.010083128715865185], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-4, 8, -1, 0.15641647909450063], [-6, 0, 1, 0.048205623989614754], [-1, 11, -1, 0.15118456966915791], [1, 7, 1, -0.1673753297307161], [-1, 13, -1, 0.09897653865803935], [-4, 2, 1, 0.098229060797414], [2, 36, -1, 0.05703848543368211], [9, 61, 1, -0.04724603714321282]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-1, -2], "using": [-1, -2]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 16, "state": [[-5, 36, -1, -0.026785742477463476], [5, 30, 1, 0.006982806211604853], [3, 2, -1, 0.09321932258675719], [-11, 42, 1, 0.13836273942879346], [7, -2, -1, 0.16929276639145238], [-2, 35, 1, 0.16148970796185538], [13, -2, -1, 0.0874920516815079], [30, 3, 1, -0.017404275851954757], [35, 0, -1, 0.004821401635912189], [3, 10, 1, 0.22754556652825136], [17, -40, -1, 0.13783467598669621], [4, -3, 1, -0.024437251972197406], [-5, -6, -1, 0.2493758661677098], [6, -5, 1, 0.0282338045440142], [34, -33, -1, -0.042988809402495484], [37, -28, 1, 0.08979748360318406], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-17, -16, -1, 0.09655436706868069], [-19, -19, 0, -0.06180284349225656], [-11, 2, -1, 0.18769338943516228], [5, -8, 1, 0.20727621993804085], [-30, -21, -1, 0.00039492460654718016], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-2, 7, -1, 0.18591552152826488], [-5, -2, 1, 0.10876509478503646], [1, 10, -1, 0.18147629757258693], [3, 6, 1, -0.21858352090549948], [1, 12, -1, 0.124427502673933], [-3, 0, 1, 0.17202086962263063], [1, 34, -1, 0.052885302650437796], [10, 63, 1, -0.04898602948762721]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, -2], "using": [1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 17, "state": [[-3, 37, -1, -0.017697688932863963], [7, 31, 1, -0.002078397892275017], [4, 0, -1, 0.1868028434922566], [-13, 43, 1, 0.14432111929710129], [6, -4, -1, 0.21858352090549943], [-3, 33, 1, 0.1668339884744977], [11, -1, -1, 0.07762612569589568], [29, 1, 1, -0.02778110675922605], [36, 2, -1, -0.004011459808155128], [1, 11, 1, 0.2595033868789703], [16, -42, -1, 0.14386532590044535], [5, -5, 1, -0.047020869622630676], [-7, -5, -1, 0.29008906371148874], [4, -4, 1, 0.013804835355861956], [36, -34, -1, -0.045159586195134355], [36, -26, 1, 0.09335083840593957], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -15, -1, 0.11037140100987103], [-19, -19, 0, -0.06180284349225656], [-10, 4, -1, 0.2196282867062339], [6, -6, 1, 0.24337237769336448], [-32, -22, -1, 0.0017379724145756435], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [0, 6, -1, 0.23020828791971726], [-3, -3, 1, 0.17320562398961475], [3, 9, -1, 0.21682173003209354], [5, 5, 1, -0.26979171208028285], [3, 11, -1, 0.1535704943748541], [-4, -2, 1, 0.24581267844784727], [2, 36, -1, 0.05703848543368211], [11, 65, 1, -0.050613478719936274]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 18, "state": [[-1, 36, -1, -0.009241235722563837], [6, 33, 1, 0.00464246104288148], [6, -1, -1, 0.2130870718478833], [-15, 44, 1, 0.1498858418754325], [7, -6, -1, 0.23778137401390131], [-4, 31, 1, 0.17282829528604648], [9, 0, -1, 0.06319715650774343], [27, 0, 1, -0.03326703456723154], [38, 1, -1, 0.0006340800837595006], [-1, 12, 1, 0.28716469409691747], [15, -44, -1, 0.14950351484860722], [3, -4, 1, -0.06960448727306395], [-9, -4, -1, 0.3222423659820337], [2, -3, 1, -0.017611643738638643], [37, -36, -1, -0.042793607198954274], [35, -24, 1, 0.09723601519892477], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-21, -14, -1, 0.12314944452726907], [-19, -19, 0, -0.06180284349225656], [-11, 6, -1, 0.2385423149829378], [7, -4, 1, 0.2857477074240805], [-33, -20, -1, 0.010877195257136828], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [2, 5, -1, 0.29076775871513894], [-1, -4, 1, 0.25921605880093007], [5, 8, -1, 0.2545173811019866], [7, 4, 1, -0.3121670418109989], [5, 10, -1, 0.18498697346935472], [-2, -3, 1, 0.32843734871713126], [0, 37, -1, 0.04820562398961479], [12, 67, 1, -0.052138652123234396]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 8, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, -2], "using": [1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 19, "state": [[0, 38, -1, -0.004821401635912186], [4, 34, 1, 0.014628598990128973], [7, -3, -1, 0.2512433726968349], [-17, 45, 1, 0.15508234386383032], [5, -7, -1, 0.2762842283556267], [-5, 29, 1, 0.17957837215247685], [10, -2, -1, 0.09461363560224403], [29, 1, 1, -0.02778110675922605], [37, 3, -1, -0.008054885661039596], [-3, 13, 1, 0.3100285138224462], [14, -46, -1, 0.1547735063877545], [4, -6, 1, -0.07843734871713127], [-11, -3, -1, 0.34642950562514596], [3, -1, 1, 0.08759664418107857], [38, -38, -1, -0.04061353885731015], [36, -22, 1, 0.10559552545993894], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-23, -13, -1, 0.13485549597930804], [-19, -19, 0, -0.06180284349225656], [-10, 8, -1, 0.2664571721721735], [8, -2, 1, 0.3293828125046798], [-35, -19, -1, 0.018440428996307375], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [4, 4, -1, 0.35520828791971726], [0, -6, 1, 0.29820562398961475], [7, 7, -1, 0.29061353885731017], [9, 3, 1, -0.3435835209054995], [7, 9, -1, 0.2164034525638553], [-1, -5, 1, 0.39060439052813], [-1, 35, -1, 0.043659576651790565], [13, 69, 1, -0.053570641635168885]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 20, "state": [[-2, 39, -1, -0.012976050098193234], [6, 33, 1, 0.00464246104288148], [8, -5, -1, 0.27570668573693297], [-19, 46, 1, 0.1599359622839166], [3, -6, -1, 0.30120819117478337], [-6, 27, 1, 0.18720726292287745], [8, -1, -1, 0.08298886858802622], [31, 0, 1, -0.03326703456723154], [35, 2, -1, -0.004263287039597715], [-5, 14, 1, 0.3285263117839373], [13, -48, -1, 0.15969974253729463], [3, -4, 1, -0.06960448727306395], [-13, -2, -1, 0.36450994018209754], [4, 1, 1, 0.1777944005445466], [39, -40, -1, -0.03859902691547888], [37, -20, 1, 0.1140303759973154], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-25, -12, -1, 0.14550794925414265], [-19, -19, 0, -0.06180284349225656], [-9, 10, -1, 0.2924376700890992], [9, 0, 1, 0.3683723776933645], [-33, -20, -1, 0.010877195257136828], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [5, 2, -1, 0.4196488171242956], [1, -8, 1, 0.31799733606989755], [9, 6, -1, 0.32203001795181074], [11, 2, 1, -0.36616713855593275], [9, 8, -1, 0.2455464442647764], [0, -3, 1, 0.42202086962263063], [-3, 36, -1, 0.03497328595981984], [14, 71, 1, -0.05491752200859003]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 8, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 21, "state": [[0, 40, -1, -0.004821401635912187], [4, 34, 1, 0.014628598990128973], [6, -4, -1, 0.280386364397756], [-21, 47, 1, 0.16447136475554017], [1, -7, -1, 0.35241638234956674], [-7, 25, 1, 0.19585570388970308], [6, -2, -1, 0.1144053476825268], [33, -1, 1, -0.038088436203143734], [34, 0, -1, 0.004821401635912189], [-7, 15, 1, 0.3434237268396227], [12, -50, -1, 0.1643062280081746], [5, -3, 1, -0.008031304433946021], [-15, -1, -1, 0.37821018303838877], [5, 3, 1, 0.22481527016717728], [40, -42, -1, -0.03673248044815354], [38, -18, 1, 0.12249383010686068], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-27, -11, -1, 0.15515978259365054], [-19, -19, 0, -0.06180284349225656], [-7, 11, -1, 0.3188710595473442], [10, 2, 1, 0.3997888567878651], [-32, -18, -1, 0.016045665317012122], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [4, 0, -1, 0.48020828791971726], [0, -6, 1, 0.29820562398961475], [8, 4, -1, 0.3418217300320935], [13, 1, 1, -0.3825730860941841], [11, 7, -1, 0.27099740828067004], [-2, -4, 1, 0.348229060797414], [-5, 37, -1, 0.026827702539568746], [15, 73, 1, -0.056186485022368365]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 22, "state": [[-2, 41, -1, -0.012578908207337973], [3, 36, 1, 0.020034696537436603], [5, -6, -1, 0.32623181268040885], [-23, 48, 1, 0.16871216835654834], [-1, -6, -1, 0.4012842283556267], [-8, 23, 1, 0.20568004158026415], [4, -1, -1, 0.1021867216964281], [34, -3, 1, -0.047273843092706304], [33, -2, -1, 0.014455371799570934], [-9, 16, 1, 0.355481671463765], [11, -52, -1, 0.1686161060424787], [3, -4, 1, -0.06960448727306395], [-17, 0, -1, 0.3888048353558619], [3, 4, 1, 0.28638845300629523], [38, -43, -1, -0.03080160945761324], [37, -16, 1, 0.12794092700889662], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-29, -10, -1, 0.16388405977285544], [-19, -19, 0, -0.06180284349225656], [-5, 10, -1, 0.33527700708559555], [8, 1, 1, 0.38816408977364725], [-31, -20, -1, 0.0064045868486198], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [5, 2, -1, 0.4196488171242956], [2, -7, 1, 0.3424983903810671], [9, 2, -1, 0.38081129522077817], [15, 0, 1, -0.3947917120802828], [10, 5, -1, 0.28740335581892146], [0, -3, 1, 0.42202086962263063], [-4, 39, -1, 0.03193891958564543], [16, 75, 1, -0.05738395368624749]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 23, "state": [[-3, 39, -1, -0.0170400276220109], [2, 38, 1, 0.024898180388944487], [3, -7, -1, 0.3723623142876783], [-25, 49, 1, 0.1726807036576628], [-3, -7, -1, 0.43944052920457827], [-9, 21, 1, 0.21684554849092377], [5, -3, -1, 0.14920759131905878], [35, -5, 1, -0.055850652217664824], [31, -3, -1, 0.020175679834957112], [-11, 17, 1, 0.3653358086309779], [10, -54, -1, 0.1726513843094641], [5, -5, 1, -0.047020869622630676], [-19, 1, -1, 0.39717368953414894], [1, 3, 1, 0.3375966441810786], [36, -44, -1, -0.024750780142033357], [36, -14, 1, 0.13387069242578695], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-31, -9, -1, 0.17176294805213807], [-19, -19, 0, -0.06180284349225656], [-3, 11, -1, 0.3666934861800961], [9, 3, 1, 0.4195805688681478], [-33, -21, -1, 0.007397224350186523], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [4, 0, -1, 0.48020828791971726], [0, -6, 1, 0.29820562398961475], [8, 0, -1, 0.4156135388573101], [17, -1, 1, -0.40414299170092116], [11, 3, -1, 0.31881983491342203], [2, -4, 1, 0.49581267844784727], [-2, 38, -1, 0.03983676981132772], [17, 77, 1, -0.05851567969991866]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 8, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, 2], "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 24, "state": [[-2, 37, -1, -0.013416007355126401], [4, 37, 1, 0.016127659303260412], [2, -9, -1, 0.4020005998557246], [-27, 50, 1, 0.17639788708387277], [-5, -6, -1, 0.48557103081184777], [-10, 19, 1, 0.22951207651151223], [6, -5, -1, 0.1737681873195912], [37, -4, 1, -0.05040640983120268], [32, -1, -1, 0.009793375547706826], [-13, 18, 1, 0.373481392051229], [9, -56, -1, 0.1764327746707222], [6, -3, 1, 0.0041873215521526855], [-21, 2, -1, 0.4039168687753217], [-1, 4, 1, 0.42779440054454665], [34, -45, -1, -0.01859429807206127], [37, -12, 1, 0.14298559733405422], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-33, -8, -1, 0.17888020193306978], [-19, -19, 0, -0.06180284349225656], [-1, 10, -1, 0.39320605719553536], [7, 2, 1, 0.4126651440848168], [-31, -20, -1, 0.0064045868486198], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [5, -2, -1, 0.5407677587151389], [2, -7, 1, 0.3424983903810671], [9, -2, -1, 0.45041578249384207], [19, -2, 1, -0.4114833952955454], [10, 1, -1, 0.3453324059288613], [0, -3, 1, 0.42202086962263063], [-3, 36, -1, 0.03497328595981984], [18, 79, 1, -0.059586826862682095]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [1, -2], "using": [1, -2]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 25, "state": [[0, 36, -1, -0.004821401635912185], [5, 35, 1, 0.010683416916798291], [0, -10, -1, 0.43680284349225657], [-29, 51, 1, 0.1798831716891373], [-6, -4, -1, 0.5314164790945006], [-11, 17, 1, 0.2438084718502008], [5, -7, -1, 0.21448138486337018], [38, -6, 1, -0.058190997386388194], [34, 0, -1, 0.004821401635912189], [-15, 19, 1, 0.38029392049002003], [8, -58, -1, 0.1799796168382235], [5, -5, 1, -0.047020869622630676], [-23, 3, -1, 0.4094476352757856], [-3, 3, 1, 0.513804835355862], [32, -46, -1, -0.012348230959967905], [36, -10, 1, 0.14977734384350633], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-35, -7, -1, 0.18531648633826792], [-19, -19, 0, -0.06180284349225656], [1, 11, -1, 0.4234977850989644], [5, 1, 1, 0.399788856787865], [-33, -21, -1, 0.007397224350186523], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [6, -4, -1, 0.5737918088252166], [3, -5, 1, 0.38421605880093007], [10, -4, -1, 0.4761730096527318], [21, -3, 1, -0.4173753297307161], [8, 0, -1, 0.36119516464413803], [2, -4, 1, 0.49581267844784727], [-1, 35, -1, 0.04365957665179056], [19, 81, 1, -0.06060204266630471]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-1, -2], "using": [-1, -2]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 8, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 26, "state": [[-1, 34, -1, -0.009501080296735225], [4, 33, 1, 0.014069181458829648], [-2, -9, -1, 0.4716050871287885], [-31, 52, 1, 0.18315455286959018], [-7, -2, -1, 0.5807072336085476], [-12, 15, 1, 0.2597933755477069], [3, -8, -1, 0.2560970308977894], [36, -5, 1, -0.05523137540878282], [32, 1, -1, -0.0001505722758824487], [-17, 20, 1, 0.38605606877017085], [7, -60, -1, 0.18330986199370022], [3, -4, 1, -0.06960448727306395], [-25, 4, -1, 0.4140556045803684], [-4, 1, 1, 0.5998152701671773], [30, -47, -1, -0.006030215224514017], [37, -8, 1, 0.15900968348065486], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-37, -6, -1, 0.19114678059716664], [-19, -19, 0, -0.06180284349225656], [3, 10, -1, 0.45545560544968333], [6, 3, 1, 0.4421641865185811], [-32, -23, -1, -0.001590273176909015], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [5, -2, -1, 0.5407677587151389], [5, -4, 1, 0.44081726772825336], [9, -6, -1, 0.5091970597628095], [23, -4, 1, -0.42219673136662833], [7, -2, -1, 0.4054879310355904], [3, -2, 1, 0.5784373487171313], [-2, 37, -1, 0.03961101827040056], [20, 83, 1, -0.06156551992267949]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 27, "state": [[-2, 36, -1, -0.013654263079979507], [3, 35, 1, 0.019658444417821098], [-1, -7, -1, 0.45938646114268983], [-33, 53, 1, 0.18622861109046882], [-6, 0, -1, 0.625], [-13, 13, 1, 0.2774050192863455], [1, -7, -1, 0.2906135388573102], [38, -6, 0, -0.058190997386388194], [33, -1, -1, 0.009642803271824379], [-19, 21, 1, 0.3909812304390345], [6, -62, -1, 0.1864400978113403], [5, -5, 1, -0.047020869622630676], [-27, 5, -1, 0.417947827056783], [-3, -1, 1, 0.6900130265306453], [28, -48, -1, 0.00034080235510857565], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-39, -5, -1, 0.19643918895134949], [-19, -19, 0, -0.06180284349225656], [5, 11, -1, 0.4769686903008581], [4, 2, 1, 0.4421641865185811], [-30, -24, -1, -0.009793375547706772], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [3, -1, -1, 0.5314164790945006], [6, -2, 1, 0.49699743281483133], [7, -7, -1, 0.5406135388573101], [25, -5, 1, -0.4262081911747835], [5, -3, -1, 0.44720559945545335], [2, -4, 1, 0.4958126784478473], [0, 38, -1, 0.048205623989614775], [21, 85, 1, -0.062481049964922576]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, 2], "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 28, "state": [[0, 35, -1, -0.0048214016359121835], [1, 34, 1, 0.02858735590640854], [-3, -6, -1, 0.5105946523174731], [-35, 54, 1, 0.18912057825973907], [-5, 2, -1, 0.6855594707954217], [-14, 11, 1, 0.2964127232103203], [-1, -6, -1, 0.3394813848633702], [38, -6, 0, -0.058190997386388194], [32, 1, -1, -0.0001505722758824487], [-21, 22, 1, 0.3952317453619292], [5, -64, -1, 0.18938560083985945], [6, -3, 1, 0.0041873215521526855], [-29, 6, -1, 0.4212753052876374], [-2, -3, 1, 0.7952213144503626], [26, -49, -1, 0.006744880509661582], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-41, -4, -1, 0.2012546381995357], [-19, -19, 0, -0.06180284349225656], [7, 10, -1, 0.5062688720179196], [2, 3, 1, 0.524788856787865], [-28, -25, -1, -0.018405851797172815], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 0, 1, 0.5482056239896147], [5, -8, -1, 0.5767096966126337], [27, -6, 1, -0.42959395571681486], [3, -4, -1, 0.5087787822945713], [0, -3, 1, 0.4220208696226307], [1, 36, -1, 0.05262545807626639], [22, 87, 1, -0.06335206870330025]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [1, -2], "using": [1, -2]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 29, "state": [[-1, 37, -1, -0.009121839688628756], [2, 32, 1, 0.023332772414461137], [-5, -5, -1, 0.5618028434922565], [-37, 55, 1, 0.19184441799715626], [-6, 4, -1, 0.7185835209054994], [-15, 9, 1, 0.3163945844750301], [-3, -7, -1, 0.37763768571232176], [38, -6, 0, -0.058190997386388194], [34, 2, -1, -0.004529877984726149], [-23, 23, 1, 0.39893235606712263], [4, -66, -1, 0.19216040584672647], [4, -4, 1, -0.047020869622630676], [-31, 7, -1, 0.42415026781536846], [-4, -2, 1, 0.7125966441810786], [24, -50, -1, 0.013161444964064056], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-43, -3, -1, 0.20564709571490797], [-19, -19, 0, -0.06180284349225656], [9, 11, -1, 0.5182060571955354], [0, 4, 1, 0.6183723776933644], [-30, -26, -1, -0.01605608378641524], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, 2, 1, 0.5994138151643981], [3, -9, -1, 0.6144053476825267], [29, -7, 1, -0.4324873631501759], [2, -2, 0, 0.5087787822945713], [2, -4, 1, 0.4958126784478473], [3, 35, -1, 0.06181421413902522], [23, 89, 1, -0.06418169660569047]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 30, "state": [[-2, 39, -1, -0.01297605009819323], [0, 33, 1, 0.03326703456723155], [-4, -3, -1, 0.5843864611426898], [-39, 56, 1, 0.19441291284172024], [-4, 5, -1, 0.7676116437386385], [-16, 7, 1, 0.3367678589234099], [-2, -5, -1, 0.37375662730316517], [38, -6, 0, -0.058190997386388194], [36, 1, -1, 0.0004015675492605574], [-25, 24, 1, 0.40217996531130995], [3, -68, -1, 0.1947773845892198], [6, -3, 1, 0.0041873215521526855], [-33, 8, -1, 0.4266575988555606], [-2, -3, 1, 0.7952213144503626], [22, -51, -1, 0.019569679818496045], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-45, -2, -1, 0.20966406437773208], [-19, -19, 0, -0.06180284349225656], [10, 9, -1, 0.5424376700890993], [-2, 3, 1, 0.7119558985988638], [-31, -28, -1, -0.019319358658101683], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 4, 1, 0.655593980250976], [1, -8, -1, 0.6458218267770274], [31, -8, 1, -0.4349869734693548], [2, -2, 0, 0.5087787822945713], [4, -3, 1, 0.5696044872730639], [2, 33, -1, 0.05783959415327351], [24, 91, 1, -0.06497277349780751]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [1, 2], "using": [1, 2]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 31, "state": [[0, 40, -1, -0.0048214016359121835], [1, 35, 1, 0.028720987229407326], [-5, -1, -1, 0.655386364397756], [-41, 57, 1, 0.19683775355476474], [-2, 6, -1, 0.8237918088252165], [-17, 5, 1, 0.3568785183584711], [-4, -6, -1, 0.40678067741324286], [38, -6, 0, -0.058190997386388194], [38, 2, -1, -0.0035474525423748677], [-27, 25, 1, 0.4050506842942499], [2, -70, -1, 0.19724832867256098], [4, -4, 1, -0.047020869622630676], [-35, 9, -1, 0.42886253848783684], [-1, -5, 1, 0.8573883562613613], [20, -52, -1, 0.02594893051651815], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-47, -1, -1, 0.2133472008907371], [-19, -19, 0, -0.06180284349225656], [11, 7, -1, 0.5688710595473442], [-4, 2, 1, 0.7945805688681478], [-33, -29, -1, -0.01715116932398078], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 5, 1, 0.7121951891782994], [-1, -9, -1, 0.6832251825959488], [33, -9, 1, -0.4371670418109989], [2, -2, 0, 0.5087787822945713], [3, -1, 1, 0.6208126784478473], [0, 34, -1, 0.048205623989614775], [25, 93, 1, -0.06572788893434063]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 32, "state": [[1, 38, -1, -0.0006340800837595128], [0, 37, 1, 0.03326703456723155], [-4, 1, -1, 0.7257924086809412], [-43, 58, 1, 0.19912962724724206], [0, 5, -1, 0.8749999999999999], [-18, 3, 1, 0.37612079093071876], [-5, -4, -1, 0.45580880024638215], [38, -6, 0, -0.058190997386388194], [37, 0, -1, 0.004821401635912188], [-29, 26, 1, 0.40760494068411074], [1, -72, -1, 0.19958403280833167], [6, -3, 1, 0.0041873215521526855], [-37, 10, -1, 0.43081596676783573], [0, -3, 1, 0.888804835355862], [18, -53, -1, 0.0322790990653503], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-49, 0, -1, 0.21673296543276854], [-19, -19, 0, -0.06180284349225656], [10, 5, -1, 0.5852770070855956], [-3, 0, 1, 0.8683723776933644], [-32, -27, -1, -0.013949462688899067], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 6, 1, 0.771921395633988], [-3, -10, -1, 0.7120003283961813], [35, -10, 1, -0.43908447847173526], [2, -2, 0, 0.5087787822945713], [4, 1, 1, 0.7110104348113153], [-2, 35, -1, 0.039120935314104856], [26, 95, 1, -0.06644940877292775]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 33, "state": [[2, 40, -1, 0.003129723992175997], [2, 38, 1, 0.02489818038894449], [-3, 3, -1, 0.8118028434922565], [-45, 59, 1, 0.2012983022086151], [2, 6, -1, 0.9262081911747833], [-19, 1, 1, 0.39403616510805844], [-6, -2, -1, 0.5119889653329601], [38, -6, 0, -0.058190997386388194], [38, -2, -1, 0.013190255814199244], [-31, 27, 1, 0.4098912067033381], [0, -74, -1, 0.2017943760103852], [4, -4, 1, -0.047020869622630676], [-39, 11, -1, 0.43255809553212027], [2, -4, 1, 0.9625966441810786], [16, -54, -1, 0.03854101286003703], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-47, 1, -1, 0.2201187299747999], [-19, -19, 0, -0.06180284349225656], [11, 3, -1, 0.6166934861800962], [-4, -2, 1, 0.942164186518581], [-33, -25, -1, -0.00559026011418374], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 5, 1, 0.8296221030841153], [-5, -9, -1, 0.7463207724658577], [37, -11, 1, -0.4407835770126069], [2, -2, 0, 0.5087787822945713], [3, 3, 1, 0.7970208696226306], [-3, 33, -1, 0.03377665480146253], [27, 97, 1, -0.0671394984839959]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 34, "state": [[0, 41, -1, -0.0048214016359121835], [0, 37, 1, 0.03326703456723155], [-1, 4, -1, 0.8978132783035718], [-47, 60, 1, 0.20335270814140677], [4, 5, -1, 0.9823883562613612], [-20, -1, 1, 0.4103561449144336], [-7, 0, -1, 0.5631971565077435], [38, -6, 0, -0.058190997386388194], [36, -3, -1, 0.018053739665707128], [-33, 28, 1, 0.4119487445101857], [-1, -76, -1, 0.203888399157804], [6, -3, 1, 0.0041873215521526855], [-41, 12, -1, 0.43412109209547456], [4, -3, 1, 1.0363884530062952], [14, -55, -1, 0.04471675076499313], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-45, 2, -1, 0.22380186648780492], [-19, -19, 0, -0.06180284349225656], [10, 1, -1, 0.6432060571955355], [-3, -4, 1, 1.0159559953437978], [-32, -27, -1, -0.013949462688899067], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 4, 1, 0.9006220063391814], [-6, -7, -1, 0.7783949128712114], [39, -12, 1, -0.44229929254987277], [2, -2, 0, 0.5087787822945713], [2, 5, 1, 0.861461398827209], [-2, 35, -1, 0.039120935314104856], [28, 99, 1, -0.06780014364728168]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 35, "state": [[-1, 39, -1, -0.008901403620317248], [2, 38, 1, 0.02489818038894449], [1, 5, -1, 0.968219322586757], [-49, 61, 1, 0.20530101109024956], [5, 3, -1, 1.0389895651886845], [-18, -2, 1, 0.4200166630249841], [-5, -1, -1, 0.531780677413243], [38, -6, 0, -0.058190997386388194], [35, -5, -1, 0.027405019286345464], [-35, 29, 1, 0.41380964785283153], [-2, -78, -1, 0.20587437799479025], [4, -4, 1, -0.047020869622630676], [-43, 13, -1, 0.4355309739393086], [3, -1, 1, 1.0875966441810785], [12, -56, -1, 0.050789913706545134], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-43, 3, -1, 0.22781883515062903], [-19, -19, 0, -0.06180284349225656], [11, -1, -1, 0.6734977850989645], [-1, -3, 1, 1.067164186518581], [-31, -25, -1, -0.010417509379997109], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 2, 1, 0.9744138151643981], [-7, -5, -1, 0.8168977672129368], [41, -13, 1, -0.44365955808634283], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 0.9220208696226306], [-3, 33, -1, 0.03377665480146253], [29, 101, 1, -0.06843316801732037]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 36, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 6, -1, 1.0105946523174731], [-51, 62, 1, 0.20715068276001689], [6, 1, -1, 1.0987157716443732], [-16, -3, 1, 0.43190406172010976], [-4, 1, -1, 0.6021867216964282], [38, -6, 0, -0.058190997386388194], [33, -6, -1, 0.03344597516026228], [-37, 30, 1, 0.4155003757928258], [-3, -80, -1, 0.20775989108899215], [6, -3, 1, 0.0041873215521526855], [-45, 14, -1, 0.43680899749979696], [5, 0, 1, 1.1388048353558617], [10, -57, -1, 0.056745831453935414], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-41, 4, -1, 0.2322112926660013], [-19, -19, 0, -0.06180284349225656], [10, -3, -1, 0.7054556054496834], [1, -4, 1, 1.157361942882049], [-32, -27, -1, -0.013949462688899067], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 0, 1, 1.0482056239896147], [-8, -3, -1, 0.8585134132473561], [43, -14, 1, -0.44488694976675464], [2, -2, 0, 0.5087787822945713], [-2, 5, 1, 0.9825803404180523], [-1, 32, -1, 0.043233650077820124], [30, 103, 1, -0.06904024948293443]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 37, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 1.0105946523174731], [-53, 63, 1, 0.20890856419240722], [5, -1, -1, 1.1564164790945004], [-14, -4, 1, 0.4466977856777979], [-5, 3, -1, 0.6492075913190588], [38, -6, 0, -0.058190997386388194], [31, -5, -1, 0.030272365651805827], [-39, 31, 1, 0.41704291648839203], [-4, -82, -1, 0.20955188258181098], [4, -4, 1, -0.047020869622630676], [-47, 15, -1, 0.43797269032438185], [3, 1, 1, 1.190013026530645], [8, -58, -1, 0.06257170197052815], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-39, 5, -1, 0.23702674191418752], [-19, -19, 0, -0.06180284349225656], [11, -5, -1, 0.7269686903008582], [3, -3, 1, 1.2433723776933643], [-30, -28, -1, -0.021919091478339963], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -2, 1, 1.1219974328148314], [-9, -1, -1, 0.8980018951186716], [45, -15, 1, -0.44599990325506617], [2, -2, 0, 0.5087787822945713], [-4, 4, 1, 1.0470208696226306], [-2, 30, -1, 0.037610971672141544], [31, 105, 1, -0.0696229341977887]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 38, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 1.093219322586757], [-55, 64, 1, 0.21058092395049208], [6, -3, -1, 1.1987918088252165], [-12, -5, 1, 0.4652379774753467], [-3, 4, -1, 0.7107807741581768], [38, -6, 0, -0.058190997386388194], [33, -4, -1, 0.024019254744314083], [-41, 32, 1, 0.4184556789530938], [-5, -84, -1, 0.21125671977425944], [3, -6, 1, -0.09822906079741403], [-49, 16, -1, 0.4390366280865526], [2, 3, 1, 1.2952213144503621], [6, -59, -1, 0.06825666418287991], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-37, 6, -1, 0.24231915026837036], [-19, -19, 0, -0.06180284349225656], [10, -7, -1, 0.7562688720179197], [4, -1, 1, 1.3293828125046796], [-31, -30, -1, -0.024796155548191028], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 1.2046221030841153], [-8, 1, -1, 0.935405250937593], [47, -16, 1, -0.4470136152987624], [2, -2, 0, 0.5087787822945713], [-5, 2, 1, 1.1114613988272088], [-1, 28, -1, 0.042523933742705806], [32, 107, 1, -0.07018264911879767]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 39, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 0, -1, 1.1868028434922564], [-57, 65, 1, 0.21217351107330457], [5, -5, -1, 1.2499999999999998], [-10, -6, 1, 0.48841545409766085], [-1, 5, -1, 0.7817806774132429], [38, -6, 0, -0.058190997386388194], [35, -5, -1, 0.027405019286345467], [-43, 33, 1, 0.41975418284415006], [-6, -86, -1, 0.21288024572824574], [5, -7, 1, -0.0733050979782574], [-51, 17, -1, 0.4400130265306452], [0, 4, 1, 1.3888048353558615], [4, -60, -1, 0.07379180882521665], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-35, 7, -1, 0.2481494445272691], [-19, -19, 0, -0.06180284349225656], [11, -9, -1, 0.7682060571955356], [5, 1, 1, 1.399788856787865], [-32, -32, -1, -0.027405019286345443], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 1.2982056239896147], [-6, 2, -1, 0.9668217300320936], [49, -17, 1, -0.4479407209855758], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 1.1208126784478472], [0, 30, -1, 0.04820562398961478], [33, 109, 1, -0.07072071315525429]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 40, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 1.2803863643977558], [-59, 66, 1, 0.2136916031275059], [3, -6, -1, 1.301208191174783], [-8, -7, 1, 0.5168103669688723], [1, 4, -1, 0.8521867216964281], [38, -6, 0, -0.058190997386388194], [37, -4, -1, 0.021960776899883325], [-45, 34, 1, 0.42095159685237155], [-7, -88, -1, 0.2144278271468447], [4, -5, 1, -0.06463251336126932], [-53, 18, -1, 0.4409121974332014], [-2, 5, 1, 1.4493643061512833], [2, -61, -1, 0.0791701349002305], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-33, 8, -1, 0.2545857289324672], [-19, -19, 0, -0.06180284349225656], [9, -10, -1, 0.7924376700890994], [6, 3, 1, 1.442164186518581], [-34, -31, -1, -0.020064615691721212], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 1.391789144895114], [-5, 4, -1, 1.0230018951186715], [51, -18, 1, -0.4487918088252167], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 1.211010434811315], [2, 29, -1, 0.059164474625830236], [34, 111, 1, -0.07123834710291989]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 41, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 1.385594652317473], [-61, 67, 1, 0.21514004971512957], [1, -5, -1, 1.3435835209054992], [-6, -8, 1, 0.5499886369367788], [3, 5, -1, 0.8992075913190587], [38, -6, 0, -0.058190997386388194], [35, -3, -1, 0.018429991785322647], [-47, 35, 1, 0.42205916254053055], [-8, -90, -1, 0.215904397843759], [3, -3, 1, -0.04702086962263068], [-55, 19, -1, 0.44174290343955164], [-4, 4, 1, 1.5138048353558615], [0, -62, -1, 0.08438646114268984], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-31, 9, -1, 0.26170298281339893], [-19, -19, 0, -0.06180284349225656], [7, -11, -1, 0.8188710595473443], [4, 2, 1, 1.442164186518581], [-32, -30, -1, -0.022272768547471556], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -1, 1, 1.4969974328148312], [-3, 5, -1, 1.0796031040459948], [53, -19, 1, -0.4495758169815246], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 1.2970208696226304], [0, 30, -1, 0.04820562398961478], [35, 113, 1, -0.07173668251308894]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 42, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -5, -1, 1.4368028434922562], [-63, 68, 1, 0.21652331180594453], [-1, -6, -1, 1.4012842283556264], [-4, -9, 1, 0.5858425499125172], [4, 3, -1, 0.9607807741581766], [38, -6, 0, -0.058190997386388194], [33, -2, -1, 0.014455371799570932], [-49, 36, 1, 0.42308653072663593], [-9, -92, -1, 0.21731449813317505], [5, -4, 1, -0.029409225883992043], [-57, 20, -1, 0.4425126368498241], [-3, 2, 1, 1.5452213144503621], [-2, -63, -1, 0.08943730271061162], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-29, 10, -1, 0.26958187109268156], [-19, -19, 0, -0.06180284349225656], [5, -10, -1, 0.8352770070855957], [2, 3, 1, 1.524788856787865], [-31, -32, -1, -0.02993107608967638], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 1.5871951891782992], [-1, 6, -1, 1.1393293105016833], [55, -20, 1, -0.45030034130778274], [2, -2, 0, 0.5087787822945713], [-2, -5, 1, 1.3614613988272086], [2, 31, -1, 0.05845947395197941], [36, 115, 1, -0.07221676962608894]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 43, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -6, -1, 1.4880110346670397], [-65, 69, 1, 0.21784549725770583], [-3, -5, -1, 1.4610104348113149], [-2, -10, 1, 0.6209885401918449], [5, 1, -1, 1.0317806774132428], [38, -6, 0, -0.058190997386388194], [31, -1, -1, 0.009953652374786064], [-51, 37, 1, 0.4240420305208869], [-10, -94, -1, 0.21866231047485105], [3, -3, 1, -0.04702086962263068], [-59, 21, -1, 0.4432278406087828], [-4, 0, 1, 1.6388048353558615], [-3, -61, -1, 0.09220745193216548], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-27, 11, -1, 0.27830614827188643], [-19, -19, 0, -0.06180284349225656], [3, -11, -1, 0.8666934861800963], [0, 4, 1, 1.6183723776933643], [-32, -34, -1, -0.0322264209222576], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 1.6732056239896145], [1, 7, -1, 1.1881971565077434], [57, -21, 1, -0.45097187716686077], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 1.4220208696226304], [0, 32, -1, 0.04820562398961478], [37, 117, 1, -0.07267958448119968]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 44, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 1.539219225841823], [-67, 70, 1, 0.21911039287287246], [-5, -6, -1, 1.4855710308118473], [0, -11, 1, 0.6524050192863455], [6, -1, -1, 1.08948138486337], [38, -6, 0, -0.058190997386388194], [30, -3, -1, 0.020684160351188974], [-53, 38, 1, 0.4249328860724375], [-11, -96, -1, 0.21995169170148815], [5, -4, 1, -0.029409225883992043], [-61, 22, -1, 0.44389408493980187], [-3, -2, 1, 1.732388356261361], [-4, -59, -1, 0.09516014031726681], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-25, 12, -1, 0.28795798161139435], [-19, -19, 0, -0.06180284349225656], [1, -10, -1, 0.8932060571955356], [-2, 3, 1, 1.7119558985988637], [-34, -35, -1, -0.02971145119261768], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 4, 1, 1.7592160588009298], [3, 6, -1, 1.2394053476825269], [59, -22, 1, -0.45159601099915103], [2, -2, 0, 0.5087787822945713], [2, -7, 1, 1.4663136360140827], [-1, 34, -1, 0.04352594532879174], [38, 119, 1, -0.07312603530007464]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 45, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 1.6130110346670397], [-69, 71, 1, 0.22032149332007503], [-6, -4, -1, 1.5314164790945002], [1, -13, 1, 0.6646236452724442], [4, 0, -1, 1.0631971565077434], [38, -6, 0, -0.058190997386388194], [29, -1, -1, 0.01030732944391768], [-55, 39, 1, 0.42576539239612915], [-12, -98, -1, 0.22118620214046797], [3, -3, 1, -0.04702086962263068], [-63, 23, -1, 0.44451620962412697], [-2, -4, 1, 1.8150130265306448], [-5, -57, -1, 0.09831177712890042], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-23, 13, -1, 0.29861043488622896], [-19, -19, 0, -0.06180284349225656], [-1, -11, -1, 0.9234977850989646], [-4, 2, 1, 1.7945805688681475], [-36, -34, -1, -0.022858971948521215], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 3, 1, 1.8494138151643977], [4, 4, -1, 1.2906135388573101], [61, -23, 1, -0.452177573367248], [2, -2, 0, 0.5087787822945713], [4, -8, 1, 1.495812678447847], [-3, 35, -1, 0.034597033840204294], [39, 121, 1, -0.0735569682280201]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 46, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, -1, -1, 1.6605186151366296], [-71, 72, 1, 0.22148202722534296], [-5, -2, -1, 1.5644405292045778], [2, -11, 1, 0.6810295928106956], [5, -2, -1, 1.1237566273031652], [38, -6, 0, -0.058190997386388194], [28, -3, -1, 0.021808911542260542], [-57, 40, 1, 0.42654505893688105], [-13, -100, -1, 0.22236913192287194], [5, -4, 1, -0.029409225883992043], [-65, 24, -1, 0.4450984394418272], [0, -3, 1, 1.8888048353558615], [-6, -55, -1, 0.10168043076609479], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-21, 14, -1, 0.3103164863382679], [-19, -19, 0, -0.06180284349225656], [-3, -10, -1, 0.9554556054496836], [-3, 0, 1, 1.8683723776933643], [-35, -32, -1, -0.02028343536560927], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 2, 1, 1.9546221030841149], [6, 3, -1, 1.3418217300320934], [63, -24, 1, -0.4527207621902226], [2, -2, 0, 0.5087787822945713], [3, -6, 1, 1.495812678447847], [-5, 36, -1, 0.02624128314806349], [40, 123, 1, -0.07397317250658153]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 47, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-7, 1, -1, 1.7093864611426897], [-73, 73, 1, 0.22259498071365447], [-6, 0, -1, 1.6249999999999996], [3, -9, 1, 0.7036132104611289], [6, -4, -1, 1.156780677413243], [38, -6, 0, -0.058190997386388194], [30, -4, -1, 0.02591763321533287], [-59, 41, 1, 0.4272767275163773], [-14, -102, -1, 0.22350352475140428], [3, -5, 1, -0.08601043481131536], [-67, 25, -1, 0.44564447847647914], [-1, -5, 1, 1.857388356261361], [-7, -53, -1, 0.10528596236113051], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, 15, -1, 0.32309452985566595], [-19, -19, 0, -0.06180284349225656], [-5, -11, -1, 0.9769686903008583], [-4, -2, 1, 1.942164186518581], [-34, -30, -1, -0.01747075713357499], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 3, 1, 1.962195189178299], [7, 1, -1, 1.3930299212068766], [65, -25, 1, -0.4532292427064545], [2, -2, 0, 0.5087787822945713], [5, -5, 1, 1.5470208696226302], [-6, 38, -1, 0.023281661170458115], [41, 125, 1, -0.0743753851415302]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 48, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 1.760594652317473], [-75, 74, 1, 0.2236631186569448], [-5, 2, -1, 1.6855594707954213], [4, -7, 1, 0.7350296895556295], [4, -5, -1, 1.2058088002463823], [38, -6, 0, -0.058190997386388194], [32, -3, -1, 0.01969869342162105], [-61, 42, 1, 0.4279646698004246], [-15, -104, -1, 0.22459219937682448], [5, -4, 1, -0.029409225883992043], [-69, 26, -1, 0.44615758764744623], [0, -3, 1, 1.8888048353558615], [-8, -51, -1, 0.10915014713476728], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-17, 16, -1, 0.3369115637968563], [-19, -19, 0, -0.06180284349225656], [-7, -10, -1, 1.0062688720179198], [-3, -4, 1, 2.0159559953437975], [-35, -28, -1, -0.009793375547706762], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-6, 1, 1, 2.0219213956339877], [6, -1, -1, 1.4418977672129367], [67, -26, 1, -0.4537062291197905], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 1.5982290607974134], [-7, 36, -1, 0.017640232734755033], [42, 127, 1, -0.07476429512229038]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 49, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 1.7182193225867568], [-77, 75, 1, 0.22468900386107327], [-6, 4, -1, 1.718583520905499], [6, -8, 1, 0.7548214016359123], [3, -7, -1, 1.2487566273031654], [38, -6, 0, -0.058190997386388194], [30, -4, -1, 0.02591763321533287], [-63, 43, 1, 0.4286126682893524], [-16, -106, -1, 0.2256377690107017], [4, -6, 1, -0.07843734871713127], [-71, 27, -1, 0.4466406488372808], [1, -5, 1, 1.9202213144503621], [-9, -49, -1, 0.11329677034405115], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-15, 17, -1, 0.35166722758553887], [-19, -19, 0, -0.06180284349225656], [-9, -11, -1, 1.0182060571955356], [-1, -3, 1, 2.067164186518581], [-34, -30, -1, -0.01747075713357499], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -1, 1, 2.079622103084115], [5, -3, -1, 1.5016239736686254], [69, -27, 1, -0.45415455171734714], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 1.6406043905281296], [-6, 38, -1, 0.023281661170458115], [43, 129, 1, -0.07514054724190589]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, 2], "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 50, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 1.760594652317473], [-79, 76, 1, 0.22567501440187654], [-4, 5, -1, 1.7676116437386382], [7, -6, 1, 0.7896236452724442], [1, -6, -1, 1.286912928152117], [38, -6, 0, -0.058190997386388194], [28, -5, -1, 0.03294548956757279], [-65, 44, 1, 0.4292240839705517], [-17, -108, -1, 0.22664265888132676], [5, -4, 1, -0.029409225883992043], [-73, 28, -1, 0.44709621823331236], [2, -3, 1, 1.982388356261361], [-10, -47, -1, 0.11775167888259387], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-13, 18, -1, 0.3671839294486621], [-19, -19, 0, -0.06180284349225656], [-10, -9, -1, 1.0424376700890994], [1, -4, 1, 2.157361942882049], [-35, -32, -1, -0.02028343536560927], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -3, 1, 2.1506220063391814], [4, -5, -1, 1.5582251825959488], [71, -28, 1, -0.4545767123800246], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 1.6720208696226302], [-5, 36, -1, 0.02624128314806349], [44, 131, 1, -0.07550474556064814]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 51, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 2, -1, 1.760594652317473], [-81, 77, 1, 0.22662335929958066], [-2, 6, -1, 1.8237918088252163], [8, -4, 1, 0.8286132104611289], [-1, -7, -1, 1.335780774158177], [38, -6, 0, -0.058190997386388194], [27, -7, -1, 0.04519488797074586], [-67, 45, 1, 0.42980191311142346], [-18, -110, -1, 0.22760912211982162], [7, -3, 1, 0.013538601172791015], [-75, 29, -1, 0.44752657093546644], [3, -1, 1, 2.0875966441810783], [-11, -45, -1, 0.12254276199164146], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-11, 19, -1, 0.38320912426092835], [-19, -19, 0, -0.06180284349225656], [-11, -7, -1, 1.0688710595473443], [3, -3, 1, 2.2433723776933645], [-33, -31, -1, -0.02243304537455082], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -4, 1, 2.224413815164398], [3, -7, -1, 1.601173009652732], [73, -29, 1, -0.4549749307560889], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 1.7458126784478467], [-4, 38, -1, 0.0315139407743522], [45, 133, 1, -0.07585745655117306]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 52, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 3, -1, 1.8432193225867568], [-83, 78, 1, 0.22753609270163738], [0, 5, -1, 1.8749999999999998], [9, -2, 1, 0.8676027756498136], [-2, -5, -1, 1.3737566273031656], [38, -6, 0, -0.058190997386388194], [28, -5, -1, 0.03294548956757279], [-69, 46, 1, 0.43034883516162326], [-19, -112, -1, 0.2285392541450705], [9, -4, 1, 0.011416661003541028], [-77, 30, -1, 0.4479337384493593], [4, 1, 1, 2.1777944005445464], [-12, -43, -1, 0.12769982486287415], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-9, 20, -1, 0.39943367288289583], [-19, -19, 0, -0.06180284349225656], [-10, -5, -1, 1.0852770070855957], [4, -1, 1, 2.32938281250468], [-31, -32, -1, -0.029931076089676375], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -3, 1, 2.2982056239896145], [2, -9, -1, 1.6308112952207783], [75, -30, 1, -0.4553511828757044], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 1.8284373487171306], [-5, 36, -1, 0.02624128314806349], [46, 135, 1, -0.07619921195863127]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 53, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 1.9053863643977555], [-85, 79, 1, 0.2284151267264985], [2, 6, -1, 1.926208191174783], [10, 0, 1, 0.9024050192863455], [-4, -4, -1, 1.4381971565077438], [38, -6, 0, -0.058190997386388194], [30, -4, -1, 0.02591763321533287], [-71, 47, 1, 0.43086725333819426], [-20, -114, -1, 0.2294350056991397], [7, -5, 1, -0.020736641267003968], [-79, 31, -1, 0.448319540350549], [3, 3, 1, 2.2638048353558617], [-14, -42, -1, 0.13559465231747325], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-7, 21, -1, 0.4155247742579851], [-19, -19, 0, -0.06180284349225656], [-11, -3, -1, 1.1166934861800963], [5, 1, 1, 2.399788856787865], [-32, -34, -1, -0.0322264209222576], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -4, 1, 2.371997432814831], [0, -8, -1, 1.6656135388573103], [77, -31, 1, -0.4557072336085476], [2, -2, 0, 0.5087787822945713], [1, 5, 1, 1.8906043905281293], [-4, 38, -1, 0.0315139407743522], [47, 137, 1, -0.07653051140521766]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 54, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 6, -1, 1.9630870718478828], [-87, 80, 1, 0.2292622431049229], [4, 5, -1, 1.9823883562613611], [11, 2, 1, 0.9310295928106956], [-5, -2, -1, 1.502637685712322], [38, -6, 0, -0.058190997386388194], [32, -5, -1, 0.029489899276246203], [-73, 48, 1, 0.4313593291584693], [-21, -116, -1, 0.23029819466936963], [5, -4, 1, -0.02940922588399204], [-81, 32, -1, 0.4486856111476332], [2, 5, 1, 2.32824536456044], [-16, -43, -1, 0.14108058012547872], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-5, 22, -1, 0.43116555969586084], [-19, -19, 0, -0.06180284349225656], [-10, -1, -1, 1.1432060571955356], [6, 3, 1, 2.442164186518581], [-31, -36, -1, -0.03926027845381989], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -2, 1, 2.454622103084115], [-2, -7, -1, 1.7099063052487626], [79, -32, 1, -0.4560446640777181], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 1.9610104348113147], [-2, 39, -1, 0.040050975527333735], [48, 139, 1, -0.07685182476523708]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 55, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 5, -1, 2.0228132783035715], [-89, 81, 1, 0.23007910374103258], [5, 3, -1, 2.0389895651886842], [9, 3, 1, 0.9536132104611289], [-4, 0, -1, 1.5631971565077438], [38, -6, 0, -0.058190997386388194], [34, -4, -1, 0.02345983721301478], [-75, 49, 1, 0.4318270119430331], [-22, -118, -1, 0.23113051681926408], [3, -3, 1, -0.047020869622630676], [-83, 33, -1, 0.4490334231704311], [1, 7, 1, 2.3662212177054283], [-18, -42, -1, 0.14882699034726815], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, 23, -1, 0.44609016551284486], [-19, -19, 0, -0.06180284349225656], [-11, 1, -1, 1.1734977850989645], [4, 2, 1, 2.442164186518581], [-30, -34, -1, -0.037339281439115815], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 0, 1, 2.5482056239896145], [-4, -6, -1, 1.7591970597628097], [81, -33, 1, -0.4563648949194007], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 2.04702086962263], [-3, 41, -1, 0.036580856975396946], [49, 141, 1, -0.07716359433378485]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 56, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 3, -1, 2.0843864611426897], [-91, 82, 1, 0.23086726030240384], [6, 1, -1, 2.0987157716443727], [8, 5, 1, 0.9913088615310219], [-5, 2, -1, 1.6237566273031656], [38, -6, 0, -0.058190997386388194], [33, -2, -1, 0.014455371799570932], [-77, 50, 1, 0.4322720641192996], [-23, -120, -1, 0.23193355553760014], [5, -4, 1, -0.029409225883992036], [-85, 34, -1, 0.44936430615128353], [0, 5, 1, 2.3888048353558613], [-20, -43, -1, 0.1536750868744248], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, 24, -1, 0.4601053431261329], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 1.2054556054496834], [2, 3, 1, 2.524788856787865], [-28, -35, -1, -0.04501666302498404], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 2, 1, 2.6087650947850363], [-5, -4, -1, 1.808225182595949], [83, -34, 1, -0.45666920610322437], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 2.1330313044339455], [-4, 39, -1, 0.03193891958564543], [50, 143, 1, -0.0774662368095388]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 57, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 2.155386364397756], [-93, 83, 1, 0.23162816293688748], [5, -1, -1, 2.1564164790945], [6, 6, 1, 1.0274050192863455], [-4, 4, -1, 1.6881971565077438], [38, -6, 0, -0.058190997386388194], [35, -3, -1, 0.018429991785322647], [-79, 51, 1, 0.43269608300385104], [-24, -122, -1, 0.23270879070374964], [3, -3, 1, -0.047020869622630676], [-87, 35, -1, 0.4496794640425055], [-1, 3, 1, 2.440013026530645], [-22, -42, -1, 0.1611808371530751], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [1, 25, -1, 0.4730957711067644], [-19, -19, 0, -0.06180284349225656], [-11, 5, -1, 1.2269686903008583], [0, 4, 1, 2.6183723776933645], [-26, -34, -1, -0.04850125086576607], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 2.6732056239896145], [-6, -2, -1, 1.8644053476825269], [85, -35, 1, -0.4569587538912816], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 2.2232290607974137], [-6, 40, -1, 0.024509052850869947], [51, 145, 1, -0.07776014510988093]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 58, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -1, -1, 2.2130870718478834], [-95, 84, 1, 0.2323631682034752], [6, -3, -1, 2.198791808825216], [4, 7, 1, 1.0697803490170616], [-3, 6, -1, 1.739405347682527], [38, -6, 0, -0.058190997386388194], [33, -2, -1, 0.014455371799570932], [-81, 52, 1, 0.4331005196198951], [-25, -124, -1, 0.23345760675693503], [5, -4, 1, -0.029409225883992036], [-89, 36, -1, 0.4499799895136708], [-3, 4, 1, 2.4912212177054283], [-24, -43, -1, 0.16540760941929483], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [3, 24, -1, 0.4865246775130513], [-19, -19, 0, -0.06180284349225656], [-10, 7, -1, 1.2562688720179198], [-2, 3, 1, 2.711955898598864], [-28, -33, -1, -0.04042140772940851], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 2, 1, 2.6087650947850363], [-7, 0, -1, 1.9156135388573101], [87, -36, 1, -0.4572345854055692], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 2.328437348717131], [-7, 38, -1, 0.019212636903175366], [52, 147, 1, -0.07804569003456523]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 59, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 2.272813278303572], [-97, 85, 1, 0.23307354629526517], [5, -5, -1, 2.2499999999999996], [2, 8, 1, 1.1134154540976609], [-1, 7, -1, 1.7906135388573103], [38, -6, 0, -0.058190997386388194], [31, -3, -1, 0.020175679834957112], [-83, 53, 1, 0.433486695008363], [-26, -126, -1, 0.2341813000479491], [3, -3, 1, -0.047020869622630676], [-91, 37, -1, 0.45026687649300984], [-5, 3, 1, 2.5527944005445464], [-26, -42, -1, 0.17260723915605877], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [5, 23, -1, 0.5008017813435808], [-19, -19, 0, -0.06180284349225656], [-11, 9, -1, 1.2682060571955356], [-4, 2, 1, 2.794580568868148], [-30, -32, -1, -0.03253727002521932], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 4, 1, 2.6732056239896145], [-6, 2, -1, 1.9668217300320934], [89, -37, 1, -0.4574976511876389], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 2.42202086962263], [-6, 36, -1, 0.021921395633988053], [53, 149, 1, -0.07832322179239229]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 60, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 2.280386364397756], [-99, 86, 1, 0.23376048762431417], [3, -6, -1, 2.301208191174783], [1, 10, 1, 1.1365422605710687], [1, 8, -1, 1.8329888685880265], [38, -6, 0, -0.058190997386388194], [33, -4, -1, 0.02401925474431408], [-85, 54, 1, 0.4338558144121991], [-27, -128, -1, 0.23488108554363965], [5, -4, 1, -0.029409225883992036], [-93, 38, -1, 0.45054103105339943], [-3, 2, 1, 2.5452213144503624], [-28, -43, -1, 0.1762494550948056], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [7, 22, -1, 0.5157610882659077], [-19, -19, 0, -0.06180284349225656], [-9, 10, -1, 1.2924376700890994], [-3, 0, 1, 2.8683723776933645], [-29, -30, -1, -0.030102302428232024], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 5, 1, 2.7376461531941927], [-4, 3, -1, 2.018029921206877], [91, -38, 1, -0.45774881606554974], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 2.5156043905281296], [-5, 38, -1, 0.0273837972125874], [54, 151, 1, -0.07859307140380199]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 61, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 2.385594652317473], [-101, 87, 1, 0.23442510883079437], [1, -5, -1, 2.343583520905499], [-1, 11, 1, 1.1668339884744976], [2, 6, -1, 1.864405347682527], [38, -6, 0, -0.058190997386388194], [35, -3, -1, 0.018429991785322647], [-87, 55, 1, 0.4342089796493375], [-28, -130, -1, 0.23555810294711366], [3, -3, 1, -0.047020869622630676], [-95, 39, -1, 0.4508032808919037], [-4, 0, 1, 2.6388048353558617], [-30, -42, -1, 0.18310223278706314], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [9, 21, -1, 0.5311734946373468], [-19, -19, 0, -0.06180284349225656], [-7, 11, -1, 1.3188710595473443], [-4, -2, 1, 2.942164186518581], [-27, -29, -1, -0.03308670953325437], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 2.7982056239896145], [-3, 5, -1, 2.079603104045995], [93, -39, 1, -0.45798886858802623], [2, -2, 0, 0.5087787822945713], [3, -1, 1, 2.6208126784478467], [-3, 37, -1, 0.035329336692663], [55, 153, 1, -0.07885555199093201]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 62, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -5, -1, 2.4368028434922566], [-103, 88, 1, 0.23506845827231096], [-1, -6, -1, 2.4012842283556264], [-2, 9, 1, 1.1872072629228774], [1, 4, -1, 1.8521867216964283], [38, -6, 0, -0.058190997386388194], [37, -4, -1, 0.021960776899883325], [-89, 56, 1, 0.43454719993767515], [-29, -132, -1, 0.23621342229005443], [5, -4, 1, -0.029409225883992036], [-97, 40, -1, 0.45105438361000977], [-3, -2, 1, 2.732388356261361], [-32, -43, -1, 0.1862089845203757], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [11, 20, -1, 0.5467629480521381], [-19, -19, 0, -0.06180284349225656], [-5, 10, -1, 1.3352770070855957], [-3, -4, 1, 3.0159559953437975], [-25, -30, -1, -0.04183398847449764], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 2.8587650947850363], [-1, 4, -1, 2.1266239736686257], [95, -40, 1, -0.45821852924116485], [2, -2, 0, 0.5087787822945713], [4, 1, 1, 2.711010434811315], [-1, 36, -1, 0.043785789902963126], [56, 155, 1, -0.07911095996548367]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 63, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -7, -1, 2.45938646114269], [-105, 89, 1, 0.23569152104339045], [-3, -5, -1, 2.461010434811315], [-3, 7, 1, 1.2168455484909237], [3, 5, -1, 1.899207591319059], [38, -6, 0, -0.058190997386388194], [38, -2, -1, 0.013190255814199246], [-91, 57, 1, 0.4348714013926405], [-30, -134, -1, 0.23684804904769297], [3, -3, 1, -0.047020869622630676], [-99, 41, -1, 0.45129503396761894], [-4, -4, 1, 2.7638048353558617], [-34, -42, -1, 0.19269477792742729], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [13, 19, -1, 0.5622339229990042], [-19, -19, 0, -0.06180284349225656], [-4, 12, -1, 1.357860624736029], [-1, -3, 1, 3.067164186518581], [-27, -29, -1, -0.03308670953325437], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 2.9232056239896145], [1, 3, -1, 2.216821730032094], [97, -41, 1, -0.4584384576268707], [2, -2, 0, 0.5087787822945713], [5, 3, 1, 2.7580313044339455], [1, 37, -1, 0.05250606204233135], [57, 157, 1, -0.07935957612367035]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 64, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -8, -1, 2.4939029691022108], [-107, 90, 1, 0.23629522356994576], [-5, -6, -1, 2.4855710308118475], [-5, 6, 1, 1.2629760500981932], [4, 3, -1, 1.9607807741581769], [38, -6, 0, -0.058190997386388194], [37, -4, -1, 0.021960776899883325], [-93, 58, 1, 0.4351824353828639], [-31, -136, -1, 0.2374629288217541], [5, -4, 1, -0.029409225883992036], [-101, 42, -1, 0.4515258702559348], [-6, -5, 1, 2.7493758661677097], [-36, -43, -1, 0.19532085877316188], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [15, 18, -1, 0.5773039962446163], [-19, -19, 0, -0.06180284349225656], [-2, 11, -1, 1.3804442423864622], [1, -4, 1, 3.157361942882049], [-26, -27, -1, -0.030407586471513964], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 2.9876461531941927], [2, 5, -1, 2.226173009652732], [99, -42, 1, -0.458649258752729], [2, -2, 0, 0.5087787822945713], [4, 5, 1, 2.8146325133612686], [3, 38, -1, 0.06074448081739604], [58, 159, 1, -0.07960166665657882]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 65, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -6, -1, 2.48801103466704], [-109, 91, 1, 0.23688043781888854], [-6, -4, -1, 2.5314164790945], [-6, 4, 1, 1.3088214983808462], [5, 1, -1, 2.031780677413243], [38, -6, 0, -0.058190997386388194], [36, -6, -1, 0.031105629991538902], [-95, 59, 1, 0.43548108590049717], [-32, -138, -1, 0.2380589516320425], [7, -3, 1, 0.013538601172791022], [-103, 43, -1, 0.4517474799114336], [-8, -6, 1, 2.7412212177054287], [-38, -42, -1, 0.20143533551460172], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [17, 17, -1, 0.5917329654327685], [-19, -19, 0, -0.06180284349225656], [0, 10, -1, 1.4090688159108122], [3, -3, 1, 3.2433723776933645], [-27, -29, -1, -0.03308670953325437], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 3.0482056239896145], [4, 4, -1, 2.2906135388573103], [101, -43, 1, -0.4588514885588759], [2, -2, 0, 0.5087787822945713], [2, 6, 1, 2.8708126784478467], [1, 37, -1, 0.05250606204233135], [59, 161, 1, -0.07983748408343462]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 66, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 2.4757924086809413], [-111, 92, 1, 0.23744798515893054], [-5, -2, -1, 2.5644405292045778], [-7, 2, 1, 1.3581122528948932], [6, -1, -1, 2.0894813848633706], [38, -6, 0, -0.058190997386388194], [34, -5, -1, 0.028059974202669383], [-97, 60, 1, 0.43576807607874724], [-33, -140, -1, 0.2386369558531806], [6, -5, 1, -0.03259190043447843], [-105, 44, -1, 0.4519604044741436], [-6, -7, 1, 2.7760234613419605], [-40, -43, -1, 0.20363637599535347], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [19, 16, -1, 0.605341555582179], [-19, -19, 0, -0.06180284349225656], [2, 11, -1, 1.4376933894351622], [4, -1, 1, 3.32938281250468], [-25, -28, -1, -0.03640418677551799], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 3.141789144895114], [5, 2, -1, 2.3550540680618886], [103, -44, 1, -0.4590456587875813], [2, -2, 0, 0.5087787822945713], [1, 4, 1, 2.8830313044339455], [3, 38, -1, 0.06074448081739604], [60, 163, 1, -0.08006726811451859]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 67, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -5, -1, 2.522813278303572], [-113, 93, 1, 0.23799863990493797], [-6, 0, -1, 2.6249999999999996], [-8, 0, 1, 1.4024050192863455], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -6, -1, 0.031105629991538902], [-99, 61, 1, 0.43604407396924627], [-34, -142, -1, 0.23919773182930665], [4, -4, 1, -0.047020869622630676], [-107, 45, -1, 0.45216514397774366], [-5, -5, 1, 2.7638048353558617], [-42, -42, -1, 0.20938646114268986], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [21, 15, -1, 0.6180171937883953], [-19, -19, 0, -0.06180284349225656], [4, 10, -1, 1.4696282867062338], [5, 1, 1, 3.399788856787865], [-26, -30, -1, -0.038753954786275635], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 3.246997432814831], [4, 0, 0, 2.4156135388573103], [105, -45, 1, -0.45923224128486106], [2, -2, 0, 0.5087787822945713], [-1, 3, 1, 2.9732290607974137], [5, 37, -1, 0.06958354543966079], [61, 165, 1, -0.08029124644981639]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 68, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 2.530386364397756], [-115, 94, 1, 0.23853313257492234], [-5, 2, -1, 2.6855594707954213], [-6, -1, 1, 1.4286892476419724], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -8, -1, 0.04058529485705796], [-101, 62, 1, 0.4363096976752441], [-35, -144, -1, 0.2397420251962339], [6, -3, 1, 0.0041873215521526855], [-109, 46, -1, 0.45236216084591097], [-3, -6, 1, 2.8150130265306452], [-43, -40, -1, 0.21513654629002624], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [23, 14, -1, 0.629708818577757], [-19, -19, 0, -0.06180284349225656], [6, 11, -1, 1.4885423149829378], [6, 3, 1, 3.442164186518581], [-25, -28, -1, -0.03640418677551799], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -4, 1, 3.337195189178299], [4, 0, 0, 2.4156135388573103], [107, -46, 1, -0.4594116718098466], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 3.078437348717131], [3, 36, -1, 0.06143796201940973], [62, 167, 1, -0.0805096355188944]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 69, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 2.635594652317473], [-117, 95, 1, 0.2390521528858281], [-6, 4, -1, 2.718583520905499], [-7, -3, 1, 1.466845548490924], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -7, -1, 0.03458007669922063], [-103, 63, 1, 0.43656551992267956], [-36, -146, -1, 0.24027053993762135], [4, -4, 1, -0.047020869622630676], [-111, 47, -1, 0.4525518833584265], [-2, -4, 1, 2.8150130265306452], [-44, -38, -1, 0.22101122815690766], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [25, 13, -1, 0.640415099804221], [-19, -19, 0, -0.06180284349225656], [8, 10, -1, 1.5164571721721736], [4, 2, 1, 3.442164186518581], [-26, -30, -1, -0.038753954786275635], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 3.4232056239896145], [4, 0, 0, 2.4156135388573103], [109, -47, 1, -0.4595843534163268], [2, -2, 0, 0.5087787822945713], [-5, 3, 1, 3.086010434811315], [4, 38, -1, 0.06489730720487734], [63, 169, 1, -0.08072264116696459]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 70, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 0, -1, 2.6868028434922566], [-119, 96, 1, 0.23955635251166635], [-4, 5, -1, 2.767611643738638], [-6, -5, 1, 1.5129760500981935], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -6, -1, 0.031842453167583315], [-105, 64, 1, 0.4368120721394836], [-37, -148, -1, 0.24078394119906993], [6, -3, 1, 0.0041873215521526855], [-113, 48, -1, 0.4527347087413895], [0, -3, 1, 2.8888048353558617], [-45, -36, -1, 0.22699810488132852], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [27, 12, -1, 0.6501704960589403], [-19, -19, 0, -0.06180284349225656], [10, 9, -1, 1.5424376700890994], [2, 3, 1, 3.524788856787865], [-25, -32, -1, -0.04685298472383245], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -1, 1, 3.50921605880093], [4, 0, 0, 2.4156135388573103], [111, -48, 1, -0.45975065946143207], [2, -2, 0, 0.5087787822945713], [-6, 1, 1, 3.1457366412670034], [5, 36, -1, 0.07016996483116605], [64, 171, 1, -0.08093045929163283]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 71, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 2, -1, 2.73801103466704], [-121, 97, 1, 0.2400463476252139], [-2, 6, -1, 2.823791808825216], [-4, -6, 1, 1.5588214983808464], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -7, -1, 0.03458007669922063], [-107, 65, 1, 0.4370498481036047], [-38, -150, -1, 0.24128285788170067], [4, -4, 1, -0.047020869622630676], [-115, 49, -1, 0.45291100592819755], [2, -4, 1, 2.9625966441810783], [-46, -34, -1, 0.23308303228143465], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [29, 11, -1, 0.6590322579826413], [-19, -19, 0, -0.06180284349225656], [11, 7, -1, 1.5688710595473443], [0, 4, 1, 3.6183723776933645], [-23, -33, -1, -0.05552910721800605], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 3.579622103084115], [4, 0, 0, 2.4156135388573103], [113, -49, 1, -0.4599109362885113], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 3.17202086962263], [7, 37, -1, 0.07796429905292322], [65, 173, 1, -0.08113327643440002]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 72, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 2.7257924086809413], [-123, 98, 1, 0.2405227212424139], [0, 5, -1, 2.8749999999999996], [-2, -7, 1, 1.6081122528948935], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -9, -1, 0.04183398847449771], [-109, 66, 1, 0.43727930721191244], [-39, -152, -1, 0.24176788503466556], [6, -3, 1, 0.0041873215521526855], [-117, 50, -1, 0.45308111803144985], [4, -3, 1, 3.036388453006295], [-47, -32, -1, 0.23925025834599004], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [31, 10, -1, 0.6670699193332094], [-19, -19, 0, -0.06180284349225656], [10, 5, -1, 1.5852770070855957], [-2, 3, 1, 3.711955898598864], [-21, -32, -1, -0.059974774884026215], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 3.6506220063391814], [4, 0, 0, 2.4156135388573103], [115, -50, 1, -0.46006550562459414], [2, -2, 0, 0.5087787822945713], [-3, -2, 1, 3.2656043905281296], [8, 35, -1, 0.08396951721076056], [66, 175, 1, -0.08133127033060995]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 73, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 2.8118028434922566], [-125, 99, 1, 0.24098602538675165], [2, 6, -1, 2.926208191174783], [0, -8, 1, 1.6524050192863458], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -8, -1, 0.036237880730412786], [-111, 67, 1, 0.43750087741506194], [-40, -154, -1, 0.24223958606415438], [4, -4, 1, -0.047020869622630676], [-119, 51, -1, 0.4532453645604401], [3, -1, 1, 3.0875966441810783], [-48, -30, -1, 0.24548261889801348], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [33, 9, -1, 0.6743576357020525], [-19, -19, 0, -0.06180284349225656], [11, 3, -1, 1.6166934861800963], [-4, 2, 1, 3.794580568868148], [-19, -31, -1, -0.064893167288556], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 5, 1, 3.712195189178299], [4, 0, 0, 2.4156135388573103], [117, -51, 1, -0.46021466672721234], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 3.3708126784478467], [7, 33, -1, 0.08147265855684635], [67, 177, 1, -0.08152461042119703]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 74, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 2.897813278303572], [-127, 100, 1, 0.24143678308921326], [4, 5, -1, 2.982388356261361], [2, -9, 1, 1.6872072629228778], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -9, -1, 0.03841794907205692], [-113, 68, 1, 0.4377149578573926], [-41, -156, -1, 0.2426984947747733], [6, -3, 1, 0.0041873215521526855], [-121, 52, -1, 0.45340404341423585], [4, 1, 1, 3.1777944005445464], [-49, -28, -1, 0.2517617908734059], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [35, 8, -1, 0.6809690722116228], [-19, -19, 0, -0.06180284349225656], [10, 1, -1, 1.6432060571955356], [-3, 0, 1, 3.8683723776933645], [-18, -29, -1, -0.06399544546225344], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 6, 1, 3.7719213956339877], [4, 0, 0, 2.4156135388573103], [119, -52, 1, -0.46035869831060006], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 3.461010434811315], [6, 31, -1, 0.0786335757768324], [68, 179, 1, -0.08171345832928306]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 75, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 2.98801103466704], [-129, 101, 1, 0.24187549023793944], [5, 3, -1, 3.0389895651886842], [3, -7, 1, 1.7168455484909242], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -8, -1, 0.033445975160262285], [-115, 69, 1, 0.43792192125580726], [-42, -158, -1, 0.24314511725765628], [4, -4, 1, -0.047020869622630676], [-123, 53, -1, 0.45355743267637344], [6, 2, 1, 3.1900130265306452], [-50, -26, -1, 0.2580685955141423], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [37, 7, -1, 0.6869742903694602], [-19, -19, 0, -0.06180284349225656], [11, -1, -1, 1.6734977850989645], [-4, -2, 1, 3.942164186518581], [-19, -31, -1, -0.064893167288556], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 5, 1, 3.829622103084115], [4, 0, 0, 2.4156135388573103], [121, -53, 1, -0.4604978602772556], [2, -2, 0, 0.5087787822945713], [3, -3, 1, 3.54702086962263], [7, 29, -1, 0.08590127505950779], [69, 181, 1, -0.08189796830439801]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 76, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 5, -1, 2.9973623142876784], [-131, 102, 1, 0.24230261729035185], [6, 1, -1, 3.0987157716443727], [5, -6, 1, 1.7629760500981937], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -7, -1, 0.02885623994456421], [-117, 70, 1, 0.4381221160471944], [-43, -160, -1, 0.24357993363831262], [6, -3, 1, 0.0041873215521526855], [-125, 54, -1, 0.4537057922338052], [4, 3, 1, 3.2412212177054287], [-51, -24, -1, 0.26438333990525914], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [39, 6, -1, 0.6924380702590042], [-19, -19, 0, -0.06180284349225656], [10, -3, -1, 1.7054556054496834], [-3, -4, 1, 4.0159559953437975], [-18, -33, -1, -0.07293152021421985], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 4, 1, 3.900622006339181], [4, 0, 0, 2.4156135388573103], [123, -54, 1, -0.4606323952774112], [2, -2, 0, 0.5087787822945713], [4, -1, 1, 3.6330313044339455], [6, 27, -1, 0.08300786762614676], [70, 183, 1, -0.08207828763685336]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 77, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 2.98801103466704], [-133, 103, 1, 0.24271861085932445], [5, -1, -1, 3.1564164790945], [6, -4, 1, 1.8088214983808466], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -9, -1, 0.036237880730412786], [-119, 71, 1, 0.43831586833019737], [-44, -162, -1, 0.24400339969599605], [5, -5, 1, -0.047020869622630676], [-127, 55, -1, 0.45384936523983516], [2, 4, 1, 3.3150130265306452], [-52, -22, -1, 0.27068618214938495], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [41, 5, -1, 0.6974191946878411], [-19, -19, 0, -0.06180284349225656], [11, -5, -1, 1.7269686903008583], [-1, -3, 1, 4.067164186518581], [-17, -31, -1, -0.07257225458721195], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 2, 1, 3.9744138151643975], [4, 0, 0, 2.4156135388573103], [125, -55, 1, -0.46076253011602375], [2, -2, 0, 0.5087787822945713], [6, 0, 1, 3.67202086962263], [5, 29, -1, 0.07537897685574613], [71, 185, 1, -0.08225455704457357]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 78, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 4, -1, 3.0392192258418236], [-135, 104, 1, 0.24312389518389813], [6, -3, -1, 3.198791808825216], [8, -3, 1, 1.8453048936763918], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -7, -1, 0.02993107608967642], [-121, 72, 1, 0.43850348362390423], [-45, -164, -1, 0.2444159483652849], [3, -4, 1, -0.06960448727306395], [-129, 56, -1, 0.4539883794382888], [0, 3, 1, 3.3888048353558617], [-53, -20, -1, 0.27695750347359577], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [43, 4, -1, 0.701970338571811], [-19, -19, 0, -0.06180284349225656], [10, -7, -1, 1.7562688720179198], [1, -4, 1, 4.157361942882049], [-16, -33, -1, -0.08055402819163844], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 0, 1, 4.048205623989614], [4, 0, 0, 2.4156135388573103], [127, -56, 1, -0.46088847702438773], [2, -2, 0, 0.5087787822945713], [5, 2, 1, 3.732580340418052], [7, 28, -1, 0.08719518917829944], [72, 187, 1, -0.08242691103449142]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 79, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 2, -1, 3.11301103466704], [-137, 105, 1, 0.24351887349406381], [5, -5, -1, 3.2499999999999996], [9, -1, 1, 1.8847933755477073], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -8, -1, 0.032226420922257665], [-123, 73, 1, 0.4386852484632515], [-46, -166, -1, 0.24481799112957883], [5, -3, 1, -0.008031304433946021], [-131, 57, -1, 0.45412304836401896], [-2, 4, 1, 3.4625966441810783], [-54, -18, -1, 0.28317826996790657], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [45, 3, -1, 0.7061383131152954], [-19, -19, 0, -0.06180284349225656], [11, -9, -1, 1.7682060571955356], [3, -3, 1, 4.2433723776933645], [-17, -35, -1, -0.08044249706547213], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -2, 1, 4.1219974328148306], [4, 0, 0, 2.4156135388573103], [129, -57, 1, -0.4610104348113153], [2, -2, 0, 0.5087787822945713], [3, 3, 1, 3.79702086962263], [6, 30, -1, 0.07962210308411538], [73, 189, 1, -0.08259547824043083]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, -2], "using": [1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 80, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 0, -1, 3.1868028434922566], [-139, 106, 1, 0.24390392927827115], [3, -6, -1, 3.301208191174783], [10, 1, 1, 1.9182677780016228], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -10, -1, 0.03962364527244417], [-125, 74, 1, 0.4388614318485264], [-47, -168, -1, 0.2452099193153314], [6, -5, 1, -0.03259190043447843], [-133, 58, -1, 0.4542535724330035], [-3, 2, 1, 3.5452213144503624], [-55, -16, -1, 0.28933036754379327], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [47, 2, -1, 0.7099644980805182], [-19, -19, 0, -0.06180284349225656], [9, -10, -1, 1.7924376700890994], [4, -1, 1, 4.32938281250468], [-16, -37, -1, -0.08744607190519613], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 4.204622103084114], [4, 0, 0, 2.4156135388573103], [131, -58, 1, -0.4611285899069744], [2, -2, 0, 0.5087787822945713], [1, 4, 1, 3.8830313044339455], [8, 31, -1, 0.08840088537868669], [74, 191, 1, -0.08276038173923718]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, 2], "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 81, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -2, -1, 3.260594652317473], [-141, 107, 1, 0.24427942746153158], [1, -5, -1, 3.343583520905499], [8, 2, 1, 1.9413945844750307], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -12, -1, 0.04543494049322235], [-127, 75, 1, 0.439032286564276], [-48, -170, -1, 0.24559210529503994], [7, -3, 1, 0.013538601172791022], [-135, 59, -1, 0.4543801399336911], [-4, 0, 1, 3.6388048353558617], [-56, -14, -1, 0.2953968959540052], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [49, 1, -1, 0.7134853561885813], [-19, -19, 0, -0.06180284349225656], [7, -11, -1, 1.8188710595473443], [5, 1, 1, 4.399788856787866], [-17, -39, -1, -0.08698206463941587], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 4.298205623989614], [4, 0, 0, 2.4156135388573103], [133, -59, 1, -0.46124311731087514], [2, -2, 0, 0.5087787822945713], [-1, 5, 1, 3.953437348717131], [7, 33, -1, 0.08147265855684635], [75, 193, 1, -0.08292173934676672]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 82, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 0, -1, 3.1868028434922566], [-143, 108, 1, 0.2446457155012808], [-1, -6, -1, 3.4012842283556264], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -11, -1, 0.043810966824596856], [-129, 76, 1, 0.43919805038112536], [-49, -172, -1, 0.24596490360629483], [6, -5, 1, -0.03259190043447843], [-137, 60, -1, 0.45450292792986774], [-3, -2, 1, 3.732388356261361], [-57, -12, -1, 0.3013624110326122], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [51, 0, -1, 0.7167329654327687], [-19, -19, 0, -0.06180284349225656], [5, -10, -1, 1.8352770070855957], [6, 3, 0, 4.442164186518582], [-19, -40, -1, -0.08182802453926634], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 4.358765094785036], [4, 0, 0, 2.4156135388573103], [135, -60, 1, -0.461354181454111], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 4.01560439052813], [5, 32, -1, 0.0728741216299488], [76, 195, 1, -0.08307966389521176]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 83, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -2, -1, 3.260594652317473], [-145, 109, 1, 0.24500312440752425], [-3, -5, -1, 3.461010434811315], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -13, -1, 0.04958089672782689], [-131, 77, 1, 0.4393589471524353], [-50, -174, -1, 0.24632865199354076], [5, -3, 1, -0.008031304433946018], [-139, 61, -1, 0.45462210308411516], [-1, -3, 1, 3.8375966441810783], [-58, -10, -1, 0.3072131082765585], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [49, -1, -1, 0.719980574676956], [-19, -19, 0, -0.06180284349225656], [3, -11, -1, 1.8666934861800963], [6, 3, 0, 4.442164186518582], [-18, -42, -1, -0.08796449008176715], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 4.423205623989614], [4, 0, 0, 2.4156135388573103], [137, -61, 1, -0.46146193698476323], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 4.120812678447847], [3, 31, -1, 0.06355990218865971], [77, 197, 1, -0.08323426349311648]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 84, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 3.3432193225867572], [-147, 110, 1, 0.24535196969321563], [-5, -6, -1, 3.4855710308118475], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -11, -1, 0.043810966824596856], [-133, 78, 1, 0.4395151878163647], [-51, -176, -1, 0.2466836723786175], [7, -4, 1, -0.004645539891914626], [-141, 62, -1, 0.45473782240988314], [0, -5, 1, 3.8888048353558617], [-59, -8, -1, 0.31293694503121494], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [47, -2, -1, 0.7235014327850191], [-19, -19, 0, -0.06180284349225656], [1, -10, -1, 1.8932060571955356], [6, 3, 0, 4.442164186518582], [-17, -44, -1, -0.09372524388058855], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -2, 1, 4.487646153194192], [4, 0, 0, 2.4156135388573103], [139, -62, 1, -0.4615665294843339], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 4.211010434811315], [2, 33, -1, 0.05783959415327354], [78, 199, 1, -0.08338564176932729]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 85, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 3.4368028434922566], [-149, 111, 1, 0.24569255226029865], [-6, -4, -1, 3.5314164790945], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -9, -1, 0.037658869248710126], [-135, 79, 1, 0.43966697131270904], [-52, -178, -1, 0.24703027176561695], [5, -3, 1, -0.008031304433946018], [-143, 63, -1, 0.4548502339592889], [1, -3, 1, 3.9400130265306452], [-60, -6, -1, 0.31852370242741307], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [45, -3, -1, 0.7273276177502419], [-19, -19, 0, -0.06180284349225656], [-1, -9, -1, 1.926680459649451], [6, 3, 0, 4.442164186518582], [-18, -46, -1, -0.09304217964928105], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, 0, 1, 4.548205623989614], [4, 0, 0, 2.4156135388573103], [141, -63, 1, -0.46166809612216836], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 4.297020869622631], [1, 31, -1, 0.05333787472848865], [79, 201, 1, -0.0835338981020207]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 86, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 3.530386364397756], [-151, 112, 1, 0.24602515922636858], [-5, -2, -1, 3.5644405292045778], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, -8, -1, 0.03549067991458923], [-137, 80, 1, 0.4398144854228397], [-53, -180, -1, 0.2473687430851148], [4, -5, 1, -0.06463251336126931], [-145, 64, -1, 0.4549594774529559], [0, -5, 1, 3.8888048353558617], [-61, -4, -1, 0.3239649915023399], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [43, -4, -1, 0.7314955922937263], [-19, -19, 0, -0.06180284349225656], [-3, -10, -1, 1.9554556054496834], [6, 3, 0, 4.442164186518582], [-19, -48, -1, -0.09241804581699074], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 2, 1, 4.608765094785036], [4, 0, 0, 2.4156135388573103], [143, -64, 1, -0.46176676625403523], [2, -2, 0, 0.5087787822945713], [-5, -4, 1, 4.279409225883992], [0, 29, -1, 0.0482056239896148], [80, 203, 1, -0.08367912783385986]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 87, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 3.4368028434922566], [-153, 113, 1, 0.246350064696488], [-6, 0, -1, 3.6249999999999996], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -6, -1, 0.028517972774657008], [-139, 81, 1, 0.439957907540155], [-54, -182, -1, 0.24769936598240097], [3, -3, 1, -0.04702086962263067], [-147, 65, -1, 0.45506568485750704], [1, -3, 1, 3.9400130265306452], [-62, -2, -1, 0.3292542104038159], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [41, -5, -1, 0.7360467361776962], [-19, -19, 0, -0.06180284349225656], [-5, -11, -1, 1.976968690300858], [6, 3, 0, 4.442164186518582], [-21, -47, -1, -0.0855286352444598], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 4, 1, 4.673205623989614], [4, 0, 0, 2.4156135388573103], [145, -65, 1, -0.4618626619703428], [2, -2, 0, 0.5087787822945713], [-4, -6, 1, 4.328437348717131], [1, 31, -1, 0.05333787472848865], [81, 205, 1, -0.08382142247424781]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 88, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 3.530386364397756], [-155, 114, 1, 0.24666753048430318], [-5, 2, -1, 3.6855594707954213], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -5, -1, 0.023679664342686615], [-141, 82, 1, 0.4400974053776506], [-55, -184, -1, 0.2480224075539402], [5, -4, 1, -0.02940922588399203], [-149, 66, -1, 0.4551689809157156], [3, -2, 1, 4.045221314450362], [-63, 0, -1, 0.3343864611426899], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [39, -6, -1, 0.7410278606065331], [-19, -19, 0, -0.06180284349225656], [-7, -10, -1, 2.0062688720179196], [6, 3, 0, 4.442164186518582], [-23, -46, -1, -0.0786132104611288], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 5, 1, 4.737646153194192], [4, 0, 0, 2.4156135388573103], [147, -66, 1, -0.4619558985988637], [2, -2, 0, 0.5087787822945713], [-2, -7, 1, 4.377728103231178], [0, 29, -1, 0.0482056239896148], [82, 207, 1, -0.08396086988956866]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 89, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 3.635594652317473], [-157, 115, 1, 0.24697780678625786], [-6, 4, -1, 3.718583520905499], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, -3, -1, 0.016446168650130016], [-143, 83, 1, 0.4402331376185066], [-56, -186, -1, 0.24833812303593805], [3, -3, 1, -0.04702086962263067], [-151, 67, -1, 0.45526948363377684], [5, -1, 1, 4.107388356261361], [-61, 1, -1, 0.3369953248808442], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [37, -7, -1, 0.7464916404960771], [-19, -19, 0, -0.06180284349225656], [-6, -8, -1, 2.0114851982603787], [6, 3, 0, 4.442164186518582], [-21, -47, -1, -0.0855286352444598], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 4.798205623989614], [4, 0, 0, 2.4156135388573103], [149, -67, 1, -0.4620465851663096], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 4.42202086962263], [-1, 31, -1, 0.04307337325074092], [83, 209, 1, -0.08409755448223895]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 90, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 3.7257924086809413], [-159, 116, 1, 0.24728113281238445], [-4, 5, -1, 3.767611643738638], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -5, -1, 0.024613113716194967], [-145, 84, 1, 0.44036525451496933], [-57, -188, -1, 0.24864675644856232], [5, -4, 1, -0.02940922588399203], [-153, 68, -1, 0.45536730472969006], [3, 0, 1, 4.138804835355861], [-59, 2, -1, 0.3397794788952298], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [35, -8, -1, 0.7524968586539145], [-19, -19, 0, -0.06180284349225656], [-7, -10, -1, 2.0062688720179196], [6, 3, 0, 4.442164186518582], [-20, -49, -1, -0.09072869003063044], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 4.891789144895114], [4, 0, 0, 2.4156135388573103], [151, -68, 1, -0.4621348248226307], [2, -2, 0, 0.5087787822945713], [2, -7, 1, 4.466313636014082], [-2, 29, -1, 0.03724677335339935], [84, 211, 1, -0.08423155735932739]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 91, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 2, -1, 3.73801103466704], [-161, 117, 1, 0.2475777373768644], [-2, 6, -1, 3.823791808825216], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -4, -1, 0.021513084851174764], [-147, 85, 1, 0.44049389844025194], [-58, -190, -1, 0.24894854119907903], [3, -3, 1, -0.04702086962263067], [-155, 69, -1, 0.45546255004632213], [4, 2, 1, 4.212596644181078], [-57, 3, -1, 0.3427553153209769], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [33, -9, -1, 0.7591082951634848], [-19, -19, 0, -0.06180284349225656], [-6, -8, -1, 2.0114851982603787], [6, 3, 0, 4.442164186518582], [-18, -50, -1, -0.09740814052377621], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 4.996997432814831], [4, 0, 0, 2.4156135388573103], [153, -69, 1, -0.46222071523150343], [2, -2, 0, 0.5087787822945713], [4, -8, 1, 4.495812678447846], [-3, 31, -1, 0.03285134579056986], [85, 213, 1, -0.08436295649144374]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 92, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 3.7257924086809413], [-163, 118, 1, 0.24786783945128654], [0, 5, -1, 3.8749999999999996], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -3, -1, 0.016735716438187245], [-149, 86, 1, 0.4406192043976939], [-59, -192, -1, 0.24924370064689172], [5, -4, 1, -0.02940922588399203], [-157, 70, -1, 0.45555531993235465], [2, 3, 1, 4.2952213144503615], [-55, 4, -1, 0.3459410230696694], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [31, -10, -1, 0.766396011532328], [-19, -19, 0, -0.06180284349225656], [-5, -6, -1, 2.0196398467226597], [6, 3, 0, 4.442164186518582], [-19, -52, -1, -0.09665078077373787], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 5.087195189178299], [4, 0, 0, 2.4156135388573103], [155, -70, 1, -0.4623043489301069], [2, -2, 0, 0.5087787822945713], [3, -6, 1, 4.495812678447846], [-2, 33, -1, 0.038571653825956065], [86, 215, 1, -0.08449182686254422]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 93, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -1, -1, 3.655386364397756], [-165, 119, 1, 0.24815164868329437], [2, 6, -1, 3.926208191174783], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -4, -1, 0.019933435055371936], [-151, 87, 1, 0.4407413004909865], [-60, -194, -1, 0.24953244863323187], [3, -3, 1, -0.04702086962263067], [-159, 71, -1, 0.4556457095939877], [0, 4, 1, 4.388804835355861], [-53, 5, -1, 0.34935677158706047], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [29, -11, -1, 0.774433672882896], [-19, -19, 0, -0.06180284349225656], [-3, -7, -1, 1.9735093451153902], [6, 3, 0, 4.442164186518582], [-21, -51, -1, -0.0902379774753466], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 5.173205623989615], [4, 0, 0, 2.4156135388573103], [157, -71, 1, -0.4623858136609681], [2, -2, 0, 0.5087787822945713], [2, -4, 1, 4.495812678447846], [0, 32, -1, 0.0482056239896148], [87, 217, 1, -0.08461824061125155]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 94, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 3.7257924086809413], [-167, 120, 1, 0.2484293658830964], [4, 5, -1, 3.982388356261361], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -5, -1, 0.024613113716194967], [-153, 88, 1, 0.4408603083588909], [-61, -196, -1, 0.24981498997802568], [5, -4, 1, -0.02940922588399203], [-161, 72, -1, 0.45573380941998537], [-2, 3, 1, 4.482388356261361], [-51, 6, -1, 0.3530248967197925], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [27, -12, -1, 0.783295434806597], [-19, -19, 0, -0.06180284349225656], [-2, -9, -1, 1.9438710595473438], [6, 3, 0, 4.442164186518582], [-20, -49, -1, -0.09072869003063044], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 5.259216058800931], [4, 0, 0, 2.4156135388573103], [159, -72, 1, -0.4624651926783721], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 4.57843734871713], [-2, 33, -1, 0.038571653825956065], [88, 219, 1, -0.08474226716424475]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 95, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 3.8118028434922566], [-169, 121, 1, 0.24870118348011566], [5, 3, -1, 4.038989565188684], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -4, -1, 0.021513084851174764], [-155, 89, 1, 0.44097634357753385], [-62, -198, -1, 0.25009152094626175], [3, -3, 1, -0.04702086962263067], [-163, 73, -1, 0.45581970528238946], [-3, 1, 1, 4.587596644181079], [-49, 7, -1, 0.3569700787931232], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [25, -13, -1, 0.7930508310613164], [-19, -19, 0, -0.06180284349225656], [-4, -10, -1, 1.9696282867062336], [6, 3, 0, 4.442164186518582], [-22, -48, -1, -0.08400622821366874], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -5, 1, 5.329622103084116], [4, 0, 0, 2.4156135388573103], [161, -73, 1, -0.46254256503158253], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 4.640604390528129], [0, 32, -1, 0.0482056239896148], [89, 221, 1, -0.08486397336223095]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 96, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 3.897813278303572], [-171, 122, 1, 0.24896728595187365], [6, 1, -1, 4.098715771644373], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -6, -1, 0.03040758647151405], [-157, 90, 1, 0.44108951603306445], [-63, -200, -1, 0.25036222968599836], [5, -4, 1, -0.02940922588399203], [-165, 74, -1, 0.45590347881499893], [-4, -1, 1, 4.677794400544546], [-47, 8, -1, 0.36121949747169635], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [23, -14, -1, 0.8037571122877804], [-19, -19, 0, -0.06180284349225656], [-6, -11, -1, 1.9885423149829375], [6, 3, 0, 4.442164186518582], [-20, -47, -1, -0.08837362785169815], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -4, 1, 5.400622006339182], [4, 0, 0, 2.4156135388573103], [163, -74, 1, -0.4626180058268924], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 4.672020869622629], [1, 34, -1, 0.05288530265043781], [90, 223, 1, -0.0849834235789757]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 97, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 3.98801103466704], [-173, 123, 1, 0.2492278502270396], [5, -1, -1, 4.1564164790945], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -5, -1, 0.02511517811733116], [-159, 91, 1, 0.44119993026718646], [-64, -202, -1, 0.2506272966399833], [3, -3, 1, -0.04702086962263067], [-167, 75, -1, 0.45598520767150813], [-3, -3, 1, 4.763804835355862], [-45, 9, -1, 0.36580294023719045], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [21, -15, -1, 0.815448737077142], [-19, -19, 0, -0.06180284349225656], [-8, -10, -1, 2.0164571721721734], [6, 3, 0, 4.442164186518582], [-19, -49, -1, -0.09353264017095021], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -3, 1, 5.4621951891783], [4, 0, 0, 2.4156135388573103], [165, -75, 1, -0.46269158647032865], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 4.703437348717129], [-1, 33, -1, 0.04338422235370261], [91, 225, 1, -0.08510067983383268]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 98, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 4, -1, 4.039219225841824], [-175, 124, 1, 0.2494830460644263], [6, -3, -1, 4.1987918088252165], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -3, -1, 0.017360258463693483], [-161, 92, 1, 0.44130768579783863], [-65, -204, -1, 0.2508868949327039], [5, -4, 1, -0.02940922588399203], [-169, 76, -1, 0.45606496576501604], [-1, -4, 1, 4.849815270167178], [-43, 10, -1, 0.3707528307658756], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [19, -16, -1, 0.8281243752833584], [-19, -19, 0, -0.06180284349225656], [-10, -9, -1, 2.042437670089099], [6, 3, 0, 4.442164186518582], [-20, -47, -1, -0.08837362785169815], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -4, 1, 5.465580953720331], [4, 0, 0, 2.4156135388573103], [167, -76, 1, -0.46276337489265534], [2, -2, 0, 0.5087787822945713], [4, 3, 1, 4.774437251972195], [1, 34, -1, 0.05288530265043781], [92, 227, 1, -0.0852158018981823]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 99, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 2, -1, 4.11301103466704], [-177, 125, 1, 0.2497330364095746], [5, -5, -1, 4.25], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -4, -1, 0.022433045374550837], [-163, 93, 1, 0.44141287741708307], [-66, -206, -1, 0.25114119073454494], [3, -3, 1, -0.04702086962263067], [-171, 77, -1, 0.4561428234904551], [1, -3, 1, 4.940013026530646], [-42, 12, -1, 0.3786792275341423], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [17, -17, -1, 0.8417329654327688], [-19, -19, 0, -0.06180284349225656], [-9, -7, -1, 2.0538605279910946], [6, 3, 0, 4.442164186518582], [-22, -48, -1, -0.08400622821366874], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -3, 1, 5.4621951891783], [4, 0, 0, 2.4156135388573103], [169, -77, 1, -0.462833435758163], [2, -2, 0, 0.5087787822945713], [2, 4, 1, 4.8482290607974114], [3, 35, -1, 0.061814214139025256], [93, 229, 1, -0.08532884739615983]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 100, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 0, -1, 4.186802843492257], [-179, 126, 1, 0.2499779777304446], [3, -6, -1, 4.3012081911747835], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -6, -1, 0.03184245316758332], [-165, 94, 1, 0.44151559546806557], [-67, -208, -1, 0.2513903436046054], [5, -4, 1, -0.02940922588399203], [-173, 78, -1, 0.4562188479313435], [0, -5, 1, 4.888804835355862], [-43, 14, -1, 0.38448169882916167], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [15, -18, -1, 0.856161934620921], [-19, -19, 0, -0.06180284349225656], [-10, -5, -1, 2.0852770070855953], [6, 3, 0, 4.442164186518582], [-20, -47, -1, -0.08837362785169815], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 5.5219213956339885], [4, 0, 0, 2.4156135388573103], [171, -78, 1, -0.4629018306585904], [2, -2, 0, 0.5087787822945713], [0, 3, 1, 4.922020869622628], [2, 33, -1, 0.05783959415327354], [94, 231, 1, -0.08543987190002648]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 101, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -1, -1, 4.218219322586757], [-181, 127, 1, 0.2502180203336154], [1, -5, -1, 4.3435835209055], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -5, -1, 0.026199323085958223], [-167, 95, 1, 0.44161592610274314], [-68, -210, -1, 0.25163450681360383], [3, -3, 1, -0.04702086962263067], [-175, 79, -1, 0.456293103052134], [1, -3, 1, 4.940013026530646], [-42, 16, -1, 0.3923155112526297], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [13, -19, -1, 0.8712320078665331], [-19, -19, 0, -0.06180284349225656], [-11, -3, -1, 2.116693486180096], [6, 3, 0, 4.442164186518582], [-19, -45, -1, -0.08882015357454455], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 1, 1, 5.570789241640049], [4, 0, 0, 2.4156135388573103], [173, -79, 1, -0.46296861829339936], [2, -2, 0, 0.5087787822945713], [-2, 4, 1, 4.9958126784478445], [3, 35, -1, 0.061814214139025256], [95, 233, 1, -0.08554892902051218]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 102, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -3, -1, 4.289219225841823], [-183, 128, 1, 0.2504533086622891], [-1, -6, -1, 4.401284228355627], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -7, -1, 0.03538679289077193], [-169, 96, 1, 0.4417139515219178], [-69, -212, -1, 0.2518738276481991], [5, -4, 1, -0.02940922588399203], [-177, 80, -1, 0.4563656498773163], [0, -5, 1, 4.888804835355862], [-43, 18, -1, 0.39748205101259887], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [11, -20, -1, 0.8867029828133992], [-19, -19, 0, -0.06180284349225656], [-10, -1, -1, 2.143206057195535], [6, 3, 0, 4.442164186518582], [-20, -43, -1, -0.08311639355461052], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 5.548205623989616], [4, 0, 0, 2.4156135388573103], [175, -80, 1, -0.4630338546375086], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 5.078437348717128], [4, 37, -1, 0.06534499925358594], [96, 235, 1, -0.08565607049243605]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 103, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -5, -1, 4.311802843492256], [-185, 129, 1, 0.2506839815773007], [-3, -5, -1, 4.461010434811316], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -8, -1, 0.04160062362254332], [-171, 97, 1, 0.4418097501989749], [-70, -214, -1, 0.25210844769795], [3, -3, 1, -0.04702086962263067], [-179, 81, -1, 0.4564365466583241], [1, -3, 1, 4.940013026530646], [-42, 20, -1, 0.4051179752034443], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [9, -21, -1, 0.9022924362281906], [-19, -19, 0, -0.06180284349225656], [-11, 1, -1, 2.173497785098964], [6, 3, 0, 4.442164186518582], [-21, -45, -1, -0.08291364851384535], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 5.621997432814832], [4, 0, 0, 2.4156135388573103], [177, -81, 1, -0.4630975930974939], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 5.172020869622628], [2, 38, -1, 0.05657447816790187], [97, 237, 1, -0.08576134625588967]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 104, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -6, -1, 4.363011034667039], [-187, 130, 1, 0.2509101726222427], [-5, -6, -1, 4.485571030811848], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -7, -1, 0.039096644075707176], [-173, 98, 1, 0.44190339708860277], [-71, -216, -1, 0.2523385031260495], [5, -4, 1, -0.02940922588399203], [-181, 82, -1, 0.456505849029205], [3, -2, 1, 5.045221314450363], [-43, 22, -1, 0.4096518847364448], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [7, -22, -1, 0.9177048425996296], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 2.2054556054496826], [6, 3, 0, 4.442164186518582], [-23, -44, -1, -0.07574586409566841], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 5.704622103084116], [4, 0, 0, 2.4156135388573103], [179, -82, 1, -0.4631598846571671], [2, -2, 0, 0.5087787822945713], [-3, -2, 1, 5.265604390528127], [1, 36, -1, 0.05262545807626643], [98, 239, 1, -0.08586480453324827]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 105, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -5, -1, 4.4053863643977555], [-189, 131, 1, 0.25113201027373583], [-6, -4, -1, 4.531416479094501], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [30, -6, -1, 0.03623788073041278], [-175, 99, 1, 0.44199496382165493], [-72, -218, -1, 0.2525641249248856], [3, -3, 1, -0.04702086962263067], [-183, 83, -1, 0.4565736101519248], [5, -1, 1, 5.107388356261362], [-42, 24, -1, 0.4170111314119738], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [5, -23, -1, 0.9326641495219565], [-19, -19, 0, -0.06180284349225656], [-11, 5, -1, 2.226968690300857], [6, 3, 0, 4.442164186518582], [-25, -45, -1, -0.07169778567779785], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 5.798205623989616], [4, 0, 0, 2.4156135388573103], [181, -83, 1, -0.4632207780133688], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 5.3708126784478445], [2, 34, -1, 0.05755690361025313], [99, 241, 1, -0.08596649190225784]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 106, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 4.475792408680941], [-191, 132, 1, 0.251349618177799], [-5, -2, -1, 4.564440529204579], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -7, -1, 0.039096644075707176], [-177, 100, 1, 0.4420845188872152], [-73, -220, -1, 0.2527854391574026], [5, -4, 1, -0.02940922588399203], [-185, 84, -1, 0.45663988085210344], [3, 0, 1, 5.138804835355862], [-43, 26, -1, 0.4209400847769798], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [3, -24, -1, 0.946941253352486], [-19, -19, 0, -0.06180284349225656], [-10, 7, -1, 2.2562688720179187], [6, 3, 0, 4.442164186518582], [-23, -44, -1, -0.07574586409566841], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 5.891789144895116], [4, 0, 0, 2.4156135388573103], [183, -84, 1, -0.46328031970273165], [2, -2, 0, 0.5087787822945713], [0, -5, 1, 5.422020869622628], [3, 32, -1, 0.06308291577532368], [100, 243, 1, -0.08606645336542855]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 107, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -5, -1, 4.5228132783035715], [-193, 133, 1, 0.2515631153732047], [-6, 0, -1, 4.625000000000001], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -5, -1, 0.028753757703034726], [-179, 101, 1, 0.44217212780283605], [-74, -222, -1, 0.2530025671851686], [3, -3, 1, -0.04702086962263067], [-187, 85, -1, 0.4567047097459078], [4, 2, 1, 5.212596644181079], [-42, 28, -1, 0.42796998204818926], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [1, -25, -1, 0.9603701597587729], [-19, -19, 0, -0.06180284349225656], [-11, 9, -1, 2.2682060571955347], [6, 3, 0, 4.442164186518582], [-24, -46, -1, -0.07586943157324044], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 5.996997432814833], [4, 0, 0, 2.4156135388573103], [185, -85, 1, -0.4633385542201079], [2, -2, 0, 0.5087787822945713], [2, -4, 1, 5.4958126784478445], [1, 31, -1, 0.05333787472848867], [101, 245, 1, -0.08616473241595045]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 108, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 4.5303863643977555], [-195, 134, 1, 0.25177261650264227], [-5, 2, -1, 4.685559470795423], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -4, -1, 0.022931962057181593], [-181, 102, 1, 0.4422578532738346], [-75, -224, -1, 0.25321562588398905], [5, -4, 1, -0.02940922588399203], [-189, 86, -1, 0.4567681433587673], [2, 3, 1, 5.295221314450362], [-43, 30, -1, 0.4313378378535918], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, -26, -1, 0.9728512936598961], [-19, -19, 0, -0.06180284349225656], [-9, 10, -1, 2.2924376700890985], [6, 3, 0, 4.442164186518582], [-25, -44, -1, -0.07017043388077628], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 0, 1, 6.048205623989617], [4, 0, 0, 2.4156135388573103], [187, -86, 1, -0.4633955241292933], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 5.578437348717128], [2, 33, -1, 0.05783959415327356], [102, 247, 1, -0.08626137110033255]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 109, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -4, -1, 4.561802843492256], [-197, 135, 1, 0.2519782320124525], [-6, 4, -1, 4.718583520905501], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -2, -1, 0.013654263079979505], [-183, 103, 1, 0.44234175534245895], [-76, -226, -1, 0.25342472784784603], [3, -3, 1, -0.04702086962263067], [-191, 87, -1, 0.45683022623651975], [0, 4, 1, 5.388804835355862], [-42, 32, -1, 0.4380085396926438], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, -25, -1, 0.9857406693567436], [-19, -19, 0, -0.06180284349225656], [-7, 11, -1, 2.3188710595473436], [6, 3, 0, 4.442164186518582], [-27, -43, -1, -0.06316891250749124], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-6, -2, 1, 6.0994138151644], [4, 0, 0, 2.4156135388573103], [189, -87, 1, -0.46345127016662546], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 5.640604390528127], [4, 34, -1, 0.06684405956671739], [103, 249, 1, -0.08635641007795342]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 110, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 4.593219322586756], [-199, 136, 1, 0.2521800683416441], [-4, 5, -1, 4.76761164373864], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -3, -1, 0.017360258463693472], [-185, 104, 1, 0.4424238915276663], [-77, -228, -1, 0.25362998158188943], [5, -4, 1, -0.02940922588399203], [-193, 88, -1, 0.4568910010495446], [-2, 3, 1, 5.482388356261362], [-43, 34, -1, 0.44086796144574164], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-5, -24, -1, 0.999422656910604], [-19, -19, 0, -0.06180284349225656], [-5, 10, -1, 2.335277007085595], [6, 3, 0, 4.442164186518582], [-29, -42, -1, -0.05622681073093173], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -4, 1, 6.155593980250978], [4, 0, 0, 2.4156135388573103], [191, -88, 1, -0.46350583133798545], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 5.672020869622627], [6, 33, -1, 0.07683019751396489], [104, 251, 1, -0.08644988867769925]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 111, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 4.686802843492255], [-201, 137, 1, 0.25237822810085164], [-2, 6, -1, 4.823791808825217], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -1, -1, 0.009121839688628766], [-187, 105, 1, 0.442504316956196], [-78, -230, -1, 0.25383149168515434], [3, -3, 1, -0.04702086962263067], [-195, 89, -1, 0.4569505086903936], [-3, 1, 1, 5.58759664418108], [-42, 36, -1, 0.44716783515659114], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-7, -23, -1, 1.0137538350553994], [-19, -19, 0, -0.06180284349225656], [-3, 11, -1, 2.3666934861800955], [6, 3, 0, 4.442164186518582], [-28, -44, -1, -0.06220726292287743], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -5, 1, 6.212195189178301], [4, 0, 0, 2.4156135388573103], [193, -89, 1, -0.46355924500968804], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 5.745812678447844], [4, 32, -1, 0.06799733606989761], [105, 253, 1, -0.08654184495185398]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 112, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 4.780386364397755], [-203, 138, 1, 0.2525728102418509], [0, 5, -1, 4.875000000000001], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, 0, -1, 0.0048214016359121896], [-189, 106, 1, 0.4425830844855624], [-79, -232, -1, 0.2540293590236325], [5, -4, 1, -0.02940922588399203], [-197, 90, -1, 0.45700878836538833], [-4, -1, 1, 5.677794400544547], [-43, 38, -1, 0.449574531742993], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-9, -22, -1, 1.0285358089250254], [-19, -19, 0, -0.06180284349225656], [-1, 10, -1, 2.3932060571955347], [6, 3, 0, 4.442164186518582], [-27, -42, -1, -0.06147383519715768], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 6.271921395633989], [4, 0, 0, 2.4156135388573103], [195, -90, 1, -0.4636115469937047], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 5.828437348717127], [3, 30, -1, 0.06406838270489158], [106, 255, 1, -0.08663231572739527]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 113, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 4.686802843492255], [-205, 139, 1, 0.2527639102182026], [2, 6, -1, 4.926208191174784], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, 1, -1, 0.0005209635831956126], [-191, 107, 1, 0.4426602448195418], [-80, -234, -1, 0.2542236808942833], [3, -3, 1, -0.04702086962263067], [-199, 91, -1, 0.45706587768061463], [-3, -3, 1, 5.763804835355863], [-42, 40, -1, 0.4555054027335333], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-11, -21, -1, 1.043527341443154], [-19, -19, 0, -0.06180284349225656], [1, 11, -1, 2.423497785098964], [6, 3, 0, 4.442164186518582], [-28, -40, -1, -0.05520496317923801], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -5, 1, 6.329622103084117], [4, 0, 0, 2.4156135388573103], [197, -91, 1, -0.4636627716276269], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 5.922020869622627], [4, 32, -1, 0.06799733606989761], [107, 257, 1, -0.08672133665484119]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 114, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 4.780386364397755], [-207, 140, 1, 0.2529516201375595], [4, 5, -1, 4.982388356261362], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, 3, -1, -0.008410936393882748], [-193, 108, 1, 0.4427358466166831], [-81, -236, -1, 0.2544145511805283], [5, -4, 1, -0.02940922588399203], [-201, 92, -1, 0.4571218127227094], [-2, -5, 1, 5.828245364560441], [-43, 42, -1, 0.45751413642606625], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-13, -20, -1, 1.0584659308655373], [-19, -19, 0, -0.06180284349225656], [3, 10, -1, 2.4554556054496826], [6, 3, 0, 4.442164186518582], [-29, -42, -1, -0.05622681073093172], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -4, 1, 6.400622006339183], [4, 0, 0, 2.4156135388573103], [199, -92, 1, -0.4637129518497451], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 6.015604390528127], [3, 30, -1, 0.06406838270489158], [108, 259, 1, -0.08680894225478195]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 115, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 4.885594652317472], [-209, 141, 1, 0.2531360289061326], [5, 3, -1, 5.038989565188685], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, 5, -1, -0.017762216014521087], [-195, 109, 1, 0.442809936592328], [-82, -238, -1, 0.25460206049973794], [3, -3, 1, -0.04702086962263067], [-203, 93, -1, 0.4571766281348041], [-1, -3, 1, 5.83759664418108], [-41, 43, -1, 0.46317514873047577], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-15, -19, -1, 1.0730945298556662], [-19, -19, 0, -0.06180284349225656], [5, 11, -1, 2.476968690300857], [6, 3, 0, 4.442164186518582], [-31, -41, -1, -0.04936936012789671], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -3, 1, 6.462195189178301], [4, 0, 0, 2.4156135388573103], [201, -93, 1, -0.46376211926958716], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 6.1208126784478445], [4, 28, -1, 0.07078924164004807], [109, 261, 1, -0.0868951659622243]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 116, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 4.97579240868094], [-211, 142, 1, 0.2533172223657814], [6, 1, -1, 5.098715771644374], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, 4, -1, -0.012317973628058945], [-197, 110, 1, 0.4428825596145887], [-83, -240, -1, 0.25478629634318445], [5, -4, 1, -0.02940922588399203], [-205, 94, -1, 0.4572303571879601], [0, -5, 1, 5.888804835355863], [-39, 44, -1, 0.46896253573120433], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-17, -18, -1, 1.0871869180949445], [-19, -19, 0, -0.06180284349225656], [7, 10, -1, 2.5062688720179187], [6, 3, 0, 4.442164186518582], [-33, -42, -1, -0.046412723210320306], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 6.521921395633989], [4, 0, 0, 2.4156135388573103], [203, -94, 1, -0.4638103042342342], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 6.211010434811312], [6, 27, -1, 0.08300786762614679], [110, 263, 1, -0.0869800401688667]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 117, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 5.061802843492256], [-213, 143, 1, 0.2534952834241607], [5, -1, -1, 5.156416479094501], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 5, -1, -0.015472374845506771], [-199, 111, 1, 0.4429537587946973], [-84, -242, -1, 0.2549673432089026], [3, -3, 1, -0.04702086962263067], [-207, 95, -1, 0.4572830318484054], [1, -3, 1, 5.940013026530647], [-37, 45, -1, 0.47486478837592266], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -17, -1, 1.1005658268768361], [-19, -19, 0, -0.06180284349225656], [9, 11, -1, 2.5182060571955347], [6, 3, 0, 4.442164186518582], [-32, -40, -1, -0.04501666302498406], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 6.579622103084117], [4, 0, 0, 2.4156135388573103], [205, -95, 1, -0.46385753589070455], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 6.297020869622628], [7, 29, -1, 0.08590127505950781], [111, 265, 1, -0.08706359626341764]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 118, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 2, -1, 5.126243372696834], [-215, 144, 1, 0.25367029217832876], [6, -3, -1, 5.198791808825217], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 7, -1, -0.0241715854505272], [-201, 112, 1, 0.4430235755721058], [-85, -244, -1, 0.25514528272787257], [5, -4, 1, -0.02940922588399203], [-209, 96, -1, 0.45733468284085665], [3, -4, 1, 5.99122121770543], [-35, 46, -1, 0.4808686780844201], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-21, -16, -1, 1.1131108868828148], [-19, -19, 0, -0.06180284349225656], [10, 9, -1, 2.5424376700890985], [6, 3, 0, 4.442164186518582], [-30, -39, -1, -0.048047819206269105], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 6.650622006339183], [4, 0, 0, 2.4156135388573103], [207, -96, 1, -0.4639038422446763], [2, -2, 0, 0.5087787822945713], [-2, -5, 1, 6.361461398827206], [5, 28, -1, 0.07632971192127541], [112, 267, 1, -0.0871458646700608]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 119, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 5.186802843492256], [-217, 145, 1, 0.2538423260321943], [5, -5, -1, 5.250000000000001], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 5, -1, -0.015472374845506773], [-203, 113, 1, 0.44309204979469236], [-86, -246, -1, 0.25532019378390963], [3, -3, 1, -0.04702086962263067], [-211, 97, -1, 0.457385339708191], [5, -3, 1, 6.052794400544548], [-33, 47, -1, 0.4869593653278335], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-23, -15, -1, 1.1247570155428466], [-19, -19, 0, -0.06180284349225656], [11, 7, -1, 2.568871059547343], [6, 3, 0, 4.442164186518582], [-31, -37, -1, -0.04141182781182017], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 4, 1, 6.724413815164399], [4, 0, 0, 2.4156135388573103], [209, -97, 1, -0.4639492502157957], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 6.3708126784478445], [3, 27, -1, 0.06581726772825347], [113, 269, 1, -0.08722687488516666]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 120, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, -1, -1, 5.206594555572538], [-219, 146, 1, 0.2540114598081551], [3, -6, -1, 5.301208191174784], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, 4, -1, -0.010656925597320576], [-205, 114, 1, 0.4431592197943946], [-87, -248, -1, 0.25549215262762276], [5, -4, 1, -0.02940922588399203], [-213, 98, -1, 0.45743503086771], [3, -2, 1, 6.045221314450364], [-31, 48, -1, 0.49312056683593153], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-25, -14, -1, 1.1354862256090272], [-19, -19, 0, -0.06180284349225656], [10, 5, -1, 2.5852770070855944], [6, 3, 0, 4.442164186518582], [-32, -39, -1, -0.04304580472422117], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 3, 1, 6.798205623989616], [4, 0, 0, 2.4156135388573103], [211, -98, 1, -0.46399378568980126], [2, -2, 0, 0.5087787822945713], [0, -5, 1, 6.422020869622628], [1, 26, -1, 0.05432395221674207], [114, 271, 1, -0.08730665551234203]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 121, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [9, -3, -1, 5.238011034667038], [-221, 147, 1, 0.25417776585326035], [1, -5, -1, 5.343583520905501], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, 2, -1, -0.0027516844582718813], [-207, 115, 1, 0.443225122458575], [-88, -250, -1, 0.2556612329847787], [3, -3, 1, -0.04702086962263067], [-215, 99, -1, 0.4574837836642203], [5, -1, 1, 6.107388356261363], [-29, 49, -1, 0.4993347794512749], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-27, -13, -1, 1.1453164271527374], [-19, -19, 0, -0.06180284349225656], [9, 3, -1, 2.607860624736028], [6, 3, 0, 4.442164186518582], [-34, -40, -1, -0.04028130658329724], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 4, 1, 6.871997432814832], [4, 0, 0, 2.4156135388573103], [213, -99, 1, -0.4640374735676751], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 6.4732290607974114], [2, 24, -1, 0.06143796201940977], [115, 273, 1, -0.08738523429590522]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 122, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, -4, -1, 5.2694275137615385], [-223, 148, 1, 0.2543413141402039], [-1, -6, -1, 5.401284228355628], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, 3, -1, -0.007092913166362861], [-209, 116, 1, 0.44328979329739354], [-89, -252, -1, 0.2558275061593885], [5, -4, 1, -0.02940922588399203], [-217, 100, -1, 0.4575316244201406], [3, 0, 1, 6.138804835355863], [-27, 50, -1, 0.5055835547724716], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-29, -12, -1, 1.1542900921074823], [-19, -19, 0, -0.06180284349225656], [8, 1, -1, 2.6392771038305285], [6, 3, 0, 4.442164186518582], [-35, -38, -1, -0.0339419550255352], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 2, 1, 6.954622103084116], [4, 0, 0, 2.4156135388573103], [215, -100, 1, -0.46408033781201763], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 6.504645539891912], [4, 23, -1, 0.07561064327596029], [116, 275, 1, -0.08746263815286814]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 123, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 5.27281327830357], [-225, 149, 1, 0.2545021723634389], [-3, -5, -1, 5.461010434811317], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, 1, -1, 0.0009403432267555871], [-211, 117, 1, 0.44335326650744783], [-90, -254, -1, 0.255991041131811], [3, -3, 1, -0.04702086962263067], [-219, 101, -1, 0.45757857848282507], [4, 2, 1, 6.21259664418108], [-25, 51, -1, 0.5118478149474379], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-31, -11, -1, 1.1624644794935233], [-19, -19, 0, -0.06180284349225656], [7, -1, -1, 2.6816524335612444], [6, 3, 0, 4.442164186518582], [-36, -36, -1, -0.02740501928634546], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 7.048205623989616], [4, 0, 0, 2.4156135388573103], [217, -101, 1, -0.4641224014908264], [2, -2, 0, 0.5087787822945713], [6, -8, 1, 6.524437251972194], [6, 22, -1, 0.09058095372033087], [117, 277, 1, -0.0875388932035024]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 124, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 5.280386364397754], [-227, 150, 1, 0.2546604060306864], [-5, -6, -1, 5.485571030811849], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, 2, -1, -0.0025758227142743213], [-213, 118, 1, 0.443415575031918], [-91, -256, -1, 0.2561519046521518], [5, -4, 1, -0.02940922588399203], [-221, 102, -1, 0.4576246702692839], [2, 3, 1, 6.295221314450363], [-23, 52, -1, 0.5181081967222945], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-33, -10, -1, 1.1699040799668292], [-19, -19, 0, -0.06180284349225656], [6, -3, -1, 2.732860624736028], [6, 3, 0, 4.442164186518582], [-38, -35, -1, -0.02086808354715572], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 7.141789144895115], [4, 0, 0, 2.4156135388573103], [219, -102, 1, -0.4641636868188477], [2, -2, 0, 0.5087787822945713], [5, -6, 1, 6.5325919004344755], [5, 20, -1, 0.08719518917829948], [118, 279, 1, -0.08761402480056232]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 125, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 5.385594652317471], [-229, 151, 1, 0.2548160785500888], [-6, -4, -1, 5.531416479094502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, 4, -1, -0.010290631783547551], [-215, 119, 1, 0.4434767506174392], [-92, -258, -1, 0.2563101613292167], [3, -3, 1, -0.04702086962263067], [-223, 103, -1, 0.45766992330846584], [0, 4, 1, 6.388804835355863], [-21, 53, -1, 0.5243454085238392], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-35, -9, -1, 1.176675262300794], [-19, -19, 0, -0.06180284349225656], [4, -4, -1, 2.7840688159108113], [6, 3, 0, 4.442164186518582], [-36, -36, -1, -0.02740501928634546], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 7.246997432814832], [4, 0, 0, 2.4156135388573103], [221, -103, 1, -0.4642042151966556], [2, -2, 0, 0.5087787822945713], [6, -4, 1, 6.578437348717128], [4, 18, -1, 0.08300786762614681], [119, 281, 1, -0.08768805755723251]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 126, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 5.475792408680939], [-231, 152, 1, 0.25496925131325077], [-5, -2, -1, 5.56444052920458], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, 3, -1, -0.007092913166362862], [-217, 120, 1, 0.4435368238679074], [-93, -260, -1, 0.2564658737152627], [5, -4, 1, -0.02940922588399203], [-225, 104, -1, 0.4577143602812557], [-2, 3, 1, 6.482388356261363], [-19, 54, -1, 0.5305405842555847], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-37, -8, -1, 1.1828427745233778], [-19, -19, 0, -0.06180284349225656], [3, -6, -1, 2.835277007085595], [6, 3, 0, 4.442164186518582], [-34, -35, -1, -0.0297114511926177], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -5, 1, 7.237646153194194], [4, 0, 0, 2.4156135388573103], [223, -104, 1, -0.4642440072476038], [2, -2, 0, 0.5087787822945713], [7, -2, 1, 6.627728103231175], [6, 17, -1, 0.10220572073454871], [120, 283, 1, -0.08776101537386505]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 127, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -5, -1, 5.52281327830357], [-233, 153, 1, 0.2551199837743878], [-6, 0, -1, 5.625000000000002], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, 2, -1, -0.002751684458271882], [-219, 121, 1, 0.44359582429540806], [-94, -262, -1, 0.25661910238677654], [3, -3, 1, -0.04702086962263067], [-227, 105, -1, 0.4577580030583304], [-3, 1, 1, 6.5875966441810805], [-17, 55, -1, 0.5366756177656156], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-39, -7, -1, 1.1884676575354267], [-19, -19, 0, -0.06180284349225656], [1, -5, -1, 2.8776523368163107], [6, 3, 0, 4.442164186518582], [-32, -34, -1, -0.03222642092225762], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 7.298205623989616], [4, 0, 0, 2.4156135388573103], [225, -105, 1, -0.46428308285278275], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 6.640604390528127], [7, 19, -1, 0.10438578907619285], [121, 285, 1, -0.08783292146356615]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 128, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -3, -1, 5.584386461142688], [-235, 154, 1, 0.2552683335257948], [-5, 2, -1, 5.685559470795424], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, 0, -1, 0.004821401635912189], [-221, 122, 1, 0.44365378036844855], [-95, -264, -1, 0.256769906021494], [5, -4, 1, -0.02940922588399203], [-229, 106, -1, 0.4578008727360059], [-5, 0, 1, 6.638804835355864], [-15, 56, -1, 0.5427334635616454], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-41, -6, -1, 1.1936061589593612], [-19, -19, 0, -0.06180284349225656], [3, -4, -1, 2.8066524335612444], [6, 3, 0, 4.442164186518582], [-33, -32, -1, -0.02495667485139504], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 7.324489852345242], [4, 0, 0, 2.4156135388573103], [227, -106, 1, -0.4643214611841083], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 6.672020869622627], [9, 20, -1, 0.11550491653948754], [122, 287, 1, -0.08790379837669039]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 129, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -1, -1, 5.655386364397754], [-237, 155, 1, 0.2554143563698301], [-6, 4, -1, 5.718583520905502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -2, -1, 0.01239448773009626], [-223, 123, 1, 0.44371071955765573], [-96, -266, -1, 0.256918341471862], [3, -3, 1, -0.04702086962263067], [-231, 107, -1, 0.4578429896701975], [-4, -2, 1, 6.7125966441810805], [-13, 57, -1, 0.5486983920906963], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-43, -5, -1, 1.198309313724051], [-19, -19, 0, -0.06180284349225656], [5, -3, -1, 2.7450792507221267], [6, 3, 0, 4.442164186518582], [-35, -33, -1, -0.022725340625522384], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -4, 1, 7.371997432814832], [4, 0, 0, 2.4156135388573103], [229, -107, 1, -0.46435916073565553], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 6.745812678447844], [8, 22, -1, 0.10371425321711478], [123, 289, 1, -0.08797366802429582]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 130, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 5.725792408680939], [-239, 156, 1, 0.2555581063876018], [-4, 5, -1, 5.767611643738641], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -4, -1, 0.01958402849686983], [-225, 124, 1, 0.44376666837909523], [-97, -268, -1, 0.25706446383513243], [5, -4, 1, -0.02940922588399203], [-233, 108, -1, 0.45788437350861017], [-2, -3, 1, 6.795221314450364], [-11, 58, -1, 0.5545561914179524], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-45, -4, -1, 1.2026229435993951], [-19, -19, 0, -0.06180284349225656], [6, -5, -1, 2.7696398467226593], [6, 3, 0, 4.442164186518582], [-34, -35, -1, -0.0297114511926177], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -3, 1, 7.445789241640049], [4, 0, 0, 2.4156135388573103], [231, -108, 1, -0.46439619935334664], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 6.828437348717127], [10, 21, -1, 0.11893713805036933], [124, 291, 1, -0.08804255170061137]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 131, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 2, -1, 5.738011034667037], [-241, 157, 1, 0.2556996360045295], [-2, 6, -1, 5.823791808825218], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -6, -1, 0.027405019286345467], [-227, 125, 1, 0.44382165243535476], [-98, -270, -1, 0.2572083265202661], [3, -3, 1, -0.04702086962263067], [-235, 109, -1, 0.45792504322126326], [0, -4, 1, 6.888804835355864], [-9, 59, -1, 0.5602943110096904], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-47, -3, -1, 1.2065879021541404], [-19, -19, 0, -0.06180284349225656], [7, -3, -1, 2.72350934511539], [6, 3, 0, 4.442164186518582], [-33, -37, -1, -0.036489707961855376], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -1, 1, 7.516789144895115], [4, 0, 0, 2.4156135388573103], [233, -109, 1, -0.4644325942630923], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 6.922020869622627], [12, 20, -1, 0.13421605880093018], [125, 293, 1, -0.0881104701045644]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, -2], "using": [1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 132, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 5.725792408680939], [-243, 158, 1, 0.25583899605294536], [0, 5, -1, 5.875000000000002], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, -4, -1, 0.020299728869144953], [-229, 126, 1, 0.44387569645452446], [-99, -272, -1, 0.25734998131181375], [4, -5, 1, -0.06463251336126931], [-237, 110, -1, 0.45796501712945076], [2, -3, 1, 6.982388356261364], [-7, 60, -1, 0.5659019471260047], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-49, -2, -1, 1.2102404491574252], [-19, -19, 0, -0.06180284349225656], [8, -5, -1, 2.747972658155488], [6, 3, 0, 4.442164186518582], [-35, -38, -1, -0.0339419550255352], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 7.5871951891783], [4, 0, 0, 2.4156135388573103], [235, -110, 1, -0.4644683620974797], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 7.015604390528127], [13, 18, -1, 0.14775465997372123], [126, 295, 1, -0.08817744336041407]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 133, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 0, -1, 5.686802843492255], [-245, 159, 1, 0.2559762358318891], [2, 6, -1, 5.926208191174785], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -2, -1, 0.012772527264000376], [-231, 127, 1, 0.443928824327199], [-100, -274, -1, 0.2574894784309315], [3, -3, 1, -0.04702086962263067], [-239, 111, -1, 0.4580043129332296], [4, -2, 1, 7.0650130265306474], [-5, 61, -1, 0.5713700726996266], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-51, -1, -1, 1.213612680115893], [-19, -19, 0, -0.06180284349225656], [10, -4, -1, 2.7196282867062336], [6, 3, 0, 4.442164186518582], [-36, -40, -1, -0.03577387346463248], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 7.673205623989616], [4, 0, 0, 2.4156135388573103], [237, -111, 1, -0.4645035189210943], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 7.1208126784478445], [11, 19, -1, 0.13172946516145498], [127, 297, 1, -0.08824349103753353]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, -2], "using": [1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 134, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-7, 2, -1, 5.731095609883707], [-247, 160, 1, 0.2561114031642417], [4, 5, -1, 5.982388356261363], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 0, -1, 0.004821401635912189], [-233, 128, 1, 0.4439810591416181], [-101, -276, -1, 0.25762686659367906], [4, -5, 1, -0.06463251336126931], [-241, 112, -1, 0.4580429477375222], [3, 0, 1, 7.138804835355864], [-3, 62, -1, 0.576691417261578], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-53, 0, -1, 1.2167329654327694], [-19, -19, 0, -0.06180284349225656], [11, -6, -1, 2.7385423149829373], [6, 3, 0, 4.442164186518582], [-35, -38, -1, -0.0339419550255352], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 5, 1, 7.737646153194194], [4, 0, 0, 2.4156135388573103], [239, -112, 1, -0.4645380802545558], [2, -2, 0, 0.5087787822945713], [-5, 0, 1, 7.172020869622628], [12, 17, -1, 0.1460322711234835], [128, 299, 1, -0.08830863216938131]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 135, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 5.718219322586755], [-249, 161, 1, 0.25624454445133327], [5, 3, -1, 6.038989565188686], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 2, -1, -0.003547452542374867], [-235, 129, 1, 0.44403242321705316], [-102, -278, -1, 0.25776219306674025], [3, -3, 1, -0.04702086962263067], [-243, 113, -1, 0.4580809380769144], [4, 2, 1, 7.2125966441810805], [-1, 63, -1, 0.5818604043393587], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-51, 1, -1, 1.2198532507496456], [-19, -19, 0, -0.06180284349225656], [9, -5, -1, 2.7397760495193593], [6, 3, 0, 4.442164186518582], [-34, -40, -1, -0.04028130658329724], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 7.798205623989616], [4, 0, 0, 2.4156135388573103], [241, -113, 1, -0.4645720610973442], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 7.2232290607974114], [14, 18, -1, 0.15341391190933207], [129, 301, 1, -0.08837288527170077]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 136, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 3, -1, 5.789219225841821], [-251, 162, 1, 0.2563757047251563], [6, 1, -1, 6.0987157716443745], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, 1, -1, 0.0004015675492605583], [-237, 130, 1, 0.4440829381355406], [-103, -280, -1, 0.25789550372069675], [5, -4, 1, -0.02940922588399203], [-245, 114, -1, 0.45811829993922387], [5, 4, 1, 7.246193191617225], [1, 64, -1, 0.5868730547821649], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-49, 2, -1, 1.2232254817081134], [-19, -19, 0, -0.06180284349225656], [10, -7, -1, 2.756268872017919], [6, 3, 0, 4.442164186518582], [-32, -41, -1, -0.04692834217231655], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 7.891789144895116], [4, 0, 0, 2.4156135388573103], [243, -114, 1, -0.4646054759494864], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 7.328437348717129], [12, 17, -1, 0.1460322711234835], [130, 303, 1, -0.08843626835998346]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 137, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 4, -1, 5.863011034667037], [-253, 163, 1, 0.256504927698303], [5, -1, -1, 6.156416479094502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 2, -1, -0.003547452542374867], [-239, 131, 1, 0.4441326247720586], [-104, -282, -1, 0.25802684308097984], [3, -3, 1, -0.04702086962263067], [-247, 115, -1, 0.4581550487879094], [3, 5, 1, 7.302794400544548], [2, 62, -1, 0.5895187118815636], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-47, 3, -1, 1.2268780287113983], [-19, -19, 0, -0.06180284349225656], [11, -9, -1, 2.768206057195535], [6, 3, 0, 4.442164186518582], [-33, -39, -1, -0.040637357316140404], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 2, 1, 7.974413815164399], [4, 0, 0, 2.4156135388573103], [245, -115, 1, -0.46463833883216865], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 7.422020869622629], [10, 18, -1, 0.12891285759816246], [131, 305, 1, -0.08849879896623149]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 138, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 5.936802843492254], [-255, 164, 1, 0.25663225581174204], [6, -3, -1, 6.198791808825218], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 0, -1, 0.004821401635912189], [-241, 132, 1, 0.4441815033232333], [-105, -284, -1, 0.2581562543766156], [5, -4, 1, -0.02940922588399203], [-249, 116, -1, 0.45819119958338844], [2, 3, 1, 7.295221314450364], [3, 60, -1, 0.5923375867707779], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-45, 4, -1, 1.2308429872661435], [-19, -19, 0, -0.06180284349225656], [9, -10, -1, 2.792437670089099], [6, 3, 0, 4.442164186518582], [-32, -41, -1, -0.04692834217231655], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 0, 1, 8.048205623989617], [4, 0, 0, 2.4156135388573103], [247, -116, 1, -0.4646706633073369], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 7.515604390528129], [9, 16, -1, 0.1297549393862573], [132, 307, 1, -0.08856049415505078]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 139, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 6.0105946523174705], [-257, 165, 1, 0.25675773028054294], [5, -5, -1, 6.250000000000002], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -2, -1, 0.012772527264000376], [-243, 133, 1, 0.444229593334659], [-106, -286, -1, 0.2582837795868753], [3, -3, 1, -0.04702086962263067], [-251, 117, -1, 0.4582267668033214], [0, 4, 1, 7.388804835355864], [4, 58, -1, 0.5953453117789052], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-43, 5, -1, 1.2351566171414876], [-19, -19, 0, -0.06180284349225656], [7, -11, -1, 2.8188710595473436], [6, 3, 0, 4.442164186518582], [-33, -39, -1, -0.040637357316140404], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -2, 1, 8.121997432814833], [4, 0, 0, 2.4156135388573103], [249, -117, 1, -0.4647024624963427], [2, -2, 0, 0.5087787822945713], [3, -1, 1, 7.620812678447846], [8, 14, -1, 0.1308302942588988], [133, 309, 1, -0.08862137053910686]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 140, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 6.093219322586754], [-259, 166, 1, 0.2568813911376492], [3, -6, -1, 6.301208191174785], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -1, -1, 0.009008723188064878], [-245, 134, 1, 0.44427691372690853], [-107, -288, -1, 0.2584094594859335], [5, -4, 1, -0.02940922588399203], [-253, 118, -1, 0.45826176446192457], [-2, 3, 1, 7.482388356261364], [5, 56, -1, 0.5985591423992402], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-41, 6, -1, 1.2398597719061775], [-19, -19, 0, -0.06180284349225656], [5, -10, -1, 2.835277007085595], [6, 3, 0, 4.442164186518582], [-32, -41, -1, -0.04692834217231655], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 8.204622103084118], [4, 0, 0, 2.4156135388573103], [251, -118, 1, -0.46473374909768767], [2, -2, 0, 0.5087787822945713], [4, 1, 1, 7.711010434811314], [6, 13, -1, 0.11702545890303687], [134, 311, 1, -0.08868144429397157]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 141, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 6.155386364397753], [-261, 167, 1, 0.2570032772757964], [1, -5, -1, 6.343583520905502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -3, -1, 0.017697688932863973], [-247, 135, 1, 0.44432348282030776], [-108, -290, -1, 0.25853333368563247], [3, -3, 1, -0.04702086962263067], [-255, 119, -1, 0.458296206128362], [-3, 1, 1, 7.587596644181081], [6, 54, -1, 0.6019981048813283], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-39, 7, -1, 1.244998273330112], [-19, -19, 0, -0.06180284349225656], [3, -11, -1, 2.8666934861800955], [6, 3, 0, 4.442164186518582], [-33, -43, -1, -0.048226846063372804], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 8.298205623989617], [4, 0, 0, 2.4156135388573103], [253, -119, 1, -0.4647645354039176], [2, -2, 0, 0.5087787822945713], [3, 3, 1, 7.79702086962263], [4, 12, -1, 0.09941381516439823], [135, 313, 1, -0.08874073117238936]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 142, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -1, -1, 6.21308707184788], [-263, 168, 1, 0.25712342648766623], [-1, -6, -1, 6.401284228355629], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -1, -1, 0.009008723188064878], [-249, 136, 1, 0.44436931835854093], [-109, -292, -1, 0.258655440676446], [5, -4, 1, -0.02940922588399203], [-257, 120, -1, 0.4583301049442694], [-4, -1, 1, 7.677794400544549], [7, 52, -1, 0.605683139647729], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-37, 8, -1, 1.2506231563421608], [-19, -19, 0, -0.06180284349225656], [1, -10, -1, 2.8932060571955347], [6, 3, 0, 4.442164186518582], [-32, -45, -1, -0.054024310185047], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 8.324489852345243], [4, 0, 0, 2.4156135388573103], [255, -120, 1, -0.4647948333177134], [2, -2, 0, 0.5087787822945713], [1, 4, 1, 7.8830313044339455], [3, 14, -1, 0.0818021714257596], [136, 315, 1, -0.08879924651798883]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 143, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 6.272813278303569], [-265, 169, 1, 0.2572418755043618], [-3, -5, -1, 6.4610104348113175], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 1, -1, 0.000741399651507121], [-251, 137, 1, 0.44441443753115123], [-110, -294, -1, 0.2587758178667296], [3, -3, 1, -0.04702086962263067], [-259, 121, -1, 0.45836347364045626], [-3, -3, 1, 7.763804835355865], [8, 50, -1, 0.6096372303671961], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-35, 9, -1, 1.2567906685647448], [-19, -19, 0, -0.06180284349225656], [-1, -11, -1, 2.923497785098964], [6, 3, 0, 4.442164186518582], [-31, -43, -1, -0.05299120412194728], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -4, 1, 8.371997432814833], [4, 0, 0, 2.4156135388573103], [257, -121, 1, -0.46482465436722237], [2, -2, 0, 0.5087787822945713], [-1, 3, 1, 7.973229060797413], [2, 16, -1, 0.06799733606989766], [137, 317, 1, -0.08885700527846474]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 144, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -4, -1, 6.334386461142687], [-267, 170, 1, 0.25735866003228547], [-5, -6, -1, 6.48557103081185], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 3, -1, -0.007717455191869095], [-253, 138, 1, 0.44445885699499704], [-111, -296, -1, 0.2588945016203393], [5, -4, 1, -0.02940922588399203], [-261, 122, -1, 0.4583963245528315], [-2, -5, 1, 7.828245364560443], [9, 48, -1, 0.6138855035764539], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-33, 10, -1, 1.2635618508987094], [-19, -19, 0, -0.06180284349225656], [-3, -10, -1, 2.955455605449683], [6, 3, 0, 4.442164186518582], [-32, -41, -1, -0.04692834217231654], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -3, 1, 8.44578924164005], [4, 0, 0, 2.4156135388573103], [259, -122, 1, -0.4648540097206722], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 8.07843734871713], [3, 14, -1, 0.0818021714257596], [138, 319, 1, -0.0889140220182541]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 145, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 6.3855946523174705], [-269, 171, 1, 0.25747381478849535], [-6, -4, -1, 6.531416479094503], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, 1, -1, 0.0005209635831956109], [-255, 139, 1, 0.4445025928947183], [-112, -298, -1, 0.25901152729269894], [3, -3, 1, -0.04702086962263067], [-263, 123, -1, 0.45842866963759415], [-1, -3, 1, 7.837596644181081], [10, 46, -1, 0.6184552770535019], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-31, 11, -1, 1.2710014513720154], [-19, -19, 0, -0.06180284349225656], [-5, -11, -1, 2.9769686903008576], [6, 3, 0, 4.442164186518582], [-30, -42, -1, -0.05368924764197218], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -1, 1, 8.516789144895116], [4, 0, 0, 2.4156135388573103], [261, -123, 1, -0.46488291020030587], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 8.17202086962263], [4, 12, -1, 0.09941381516439823], [139, 321, 1, -0.08897031093072896]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 146, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 6.475792408680938], [-271, 172, 1, 0.2575873735346135], [-5, -2, -1, 6.564440529204581], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 3, -1, -0.007717455191869095], [-257, 140, 1, 0.4445456608822677], [-113, -300, -1, 0.25912692926538816], [5, -4, 1, -0.02940922588399203], [-265, 124, -1, 0.4584605204857282], [-2, -5, 1, 7.828245364560443], [11, 44, -1, 0.6233760263313743], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-29, 12, -1, 1.2791758387580563], [-19, -19, 0, -0.06180284349225656], [-7, -10, -1, 3.006268872017919], [6, 3, 0, 4.442164186518582], [-28, -43, -1, -0.0605420253342297], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 8.587195189178301], [4, 0, 0, 2.4156135388573103], [263, -124, 1, -0.46491136629567437], [2, -2, 0, 0.5087787822945713], [-6, -1, 1, 8.198305097978256], [6, 13, -1, 0.11702545890303687], [140, 323, 1, -0.08902588584992693]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 147, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -5, -1, 6.522813278303569], [-273, 173, 1, 0.2576993691093539], [-6, 0, -1, 6.625000000000003], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 5, -1, -0.015472374845506775], [-259, 141, 1, 0.444588076135555], [-114, -302, -1, 0.2592407409793216], [3, -3, 1, -0.04702086962263067], [-267, 125, -1, 0.4584918883368387], [-1, -3, 1, 7.837596644181081], [12, 42, -1, 0.6286792275341421], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-27, 13, -1, 1.2881495037128012], [-19, -19, 0, -0.06180284349225656], [-9, -11, -1, 3.018206057195535], [6, 3, 0, 4.442164186518582], [-26, -44, -1, -0.06746272241832038], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 8.673205623989617], [4, 0, 0, 2.4156135388573103], [265, -125, 1, -0.46493938817632124], [2, -2, 0, 0.5087787822945713], [-4, -2, 1, 8.245812678447846], [8, 12, -1, 0.14178914489511427], [141, 325, 1, -0.08908076026184021]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 148, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -3, -1, 6.584386461142687], [-275, 174, 1, 0.2578098334597354], [-5, 2, -1, 6.6855594707954245], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 7, -1, -0.0241715854505272], [-261, 142, 1, 0.4446298533762511], [-115, -304, -1, 0.2593529949665863], [5, -4, 1, -0.02940922588399203], [-269, 126, -1, 0.45852278409236347], [0, -5, 1, 7.888804835355865], [14, 43, -1, 0.6344816988291615], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-25, 14, -1, 1.2979797052565114], [-19, -19, 0, -0.06180284349225656], [-10, -9, -1, 3.042437670089099], [6, 3, 0, 4.442164186518582], [-25, -42, -1, -0.06695302058012621], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 4, 1, 8.759216058800932], [4, 0, 0, 2.4156135388573103], [267, -126, 1, -0.46496698570389133], [2, -2, 0, 0.5087787822945713], [-6, -3, 1, 8.245812678447846], [10, 13, -1, 0.1525628240696912], [142, 327, 1, -0.08913494731528185]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 149, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 6.6355946523174705], [-277, 175, 1, 0.2579187976710405], [-6, 4, -1, 6.7185835209055025], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 5, -1, -0.015472374845506773], [-263, 143, 1, 0.44467100688679684], [-116, -306, -1, 0.2594637228809989], [3, -3, 1, -0.04702086962263067], [-271, 127, -1, 0.45855321832819423], [1, -3, 1, 7.940013026530648], [16, 42, -1, 0.6423155112526295], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-23, 15, -1, 1.308708915322692], [-19, -19, 0, -0.06180284349225656], [-11, -7, -1, 3.0688710595473436], [6, 3, 0, 4.442164186518582], [-26, -44, -1, -0.06746272241832038], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 3, 1, 8.8494138151644], [4, 0, 0, 2.4156135388573103], [269, -127, 1, -0.46499416844369396], [2, -2, 0, 0.5087787822945713], [-4, -2, 1, 8.245812678447846], [12, 14, -1, 0.16098699800351615], [143, 329, 1, -0.0891884598323479]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 150, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 6.725792408680938], [-279, 176, 1, 0.2580262919955785], [-4, 5, -1, 6.7676116437386415], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, 7, -1, -0.022751502549231434], [-265, 144, 1, 0.4447115505266557], [-117, -308, -1, 0.25957295552744253], [5, -4, 1, -0.02940922588399203], [-273, 128, -1, 0.4585832013067351], [3, -2, 1, 8.045221314450366], [18, 43, -1, 0.6474820510125987], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-21, 16, -1, 1.3203550439827239], [-19, -19, 0, -0.06180284349225656], [-10, -5, -1, 3.085277007085595], [6, 3, 0, 4.442164186518582], [-28, -43, -1, -0.06054202533422969], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 2, 1, 8.954622103084118], [4, 0, 0, 2.4156135388573103], [271, -128, 1, -0.4650209456757488], [2, -2, 0, 0.5087787822945713], [-3, -4, 1, 8.319604487273063], [11, 16, -1, 0.14406263228869376], [144, 331, 1, -0.08924131031849289]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 151, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 2, -1, 6.7380110346670365], [-281, 177, 1, 0.25813234588030876], [-2, 6, -1, 6.823791808825219], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, 5, -1, -0.014492369109015354], [-267, 145, 1, 0.44475149774785105], [-118, -310, -1, 0.25968072289004], [3, -3, 1, -0.04702086962263067], [-275, 129, -1, 0.45861274298843113], [5, -1, 1, 8.107388356261366], [20, 42, -1, 0.6551179752034442], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, 17, -1, 1.3329001039887025], [-19, -19, 0, -0.06180284349225656], [-11, -3, -1, 3.1166934861800955], [6, 3, 0, 4.442164186518582], [-29, -41, -1, -0.05442607081801653], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 9.048205623989617], [4, 0, 0, 2.4156135388573103], [273, -129, 1, -0.46504732640534174], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 8.370812678447846], [13, 15, -1, 0.16185668848968465], [145, 333, 1, -0.08929351097223497]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 152, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 6.725792408680938], [-283, 178, 1, 0.2582369879933743], [0, 5, -1, 6.875000000000003], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 6, -1, -0.019473493537852278], [-269, 146, 1, 0.4447908616098243], [-119, -312, -1, 0.2597870541592161], [5, -4, 1, -0.02940922588399203], [-277, 130, -1, 0.45864185304279004], [3, 0, 1, 8.138804835355867], [22, 43, -1, 0.6596518847364446], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-17, 18, -1, 1.3462790127705941], [-19, -19, 0, -0.06180284349225656], [-10, -1, -1, 3.1432060571955347], [6, 3, 0, 4.442164186518582], [-31, -40, -1, -0.04747256288091578], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -2, 1, 9.108765094785038], [4, 0, 0, 2.4156135388573103], [275, -130, 1, -0.4650733193731152], [2, -2, 0, 0.5087787822945713], [0, -5, 1, 8.42202086962263], [12, 17, -1, 0.14603227112348352], [146, 335, 1, -0.08934507369450666]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 153, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 6.811802843492254], [-285, 179, 1, 0.25834024624959817], [2, 6, -1, 6.926208191174786], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, 5, -1, -0.016556519814133832], [-271, 147, 1, 0.4448296547936462], [-120, -314, -1, 0.25989197775769957], [3, -3, 1, -0.04702086962263067], [-279, 131, -1, 0.45867054085892633], [4, 2, 1, 8.212596644181083], [24, 42, -1, 0.6670111314119735], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-15, 19, -1, 1.3603714010098724], [-19, -19, 0, -0.06180284349225656], [-11, 1, -1, 3.1734977850989634], [6, 3, 0, 4.442164186518582], [-29, -41, -1, -0.05442607081801653], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 9.173205623989617], [4, 0, 0, 2.4156135388573103], [277, -131, 1, -0.4650989330647172], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 8.473229060797413], [11, 19, -1, 0.131729465161455], [147, 337, 1, -0.0893960100976661]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 154, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 6.89781327830357], [-287, 180, 1, 0.258442147834987], [4, 5, -1, 6.982388356261364], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 7, -1, -0.0241715854505272], [-273, 148, 1, 0.4448678896156173], [-121, -316, -1, 0.2599955213655133], [5, -4, 1, -0.02940922588399203], [-281, 132, -1, 0.45869881555564906], [2, 3, 1, 8.295221314450368], [26, 43, -1, 0.6709400847769795], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-13, 20, -1, 1.3750000000000013], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 3.205455605449682], [6, 3, 0, 4.442164186518582], [-31, -42, -1, -0.05120819117478335], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -5, 1, 9.237646153194195], [4, 0, 0, 2.4156135388573103], [279, -132, 1, -0.4651241757200316], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 8.57843734871713], [9, 18, -1, 0.12199743281483152], [148, 339, 1, -0.08944633151418314]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 155, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 6.988011034667037], [-289, 181, 1, 0.25854271923028727], [5, 3, -1, 7.038989565188687], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, 8, -1, -0.0265950774585884], [-275, 149, 1, 0.4449055780402849], [-122, -318, -1, 0.26009771194399744], [3, -3, 1, -0.04702086962263067], [-283, 133, -1, 0.45872668599111815], [0, 4, 1, 8.388804835355867], [28, 42, -1, 0.677969982048189], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-11, 21, -1, 1.3899385894223846], [-19, -19, 0, -0.06180284349225656], [-11, 5, -1, 3.2269686903008568], [6, 3, 0, 4.442164186518582], [-29, -43, -1, -0.05797041054120516], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -6, 1, 9.298205623989617], [4, 0, 0, 2.4156135388573103], [281, -133, 1, -0.46514905534200995], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 8.64060439052813], [7, 19, -1, 0.10438578907619289], [149, 341, 1, -0.08949604900501386]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 156, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 5, -1, 6.936802843492254], [-291, 182, 1, 0.25864198623363766], [6, 1, -1, 7.098715771644375], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, 9, -1, -0.028775145800232535], [-277, 150, 1, 0.44494273169290727], [-123, -320, -1, 0.2601985757589098], [5, -4, 1, -0.02940922588399203], [-285, 134, -1, 0.4587541607720892], [-2, 3, 1, 8.482388356261366], [30, 43, -1, 0.6813378378535916], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-9, 22, -1, 1.4049301219405133], [-19, -19, 0, -0.06180284349225656], [-10, 7, -1, 3.2562688720179183], [6, 3, 0, 4.442164186518582], [-28, -41, -1, -0.057043304854391776], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -7, 1, 9.342498390381069], [4, 0, 0, 2.4156135388573103], [283, -134, 1, -0.4651735797051255], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 8.672020869622632], [5, 20, -1, 0.08719518917829952], [150, 343, 1, -0.08954517336767652]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 157, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-293, 183, 1, 0.25873997398235543], [5, -1, -1, 7.156416479094503], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, 11, -1, -0.03503785403894096], [-279, 151, 1, 0.4449793618713916], [-124, -322, -1, 0.26029813840264293], [3, -3, 1, -0.04702086962263067], [-287, 135, -1, 0.4587812482627679], [-3, 1, 1, 8.587596644181083], [32, 42, -1, 0.6880085396926435], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-7, 23, -1, 1.4197120958101392], [-19, -19, 0, -0.06180284349225656], [-8, 6, -1, 3.2614851982603774], [6, 3, 0, 4.442164186518582], [-27, -43, -1, -0.06316891250749124], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -5, 1, 9.329622103084118], [4, 0, 0, 2.4156135388573103], [285, -135, 1, -0.4651977563634679], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 8.703437348717133], [3, 19, -1, 0.0731295868087715], [151, 345, 1, -0.08959371514404098]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 158, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-295, 184, 1, 0.2588367069738969], [6, -3, -1, 7.198791808825219], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, 12, -1, -0.040494855103700475], [-281, 152, 1, 0.4450154795577319], [-125, -324, -1, 0.2603964248155982], [5, -4, 1, -0.02940922588399203], [-289, 136, -1, 0.4588079565932928], [-4, -1, 1, 8.67779440054455], [34, 43, -1, 0.6908679614457414], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-5, 24, -1, 1.4340432739549347], [-19, -19, 0, -0.06180284349225656], [-10, 5, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-28, -45, -1, -0.06381948650344067], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -4, 1, 9.400622006339184], [4, 0, 0, 2.4156135388573103], [287, -136, 1, -0.4652215926584959], [2, -2, 0, 0.5087787822945713], [7, 2, 1, 8.716313636014084], [2, 21, -1, 0.0633176574090746], [152, 347, 1, -0.08964168462784394]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 159, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-297, 185, 1, 0.25893220908602743], [5, -5, -1, 7.250000000000003], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, 11, -1, -0.03503785403894096], [-283, 153, 1, 0.4450510954289703], [-126, -326, -1, 0.2604934593067537], [3, -3, 1, -0.04702086962263067], [-291, 137, -1, 0.4588342936678649], [-3, -3, 1, 8.763804835355867], [36, 42, -1, 0.6971678351565909], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, 25, -1, 1.447725261508795], [-19, -19, 0, -0.06180284349225656], [-8, 4, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-30, -46, -1, -0.06042906939642314], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -3, 1, 9.462195189178301], [4, 0, 0, 2.4156135388573103], [289, -137, 1, -0.4652450957264656], [2, -2, 0, 0.5087787822945713], [5, 3, 1, 8.758031304433947], [4, 20, -1, 0.07962210308411545], [153, 349, 1, -0.0896890918719406]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 160, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-299, 186, 1, 0.25902650359623564], [3, -6, -1, 7.301208191174786], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, 9, -1, -0.027290072792470494], [-285, 154, 1, 0.4450862198677057], [-127, -328, -1, 0.2605892655734601], [5, -4, 1, -0.02940922588399203], [-293, 138, -1, 0.4588602671725404], [-1, -4, 1, 8.849815270167182], [38, 43, -1, 0.6995745317429927], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, 26, -1, 1.4606146372056426], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 3.205455605449682], [6, 3, 0, 4.442164186518582], [-28, -47, -1, -0.06689350115766085], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 9.52192139563399], [4, 0, 0, 2.4156135388573103], [291, -138, 1, -0.4652682725055492], [2, -2, 0, 0.5087787822945713], [3, 4, 1, 8.819604487273065], [6, 19, -1, 0.09688775836106729], [154, 351, 1, -0.08973594669530371]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 161, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-301, 187, 1, 0.25911961320042404], [1, -5, -1, 7.3435835209055025], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, 10, -1, -0.02924741427490004], [-287, 155, 1, 0.44512086297217074], [-128, -330, -1, 0.26068386672049926], [3, -3, 1, -0.04702086962263067], [-295, 139, -1, 0.4588858845827035], [1, -3, 1, 8.94001302653065], [40, 42, -1, 0.705505402733533], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [1, 27, -1, 1.4726248998679405], [-19, -19, 0, -0.06180284349225656], [-11, 5, -1, 3.2269686903008568], [6, 3, 0, 4.442164186518582], [-26, -46, -1, -0.07052754983288505], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [293, -139, 1, -0.4652911297426593], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 8.870812678447848], [7, 21, -1, 0.09941381516439823], [155, 353, 1, -0.08978225868978033]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 162, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-303, 188, 1, 0.2592115600309081], [-1, -6, -1, 7.40128422835563], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, 8, -1, -0.022011634693094296], [-289, 156, 1, 0.4451550345658982], [-129, -332, -1, 0.2607772852784363], [5, -4, 1, -0.02940922588399203], [-297, 140, -1, 0.45891115317023407], [3, -2, 1, 9.045221314450368], [42, 43, -1, 0.707514136426066], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [3, 26, -1, 1.4850161450304866], [-19, -19, 0, -0.06180284349225656], [-10, 7, -1, 3.2562688720179183], [6, 3, 0, 4.442164186518582], [-28, -47, -1, -0.06689350115766085], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 2, 1, 9.592498390381069], [4, 0, 0, 2.4156135388573103], [295, -140, 1, -0.46531367399999357], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 8.961010434811316], [5, 20, -1, 0.08719518917829952], [156, 355, 1, -0.0898280372266158]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 163, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-305, 189, 1, 0.2593023656737526], [-3, -5, -1, 7.461010434811318], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, 6, -1, -0.01582139828401144], [-291, 157, 1, 0.44518874420699533], [-130, -334, -1, 0.26086954322129646], [3, -3, 1, -0.04702086962263067], [-299, 141, -1, 0.45893608001038444], [5, -1, 1, 9.107388356261367], [43, 41, -1, 0.7131751487304755], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [5, 25, -1, 1.4981494445272705], [-19, -19, 0, -0.06180284349225656], [-8, 6, -1, 3.2614851982603774], [6, 3, 0, 4.442164186518582], [-29, -45, -1, -0.06129521019573648], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [297, -141, 1, -0.46533591166131205], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 9.047020869622632], [3, 21, -1, 0.07078924164004813], [157, 357, 1, -0.08987329146275427]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 164, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-307, 190, 1, 0.25939205118547387], [-5, -6, -1, 7.485571030811851], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, 7, -1, -0.018226223280301348], [-293, 158, 1, 0.44522200119704547], [-131, -336, -1, 0.2609606619835941], [5, -4, 1, -0.02940922588399203], [-301, 142, -1, 0.45896067198837975], [4, 1, 1, 9.177794400544553], [44, 39, -1, 0.718962535731204], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [7, 24, -1, 1.5119002007336364], [-19, -19, 0, -0.06180284349225656], [-10, 5, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-28, -43, -1, -0.060542025334229706], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 2, 1, 9.592498390381069], [4, 0, 0, 2.4156135388573103], [299, -142, 1, -0.46535784893796045], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 9.133031304433947], [1, 20, -1, 0.056156749617703054], [158, 359, 1, -0.08991803034692487]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 165, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-309, 191, 1, 0.2594806371091348], [-6, -4, -1, 7.531416479094504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, 6, -1, -0.014186302288062645], [-295, 159, 1, 0.44525481458965416], [-132, -338, -1, 0.2610506624767425], [3, -3, 1, -0.04702086962263067], [-303, 143, -1, 0.45898493580575417], [3, 3, 1, 9.263804835355868], [45, 37, -1, 0.7248647883759224], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [9, 23, -1, 1.5260958050698343], [-19, -19, 0, -0.06180284349225656], [-8, 4, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-29, -45, -1, -0.06129521019573648], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [301, -143, 1, -0.4653794918746511], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 9.223229060797415], [3, 21, -1, 0.07078924164004813], [159, 361, 1, -0.08996226262552154]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 166, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-311, 192, 1, 0.25956814348985774], [-5, -2, -1, 7.564440529204582], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, 5, -1, -0.010435055467219583], [-297, 160, 1, 0.44528719319865523], [-133, -340, -1, 0.26113956510487024], [5, -4, 1, -0.02940922588399203], [-305, 144, -1, 0.45900887798643464], [1, 4, 1, 9.349815270167184], [46, 35, -1, 0.7308686780844198], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [11, 22, -1, 1.5405247742579866], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 3.205455605449682], [6, 3, 0, 4.442164186518582], [-27, -46, -1, -0.06792979354433056], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 2, 1, 9.592498390381069], [4, 0, 0, 2.4156135388573103], [303, -144, 1, -0.46540084635501294], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 9.328437348717133], [2, 19, -1, 0.06489730720487742], [160, 363, 1, -0.09000599684828502]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 167, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-313, 193, 1, 0.2596545898897801], [-6, 0, -1, 7.6250000000000036], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, 7, -1, -0.01688774710510691], [-299, 161, 1, 0.44531914560599384], [-134, -342, -1, 0.26122738978006804], [3, -3, 1, -0.04702086962263067], [-307, 145, -1, 0.4590325048825852], [-1, 3, 1, 9.440013026530652], [47, 33, -1, 0.7369593653278332], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [13, 21, -1, 1.554953743446139], [-19, -19, 0, -0.06180284349225656], [-8, 2, -1, 3.1980583810994956], [6, 3, 0, 4.442164186518582], [-29, -47, -1, -0.06441760612493096], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [305, -145, 1, -0.4654219181069211], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 9.422020869622632], [0, 18, -1, 0.04820562398961488], [161, 365, 1, -0.09004924137379468]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 168, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-315, 194, 1, 0.2597399954024752], [-5, 2, -1, 7.685559470795425], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, 5, -1, -0.010435055467219583], [-301, 162, 1, 0.44535068016930063], [-135, -344, -1, 0.26131415593709123], [5, -4, 1, -0.02940922588399203], [-309, 146, -1, 0.45905582268022216], [-3, 2, 1, 9.54522131445037], [48, 31, -1, 0.7431205668359313], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [15, 20, -1, 1.5691493477823368], [-19, -19, 0, -0.06180284349225656], [-10, 1, -1, 3.1749315746260875], [6, 3, 0, 4.442164186518582], [-27, -46, -1, -0.06792979354433056], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 2, 1, 9.592498390381069], [4, 0, 0, 2.4156135388573103], [307, -146, 1, -0.4654427127076161], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 9.51560439052813], [-2, 19, -1, 0.031513940774352295], [162, 367, 1, -0.09009200437477737]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 169, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-317, 195, 1, 0.2598243786668616], [-6, 4, -1, 7.718583520905503], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, 4, -1, -0.006946361694806813], [-303, 163, 1, 0.4453818050291706], [-136, -346, -1, 0.2613998825475393], [3, -3, 1, -0.04702086962263067], [-311, 147, -1, 0.45907883740460953], [-5, 1, 1, 9.607388356261369], [49, 29, -1, 0.7493347794512747], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [17, 19, -1, 1.5829001039887027], [-19, -19, 0, -0.06180284349225656], [-9, 3, -1, 3.210277007085594], [6, 3, 0, 4.442164186518582], [-29, -45, -1, -0.06129521019573648], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [309, -147, 1, -0.4654632355886232], [2, -2, 0, 0.5087787822945713], [3, -1, 1, 9.620812678447848], [-3, 21, -1, 0.025622006339181585], [163, 369, 1, -0.0901342938432403]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 170, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-319, 196, 1, 0.25990775788062037], [-4, 5, -1, 7.767611643738642], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, 2, -1, -0.0009635019188958234], [-305, 164, 1, 0.445412528116161], [-137, -348, -1, 0.2614845881335346], [5, -4, 1, -0.02940922588399203], [-313, 148, -1, 0.45910155492544674], [-3, 0, 1, 9.63880483535587], [50, 27, -1, 0.7555835547724714], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [19, 18, -1, 1.5960334034854866], [-19, -19, 0, -0.06180284349225656], [-10, 5, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-28, -47, -1, -0.06689350115766085], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 2, 1, 9.592498390381069], [4, 0, 0, 2.4156135388573103], [311, -148, 1, -0.4654834920404792], [2, -2, 0, 0.5087787822945713], [4, 1, 1, 9.711010434811316], [-1, 22, -1, 0.040976284538226534], [164, 371, 1, -0.09017611759543528]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 171, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 6.905386364397754], [-321, 197, 1, 0.259990150813142], [-2, 6, -1, 7.82379180882522], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, 1, -1, 0.002029496065761686], [-307, 165, 1, 0.44544285715751986], [-138, -350, -1, 0.2615682907809196], [3, -3, 1, -0.04702086962263067], [-315, 149, -1, 0.4591239809618559], [-4, -2, 1, 9.712596644181087], [51, 25, -1, 0.7618478149474377], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [21, 17, -1, 1.6084246486480327], [-19, -19, 0, -0.06180284349225656], [-8, 4, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-30, -48, -1, -0.06350117704166908], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [313, -149, 1, -0.46550348721727736], [2, -2, 0, 0.5087787822945713], [3, 3, 1, 9.797020869622632], [-3, 21, -1, 0.02562200633918159], [165, 373, 1, -0.09021748327665993]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 172, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 6, -1, 6.963087071847881], [-323, 198, 1, 0.2600715748180201], [0, 5, -1, 7.8750000000000036], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, 0, -1, 0.004821401635912189], [-309, 166, 1, 0.44547279968365766], [-139, -352, -1, 0.2616510081519944], [5, -4, 1, -0.02940922588399203], [-317, 150, -1, 0.45914612108717895], [-2, -3, 1, 9.795221314450371], [52, 23, -1, 0.7681081967222942], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [23, 16, -1, 1.6199982733301124], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 3.205455605449682], [6, 3, 0, 4.442164186518582], [-31, -46, -1, -0.058025730296743044], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 9.650622006339184], [4, 0, 0, 2.4156135388573103], [315, -150, 1, -0.46552322614103725], [2, -2, 0, 0.5087787822945713], [2, 5, 1, 9.86146139882721], [-1, 20, -1, 0.0402544983615267], [166, 375, 1, -0.09025839836590269]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 173, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 8, -1, 6.975792408680939], [-325, 199, 1, 0.2601520468451133], [2, 6, -1, 7.926208191174787], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -1, -1, 0.007823968821080768], [-311, 167, 1, 0.44550236303437374], [-140, -354, -1, 0.26173275749781055], [3, -3, 1, -0.04702086962263067], [-319, 151, -1, 0.45916798073359255], [0, -4, 1, 9.88880483535587], [53, 21, -1, 0.7743454085238389], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [25, 15, -1, 1.6307225306214548], [-19, -19, 0, -0.06180284349225656], [-11, 5, -1, 3.2269686903008568], [6, 3, 0, 4.442164186518582], [-33, -45, -1, -0.05169991446010991], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 5, 1, 9.673205623989617], [4, 0, 0, 2.4156135388573103], [317, -151, 1, -0.46554271370590766], [2, -2, 0, 0.5087787822945713], [0, 6, 1, 9.922020869622632], [0, 18, -1, 0.04820562398961488], [167, 377, 1, -0.0902988701803372]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 174, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 6, -1, 6.963087071847881], [-327, 200, 1, 0.26023158345218844], [4, 5, -1, 7.982388356261365], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -2, -1, 0.011059575430065166], [-313, 168, 1, 0.44553155436484737], [-141, -356, -1, 0.261813555670041], [5, -4, 1, -0.02940922588399203], [-321, 152, -1, 0.4591895651965484], [2, -3, 1, 9.982388356261369], [54, 19, -1, 0.7805405842555845], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [27, 14, -1, 1.6406008114388302], [-19, -19, 0, -0.06180284349225656], [-9, 4, -1, 3.225631285284639], [6, 3, 0, 4.442164186518582], [-35, -46, -1, -0.04888723622807563], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 9.650622006339184], [4, 0, 0, 2.4156135388573103], [319, -152, 1, -0.4655619546822103], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 9.961010434811316], [1, 16, -1, 0.058139886142385286], [168, 379, 1, -0.09033890587967207]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 175, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 8, -1, 6.975792408680939], [-329, 201, 1, 0.2603102008161663], [5, 3, -1, 8.038989565188688], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -1, -1, 0.00782396882108077], [-315, 169, 1, 0.44556038065140496], [-142, -358, -1, 0.261893419132442], [3, -3, 1, -0.04702086962263067], [-323, 153, -1, 0.45921087963904744], [3, -1, 1, 10.087596644181087], [55, 17, -1, 0.7866756177656153], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [29, 13, -1, 1.64966201554271], [-19, -19, 0, -0.06180284349225656], [-10, 6, -1, 3.2450792507221258], [6, 3, 0, 4.442164186518582], [-34, -48, -1, -0.05431831528736437], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 5, 1, 9.673205623989617], [4, 0, 0, 2.4156135388573103], [321, -153, 1, -0.46558095372033087], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 10.047020869622632], [3, 15, -1, 0.07962210308411545], [169, 381, 1, -0.09037851247036072]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 176, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 6, -1, 6.963087071847881], [-331, 202, 1, 0.26038791474398176], [6, 1, -1, 8.098715771644377], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -2, -1, 0.011059575430065166], [-317, 170, 1, 0.4455888486970718], [-143, -360, -1, 0.2619723639719235], [5, -4, 1, -0.02940922588399203], [-325, 154, -1, 0.4592319290957547], [5, 0, 1, 10.13880483535587], [56, 15, -1, 0.7927334635616452], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [31, 12, -1, 1.6579516881638028], [-19, -19, 0, -0.06180284349225656], [-8, 5, -1, 3.247972658155487], [6, 3, 0, 4.442164186518582], [-32, -47, -1, -0.057268816489645574], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 9.650622006339184], [4, 0, 0, 2.4156135388573103], [323, -154, 1, -0.46559971535446437], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 10.133031304433947], [4, 17, -1, 0.08498484597624599], [170, 383, 1, -0.09041769680967739]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 177, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 6.905386364397754], [-333, 203, 1, 0.2604647406830761], [5, -1, -1, 8.156416479094505], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -4, -1, 0.01704002762201089], [-319, 171, 1, 0.44561696513691906], [-144, -362, -1, 0.26205040590924367], [3, -3, 1, -0.04702086962263067], [-327, 155, -1, 0.45925271847696164], [7, 1, 1, 10.161388453006303], [57, 13, -1, 0.798698392090696], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [33, 11, -1, 1.6655247742579868], [-19, -19, 0, -0.06180284349225656], [-10, 4, -1, 3.2196282867062322], [6, 3, 0, 4.442164186518582], [-34, -46, -1, -0.05110159042509026], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 5, 1, 9.673205623989617], [4, 0, 0, 2.4156135388573103], [325, -155, 1, -0.4656182440062211], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 10.223229060797415], [6, 16, -1, 0.10530574959956894], [171, 385, 1, -0.09045646560966374]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 178, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 6.975792408680939], [-335, 204, 1, 0.26054069373153566], [6, -3, -1, 8.19879180882522], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -3, -1, 0.013654263079979505], [-321, 172, 1, 0.4456447364432134], [-145, -364, -1, 0.262127560309342], [5, -4, 1, -0.02940922588399203], [-329, 156, -1, 0.4592732525724023], [5, 2, 1, 10.199364306151292], [58, 11, -1, 0.8045561914179522], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [35, 10, -1, 1.6724401990413178], [-19, -19, 0, -0.06180284349225656], [-8, 3, -1, 3.2161689415207646], [6, 3, 0, 4.442164186518582], [-33, -48, -1, -0.05654801098726655], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 4, 1, 9.69578924164005], [4, 0, 0, 2.4156135388573103], [327, -156, 1, -0.4656365439880988], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 10.328437348717133], [7, 18, -1, 0.10723480595387387], [172, 387, 1, -0.09049482544095078]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 179, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 5, -1, 7.02281327830357], [-337, 205, 1, 0.2606157886478884], [5, -5, -1, 8.250000000000004], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -4, -1, 0.0161703371358424], [-323, 173, 1, 0.4456721689303788], [-146, -366, -1, 0.2622038421913254], [3, -3, 1, -0.04702086962263067], [-331, 157, -1, 0.4592935360549305], [4, 4, 1, 10.26380483535587], [59, 9, -1, 0.8102943110096902], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [37, 9, -1, 1.6787571122877818], [-19, -19, 0, -0.06180284349225656], [-10, 2, -1, 3.190485295005311], [6, 3, 0, 4.442164186518582], [-35, -47, -1, -0.050531825759753304], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 5, 1, 9.766789144895116], [4, 0, 0, 2.4156135388573103], [329, -157, 1, -0.4656546195068276], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 10.422020869622632], [5, 17, -1, 0.09373212491748927], [173, 389, 1, -0.09053278273646102]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 180, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 3, -1, 7.084386461142688], [-339, 206, 1, 0.26069003986057554], [3, -6, -1, 8.301208191174787], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -6, -1, 0.0221153712593171], [-325, 174, 1, 0.4456992687597779], [-147, -368, -1, 0.262279266238121], [5, -4, 1, -0.02940922588399203], [-333, 158, -1, 0.4593135734840625], [2, 5, 1, 10.328245364560448], [60, 7, -1, 0.8159019471260045], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [39, 8, -1, 1.6845324781819617], [-19, -19, 0, -0.06180284349225656], [-11, 4, -1, 3.2145774451383105], [6, 3, 0, 4.442164186518582], [-36, -49, -1, -0.05155919394585866], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 9.837195189178301], [4, 0, 0, 2.4156135388573103], [331, -158, 1, -0.4656724746665925], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 10.51560439052813], [4, 15, -1, 0.08968178281777475], [174, 391, 1, -0.09057034379499469]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 181, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 1, -1, 7.135594652317471], [-341, 207, 1, 0.2607634614771067], [1, -5, -1, 8.343583520905502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -7, -1, 0.02572090285435282], [-327, 175, 1, 0.4457260419443205], [-148, -370, -1, 0.26235384680580714], [3, -3, 1, -0.04702086962263067], [-335, 159, -1, 0.4593333693093924], [0, 4, 1, 10.38880483535587], [61, 5, -1, 0.8213700726996265], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [41, 7, -1, 1.6898196694317513], [-19, -19, 0, -0.06180284349225656], [-10, 6, -1, 3.2450792507221258], [6, 3, 0, 4.442164186518582], [-34, -48, -1, -0.05431831528736436], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 9.923205623989617], [4, 0, 0, 2.4156135388573103], [333, -159, 1, -0.46569011347213835], [2, -2, 0, 0.5087787822945713], [3, -1, 1, 10.620812678447848], [5, 13, -1, 0.10664315461578658], [175, 393, 1, -0.09060751478470491]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 182, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 2, -1, 7.126243372696833], [-343, 208, 1, 0.2608360672929144], [-1, -6, -1, 8.40128422835563], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -9, -1, 0.031105629991538902], [-329, 176, 1, 0.4457524943529068], [-149, -372, -1, 0.26242759793263754], [5, -4, 1, -0.02940922588399203], [-337, 160, -1, 0.45935292787388393], [-2, 3, 1, 10.482388356261369], [62, 3, -1, 0.8266914172615779], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [43, 6, -1, 1.694667765958908], [-19, -19, 0, -0.06180284349225656], [-11, 8, -1, 3.259144853091654], [6, 3, 0, 4.442164186518582], [-36, -47, -1, -0.048375635309299], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 10.009216058800932], [4, 0, 0, 2.4156135388573103], [335, -160, 1, -0.46570753983176344], [2, -2, 0, 0.5087787822945713], [4, 1, 1, 10.711010434811316], [4, 11, -1, 0.1037142532171148], [176, 395, 1, -0.09064430174646523]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 183, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, 1, -1, 7.164219225841822], [-345, 209, 1, 0.2609078707999162], [-3, -5, -1, 8.46101043481132], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -10, -1, 0.035058976787742016], [-331, 177, 1, 0.4457786317147122], [-150, -374, -1, 0.2625005333477674], [3, -3, 1, -0.04702086962263067], [-339, 161, -1, 0.45937225341704563], [-3, 1, 1, 10.587596644181087], [63, 1, -1, 0.8318604043393586], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [45, 5, -1, 1.6991213216941317], [-19, -19, 0, -0.06180284349225656], [-10, 10, -1, 3.2840688159108105], [6, 3, 0, 4.442164186518582], [-34, -48, -1, -0.05431831528736436], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 10.0994138151644], [4, 0, 0, 2.4156135388573103], [337, -161, 1, -0.465724757560205], [2, -2, 0, 0.5087787822945713], [5, 3, 1, 10.758031304433947], [6, 12, -1, 0.12199743281483152], [177, 397, 1, -0.09068071059713351]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 184, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -1, -1, 7.213087071847882], [-347, 210, 1, 0.2609788851947982], [-5, -6, -1, 8.485571030811851], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -9, -1, 0.03316577308516686], [-333, 178, 1, 0.4458044596233193], [-151, -376, -1, 0.26257266647969524], [5, -4, 1, -0.02940922588399203], [-341, 162, -1, 0.4593913500779922], [-4, -1, 1, 10.677794400544554], [64, -1, -1, 0.8368730547821648], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [47, 4, -1, 1.70322042532788], [-19, -19, 0, -0.06180284349225656], [-8, 9, -1, 3.2934200955314488], [6, 3, 0, 4.442164186518582], [-33, -50, -1, -0.05955832155689043], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -2, 1, 10.108765094785038], [4, 0, 0, 2.4156135388573103], [339, -162, 1, -0.46574177038142206], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 10.765604390528132], [4, 11, -1, 0.1037142532171148], [178, 399, 1, -0.09071674713271635]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 185, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 7.272813278303571], [-349, 211, 1, 0.2610491233870288], [-6, -4, -1, 8.531416479094505], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -10, -1, 0.03751109311374731], [-335, 179, 1, 0.44582998354070524], [-152, -378, -1, 0.2626440104644295], [3, -3, 1, -0.04702086962263067], [-343, 163, -1, 0.45941022189839886], [-5, -3, 1, 10.724815270167186], [62, -2, -1, 0.8395187118815635], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [49, 3, -1, 1.7070009330861469], [-19, -19, 0, -0.06180284349225656], [-6, 10, -1, 3.323058381099495], [6, 3, 0, 4.442164186518582], [-34, -48, -1, -0.05431831528736436], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-7, -3, 1, 10.112646153194195], [4, 0, 0, 2.4156135388573103], [341, -163, 1, -0.46575858193127945], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 10.87081267844785], [6, 12, -1, 0.12199743281483152], [179, 401, 1, -0.09075241703143659]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 186, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 7.280386364397755], [-351, 212, 1, 0.26111859800661336], [-5, -2, -1, 8.564440529204582], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -8, -1, 0.030578628794801915], [-337, 180, 1, 0.44585520880108814], [-153, -380, -1, 0.2627145781533915], [5, -4, 1, -0.02940922588399203], [-345, 164, -1, 0.45942887282535105], [-3, -4, 1, 10.786388453006303], [60, -3, -1, 0.8423375867707777], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [51, 2, -1, 1.7104947916386173], [-19, -19, 0, -0.06180284349225656], [-4, 9, -1, 3.342506346536982], [6, 3, 0, 4.442164186518582], [-36, -47, -1, -0.048375635309299], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -4, 1, 10.155593980250979], [4, 0, 0, 2.4156135388573103], [343, -164, 1, -0.46577519576013715], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 10.961010434811318], [4, 11, -1, 0.1037142532171148], [180, 403, 1, -0.0907877258567085]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 187, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 7.385594652317472], [-353, 213, 1, 0.26118732141159995], [-6, 0, -1, 8.625000000000004], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -7, -1, 0.02653055037693129], [-339, 181, 1, 0.44588014061464026], [-154, -382, -1, 0.2627843821210639], [3, -3, 1, -0.04702086962263067], [-347, 165, -1, 0.4594473067140955], [-1, -3, 1, 10.837596644181087], [58, -4, -1, 0.845345311778905], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [53, 1, -1, 1.7137303982476018], [-19, -19, 0, -0.06180284349225656], [-2, 10, -1, 3.37765233681631], [6, 3, 0, 4.442164186518582], [-35, -45, -1, -0.0471967313666282], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -5, 1, 10.212195189178303], [4, 0, 0, 2.4156135388573103], [345, -165, 1, -0.46579161533534885], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 11.047020869622633], [6, 10, -1, 0.1342160588009302], [181, 405, 1, -0.09082267906002278]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 188, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -4, -1, 7.334386461142689], [-355, 214, 1, 0.26125530569534433], [-5, 2, -1, 8.685559470795425], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -6, -1, 0.024213227765994955], [-341, 182, 1, 0.44590478407107226], [-155, -384, -1, 0.2628534346723942], [5, -4, 1, -0.02940922588399203], [-349, 166, -1, 0.45946552733069523], [-2, -5, 1, 10.828245364560448], [59, -2, -1, 0.8397794788952295], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [55, 0, -1, 1.7167329654327703], [-19, -19, 0, -0.06180284349225656], [0, 11, -1, 3.4090688159108105], [6, 3, 0, 4.442164186518582], [-36, -47, -1, -0.048375635309299], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 10.271921395633992], [4, 0, 0, 2.4156135388573103], [347, -166, 1, -0.46580784404367354], [2, -2, 0, 0.5087787822945713], [-5, 4, 1, 11.064632513361271], [4, 11, -1, 0.10371425321711482], [182, 407, 1, -0.09085728198374556]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 189, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 7.385594652317472], [-357, 215, 1, 0.2613225626935446], [-6, 4, -1, 8.718583520905502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -8, -1, 0.03007217086041864], [-343, 183, 1, 0.4459291441430933], [-156, -386, -1, 0.2629217478499628], [3, -3, 1, -0.04702086962263067], [-351, 167, -1, 0.45948353835459343], [-1, -3, 1, 10.837596644181087], [60, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [53, -1, -1, 1.7197355326179389], [-19, -19, 0, -0.06180284349225656], [1, 13, -1, 3.4212874418969093], [6, 3, 0, 4.442164186518582], [-35, -49, -1, -0.05368924764197218], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -7, 1, 10.320789241640052], [4, 0, 0, 2.4156135388573103], [349, -167, 1, -0.4658238851936033], [2, -2, 0, 0.5087787822945713], [-4, 2, 1, 11.098229060797417], [6, 12, -1, 0.12199743281483154], [183, 409, 1, -0.09089153986383335]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 190, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 7.47579240868094], [-359, 216, 1, 0.26138910399105236], [-4, 5, -1, 8.767611643738642], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -9, -1, 0.03432044406967645], [-345, 184, 1, 0.44595322568975354], [-157, -388, -1, 0.26298933344092373], [5, -4, 1, -0.02940922588399203], [-353, 168, -1, 0.4595013433810892], [-2, -5, 1, 10.828245364560448], [61, -2, -1, 0.8396027873851489], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [51, -2, -1, 1.7229711392269234], [-19, -19, 0, -0.06180284349225656], [3, 12, -1, 3.448058381099495], [6, 3, 0, 4.442164186518582], [-37, -48, -1, -0.047887703623373794], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 10.271921395633992], [4, 0, 0, 2.4156135388573103], [351, -168, 1, -0.46583974201761097], [2, -2, 0, 0.5087787822945713], [-3, 0, 1, 11.172020869622633], [4, 13, -1, 0.09571320445920481], [184, 411, 1, -0.0909254578324678]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 191, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -6, -1, 7.488011034667038], [-361, 217, 1, 0.2614549409284698], [-2, 6, -1, 8.82379180882522], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -7, -1, 0.027405019286345464], [-347, 185, 1, 0.44597703345967193], [-158, -390, -1, 0.26305620298372706], [3, -3, 1, -0.04702086962263067], [-355, 169, -1, 0.45951894592372894], [-1, -3, 1, 10.837596644181087], [59, -3, -1, 0.8424721217709333], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [49, -3, -1, 1.7264649977793938], [-19, -19, 0, -0.06180284349225656], [5, 13, -1, 3.4675063465369824], [6, 3, 0, 4.442164186518582], [-36, -46, -1, -0.046718790031273015], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -7, 1, 10.320789241640052], [4, 0, 0, 2.4156135388573103], [353, -169, 1, -0.46585541767432104], [2, -2, 0, 0.5087787822945713], [-4, -2, 1, 11.24581267844785], [3, 11, -1, 0.09058095372033093], [185, 413, 1, -0.09095904092061244]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 192, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 7.47579240868094], [-363, 218, 1, 0.26152008460854026], [0, 5, -1, 8.875000000000004], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -5, -1, 0.020684160351188974], [-349, 186, 1, 0.4460005720941554], [-159, -392, -1, 0.26312236777463], [5, -4, 1, -0.02940922588399203], [-357, 170, -1, 0.4595363494166166], [-2, -5, 1, 10.828245364560448], [57, -4, -1, 0.8455369491854979], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [47, -4, -1, 1.7302455055376607], [-19, -19, 0, -0.06180284349225656], [4, 11, -1, 3.4645774451383105], [6, 3, 0, 4.442164186518582], [-35, -44, -1, -0.04545875895205256], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 10.271921395633992], [4, 0, 0, 2.4156135388573103], [355, -170, 1, -0.4658709152506061], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 11.328437348717134], [2, 9, -1, 0.08300786762614687], [186, 415, 1, -0.09099229406049424]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 193, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -6, -1, 7.488011034667038], [-365, 219, 1, 0.26158454590233904], [2, 6, -1, 8.926208191174787], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -3, -1, 0.014172681256550527], [-351, 187, 1, 0.44602384613021195], [-160, -394, -1, 0.2631878388740055], [3, -3, 1, -0.04702086962263067], [-359, 171, -1, 0.45955355721664604], [-1, -3, 1, 10.837596644181087], [55, -5, -1, 0.8488154303308417], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [45, -5, -1, 1.734344609171409], [-19, -19, 0, -0.06180284349225656], [6, 10, -1, 3.4950792507221258], [6, 3, 0, 4.442164186518582], [-33, -43, -1, -0.0482268460633728], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -7, 1, 10.320789241640052], [4, 0, 0, 2.4156135388573103], [357, -171, 1, -0.46588623776361276], [2, -2, 0, 0.5087787822945713], [-1, -5, 1, 11.390604390528134], [1, 11, -1, 0.06263459317776715], [187, 417, 1, -0.09102522208801246]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 194, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -7, -1, 7.5194275137615385], [-367, 220, 1, 0.2616483354552727], [4, 5, -1, 8.982388356261366], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -2, -1, 0.011313917911256133], [-353, 188, 1, 0.44604686000346405], [-161, -396, -1, 0.2632526271124547], [5, -4, 1, -0.02940922588399203], [-361, 172, -1, 0.4595705726056584], [-2, -5, 1, 10.828245364560448], [56, -3, -1, 0.8429044764235948], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [43, -6, -1, 1.7387981649066326], [-19, -19, 0, -0.06180284349225656], [5, 8, -1, 3.497972658155487], [6, 3, 0, 4.442164186518582], [-35, -44, -1, -0.04545875895205256], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 10.271921395633992], [4, 0, 0, 2.4156135388573103], [359, -172, 1, -0.46590138816271903], [2, -2, 0, 0.5087787822945713], [0, -3, 1, 11.422020869622635], [-1, 12, -1, 0.034973285959819966], [188, 419, 1, -0.09105782974507769]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 195, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -5, -1, 7.561802843492255], [-369, 221, 1, 0.2617114636928934], [5, 3, -1, 9.03898956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -1, -1, 0.00794168695278838], [-355, 189, 1, 0.4460696180509636], [-162, -398, -1, 0.26331674309673075], [3, -3, 1, -0.04702086962263067], [-363, 173, -1, 0.45958739879252825], [-1, -3, 1, 10.837596644181087], [54, -4, -1, 0.8461542244734085], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [41, -7, -1, 1.7436462614337893], [-19, -19, 0, -0.06180284349225656], [4, 6, -1, 3.50265233681631], [6, 3, 0, 4.442164186518582], [-36, -42, -1, -0.039623645272444136], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -7, 1, 10.320789241640052], [4, 0, 0, 2.4156135388573103], [361, -173, 1, -0.46591636933142616], [2, -2, 0, 0.5087787822945713], [2, -4, 1, 11.495812678447852], [0, 10, -1, 0.04820562398961491], [189, 421, 1, -0.09109012168188278]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 196, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -3, -1, 7.584386461142688], [-371, 222, 1, 0.2617739408265339], [6, 1, -1, 9.098715771644379], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, 1, -1, 0.0017611068714500355], [-357, 190, 1, 0.4460921245139149], [-163, -400, -1, 0.26338019721548106], [5, -4, 1, -0.02940922588399203], [-365, 174, -1, 0.45960403891517937], [-2, -5, 1, 10.828245364560448], [55, -2, -1, 0.8401713646974975], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [39, -8, -1, 1.748933452683579], [-19, -19, 0, -0.06180284349225656], [5, 4, -1, 3.551680459649449], [6, 3, 0, 4.442164186518582], [-35, -40, -1, -0.037999671603818654], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 10.271921395633992], [4, 0, 0, 2.4156135388573103], [363, -174, 1, -0.4659311840891877], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 11.578437348717136], [-2, 9, -1, 0.013403380353082937], [190, 423, 1, -0.09112210245910841]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 197, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 7.635594652317471], [-373, 223, 1, 0.2618357768587715], [5, -1, -1, 9.156416479094506], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -1, -1, 0.00794168695278838], [-359, 191, 1, 0.4461143835403069], [-164, -402, -1, 0.2634429996448132], [3, -3, 1, -0.04702086962263067], [-367, 175, -1, 0.45962049604253513], [-1, -3, 1, 10.837596644181087], [56, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [37, -9, -1, 1.7547088185777588], [-19, -19, 0, -0.06180284349225656], [3, 5, -1, 3.4950792507221258], [6, 3, 0, 4.442164186518582], [-33, -41, -1, -0.044544394550316585], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -5, 1, 10.32962210308412], [4, 0, 0, 2.4156135388573103], [365, -175, 1, -0.4659458351931776], [2, -2, 0, 0.5087787822945713], [5, -3, 1, 11.586010434811321], [-1, 7, -1, 0.025622006339181616], [191, 425, 1, -0.09115377655006528]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 198, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 7.725792408680939], [-375, 224, 1, 0.26189698158872554], [6, -3, -1, 9.198791808825222], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -3, -1, 0.013993250731564974], [-361, 192, 1, 0.44613639918745984], [-165, -404, -1, 0.2635051603536925], [5, -4, 1, -0.02940922588399203], [-369, 176, -1, 0.4596367731764043], [0, -5, 1, 10.88880483535587], [57, 2, -1, 0.8288043672176308], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [35, -10, -1, 1.7610257318242228], [-19, -19, 0, -0.06180284349225656], [4, 7, -1, 3.4916934861800946], [6, 3, 0, 4.442164186518582], [-35, -40, -1, -0.03799967160381865], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 10.39178914489512], [4, 0, 0, 2.4156135388573103], [367, -176, 1, -0.46596032534000037], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 11.64573664126701], [-3, 8, -1, -0.008894501620339161], [192, 427, 1, -0.09118514834277533]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 199, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 7.811802843492255], [-377, 225, 1, 0.26195756461719405], [5, -5, -1, 9.250000000000005], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -1, -1, 0.007823968821080766], [-363, 193, 1, 0.4461581754244884], [-166, -406, -1, 0.2635666891091757], [3, -3, 1, -0.04702086962263067], [-371, 177, -1, 0.45965287325330556], [1, -3, 1, 10.940013026530654], [58, 4, -1, 0.8234276105064741], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [33, -11, -1, 1.7679411566075538], [-19, -19, 0, -0.06180284349225656], [2, 6, -1, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-33, -41, -1, -0.044544394550316585], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -1, 1, 10.496997432814837], [4, 0, 0, 2.4156135388573103], [369, -177, 1, -0.46597465716734493], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 11.703437348717138], [-4, 10, -1, -0.012353846805806801], [193, 429, 1, -0.09121622214199342]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 200, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 7.897813278303571], [-379, 226, 1, 0.262017535351637], [3, -6, -1, 9.301208191174789], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -3, -1, 0.013993250731564974], [-365, 194, 1, 0.4461797161346855], [-167, -408, -1, 0.2636275954814872], [5, -4, 1, -0.02940922588399203], [-373, 178, -1, 0.4596687991462329], [3, -2, 1, 11.045221314450371], [59, 6, -1, 0.8182566641828796], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [31, -12, -1, 1.7755142427017379], [-19, -19, 0, -0.06180284349225656], [0, 5, -1, 3.4090688159108105], [6, 3, 0, 4.442164186518582], [-32, -39, -1, -0.043045804724221155], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 10.587195189178304], [4, 0, 0, 2.4156135388573103], [371, -178, 1, -0.465988833255585], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 11.765604390528138], [-5, 12, -1, -0.01462733419938629], [194, 431, 1, -0.09124700217117215]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 201, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 5, -1, 7.968219322586756], [-381, 227, 1, 0.26207690301100944], [1, -5, -1, 9.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -1, -1, 0.007823968821080766], [-367, 195, 1, 0.4462010251178286], [-168, -410, -1, 0.2636878888489432], [3, -3, 1, -0.04702086962263067], [-375, 179, -1, 0.45968455366636385], [5, -3, 1, 11.052794400544556], [60, 4, -1, 0.8237918088252163], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [29, -13, -1, 1.7838039153228307], [-19, -19, 0, -0.06180284349225656], [1, 3, -1, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-33, -37, -1, -0.03648970796185536], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 10.67320562398962], [4, 0, 0, 2.4156135388573103], [373, -179, 1, -0.46600285612932696], [2, -2, 0, 0.5087787822945713], [4, 4, 1, 11.797020869622639], [-6, 14, -1, -0.016234905214963395], [195, 433, 1, -0.09127749257437116]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 202, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 7, -1, 7.981095609883708], [-383, 228, 1, 0.2621356766304509], [-1, -6, -1, 9.401284228355632], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, 0, -1, 0.004821401635912187], [-369, 196, 1, 0.44622210609241264], [-169, -412, -1, 0.2637475784027291], [5, -4, 1, -0.02940922588399203], [-377, 180, -1, 0.45970013956471295], [3, -2, 1, 11.045221314450371], [61, 2, -1, 0.8291701349002302], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [27, -14, -1, 1.7928651194267105], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-31, -38, -1, -0.04349612066143475], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 4, 1, 10.759216058800936], [4, 0, 0, 2.4156135388573103], [375, -180, 1, -0.4660167282589085], [2, -2, 0, 0.5087787822945713], [5, 6, 1, 11.811449838810791], [-5, 12, -1, -0.014627334199386291], [196, 435, 1, -0.09130769741811291]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 203, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 5, -1, 7.968219322586756], [-385, 229, 1, 0.26219386506583603], [-3, -5, -1, 9.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -2, -1, 0.010503091882821152], [-371, 197, 1, 0.44624296269781155], [-170, -414, -1, 0.2638066731515352], [3, -3, 1, -0.04702086962263067], [-379, 181, -1, 0.4597155595337326], [5, -1, 1, 11.10738835626137], [62, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [25, -15, -1, 1.8027434002440859], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-30, -36, -1, -0.04183398847449766], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 3, 1, 10.849413815164404], [4, 0, 0, 2.4156135388573103], [377, -181, 1, -0.4660304520618487], [2, -2, 0, 0.5087787822945713], [3, 7, 1, 11.85758034041806], [-4, 10, -1, -0.012353846805806803], [197, 437, 1, -0.09133762069318677]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 204, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 4, -1, 8.039219225841823], [-387, 230, 1, 0.2622514769981904], [-4, -3, -1, 9.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -4, -1, 0.016375963562891747], [-373, 198, 1, 0.44626359849637065], [-171, -416, -1, 0.2638651819260553], [5, -4, 1, -0.02940922588399203], [-381, 182, -1, 0.4597308162088628], [3, 0, 1, 11.138804835355872], [63, -2, -1, 0.8394373027106113], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [23, -16, -1, 1.8134676575354283], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-28, -35, -1, -0.045016663024984055], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 2, 1, 10.954622103084121], [4, 0, 0, 2.4156135388573103], [379, -182, 1, -0.46604402990425214], [2, -2, 0, 0.5087787822945713], [2, 5, 1, 11.861461398827217], [-3, 12, -1, 0.009216058800930226], [198, 439, 1, -0.0913672663164028]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 205, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 3, -1, 8.10079240868094], [-389, 231, 1, 0.2623085209379772], [-5, -1, -1, 9.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -5, -1, 0.01979171208028277], [-375, 199, 1, 0.44628401697543396], [-172, -418, -1, 0.26392311338335317], [3, -3, 1, -0.04702086962263067], [-383, 183, -1, 0.4597459121700323], [5, 1, 1, 11.170221314450373], [61, -3, -1, 0.8422074519321652], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [21, -17, -1, 1.825041282217508], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-26, -34, -1, -0.048501250865766087], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 11.04820562398962], [4, 0, 0, 2.4156135388573103], [381, -183, 1, -0.4660574641021684], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 11.922020869622639], [-5, 13, -1, -0.010231906636556832], [199, 441, 1, -0.0913966381322974]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 206, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 8.147813278303571], [-391, 232, 1, 0.2623650052292584], [-4, 1, -1, 9.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -4, -1, 0.016375963562891747], [-377, 200, 1, 0.44630422154930705], [-173, -420, -1, 0.26398047601110175], [5, -4, 1, -0.02940922588399203], [-385, 184, -1, 0.45976084994311206], [4, 3, 1, 11.241221217705439], [59, -4, -1, 0.8451601403172665], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [19, -18, -1, 1.837432527380054], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-28, -35, -1, -0.045016663024984055], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -2, 1, 11.108765094785042], [4, 0, 0, 2.4156135388573103], [383, -184, 1, -0.46607075692290856], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 12.015604390528138], [-6, 15, -1, -0.012353846805806801], [200, 443, 1, -0.0914257399147916]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 207, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -1, -1, 8.23801103466704], [-393, 233, 1, 0.2624209380537347], [-5, 3, -1, 9.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, -5, -1, 0.018746717622122766], [-379, 201, 1, 0.44632421556115875], [-174, -422, -1, 0.26403727813169836], [3, -3, 1, -0.04702086962263067], [-387, 185, -1, 0.4597756320013238], [2, 4, 1, 11.315013026530655], [60, -2, -1, 0.8396896623454573], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [17, -19, -1, 1.850565826876838], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-29, -33, -1, -0.03765886924871011], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 11.17320562398962], [4, 0, 0, 2.4156135388573103], [385, -185, 1, -0.4660839105863205], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 12.120812678447855], [-4, 16, -1, 0.009216058800930228], [201, 445, 1, -0.09145457536880415]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 208, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 8.343219322586757], [-395, 234, 1, 0.262476327434669], [-3, 4, -1, 9.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -3, -1, 0.013046224230811494], [-381, 202, 1, 0.4463440022848643], [-175, -424, -1, 0.26409352790626117], [5, -4, 1, -0.02940922588399203], [-389, 186, -1, 0.4597902607666044], [0, 3, 1, 11.388804835355872], [61, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [15, -20, -1, 1.8643165830832038], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-28, -31, -1, -0.03549067991458921], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 11.259216058800936], [4, 0, 0, 2.4156135388573103], [387, -186, 1, -0.4660969272660242], [2, -2, 0, 0.5087787822945713], [-5, 0, 1, 12.172020869622639], [-5, 14, -1, -0.006388331727199843], [202, 447, 1, -0.09148314813182068]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 209, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 8.436802843492256], [-397, 235, 1, 0.2625311812406965], [-1, 5, -1, 9.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -4, -1, 0.015416053953385394], [-383, 203, 1, 0.4463635849267906], [-176, -426, -1, 0.2641492333385104], [3, -3, 1, -0.04702086962263067], [-391, 187, -1, 0.4598047386109283], [-2, 4, 1, 11.462596644181088], [62, 2, -1, 0.8292542104038156], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [13, -21, -1, 1.8785121874194017], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-26, -30, -1, -0.03875395478627565], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -3, 1, 11.349413815164404], [4, 0, 0, 2.4156135388573103], [389, -187, 1, -0.46610980909060895], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 12.223229060797422], [-3, 13, -1, 0.012109466234291284], [203, 449, 1, -0.09151146177542004]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 210, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -5, -1, 8.497362314287678], [-399, 236, 1, 0.26258550718952584], [1, 6, -1, 9.901284228355632], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -6, -1, 0.02042579216404227], [-385, 204, 1, 0.44638296662752724], [-177, -428, -1, 0.26420440227853803], [5, -4, 1, -0.02940922588399203], [-393, 188, -1, 0.4598190678575892], [-3, 2, 1, 11.545221314450373], [63, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [11, -22, -1, 1.892941156607554], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-28, -29, -1, -0.030196924856495923], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -2, 1, 11.454622103084121], [4, 0, 0, 2.4156135388573103], [391, -188, 1, -0.4661225581447932], [2, -2, 0, 0.5087787822945713], [-4, -3, 1, 12.274437251972206], [-5, 14, -1, -0.006388331727199843], [204, 451, 1, -0.09153951980675953]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 211, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 8.48801103466704], [-401, 237, 1, 0.26263931285153397], [3, 5, -1, 9.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -8, -1, 0.025244677635613187], [-387, 205, 1, 0.44640215046356413], [-178, -430, -1, 0.2642590424264697], [3, -3, 1, -0.04702086962263067], [-395, 189, -1, 0.459833250782442], [-4, 0, 1, 11.638804835355872], [64, -2, -1, 0.8393584350544842], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [9, -23, -1, 1.9073701257957063], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-30, -28, -1, -0.021919091478339963], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -1, 1, 11.516789144895121], [4, 0, 0, 2.4156135388573103], [393, -189, 1, -0.46613517647054903], [2, -2, 0, 0.5087787822945713], [-2, -4, 1, 12.348229060797422], [-3, 15, -1, 0.01678914489511429], [205, 453, 1, -0.09156732567002025]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 212, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 8.539219225841823], [-403, 238, 1, 0.26269260565325997], [4, 3, -1, 10.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [63, -10, -1, 0.029875075056416865], [-389, 206, 1, 0.44642113944891865], [-179, -432, -1, 0.2643131613360233], [5, -4, 1, -0.02940922588399203], [-397, 190, -1, 0.459847289615108], [-5, -2, 1, 11.699364306151294], [62, -3, -1, 0.8420815050238012], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [7, -24, -1, 1.9215657301319042], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-31, -30, -1, -0.024796155548191028], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 11.587195189178306], [4, 0, 0, 2.4156135388573103], [395, -190, 1, -0.4661476660681921], [2, -2, 0, 0.5087787822945713], [0, -3, 1, 12.422020869622639], [-1, 16, -1, 0.03827136183684446], [206, 455, 1, -0.0915948827478135]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 213, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 8.61301103466704], [-405, 239, 1, 0.26274539288079907], [5, 1, -1, 10.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [65, -9, -1, 0.026719010849050324], [-391, 207, 1, 0.44643993653671266], [-180, -434, -1, 0.2643667664179659], [3, -3, 1, -0.04702086962263067], [-399, 191, -1, 0.4598611865401422], [-3, -3, 1, 11.763804835355872], [60, -4, -1, 0.8449811134601628], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [5, -25, -1, 1.9353164863382701], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-32, -32, -1, -0.027405019286345443], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 11.673205623989622], [4, 0, 0, 2.4156135388573103], [397, -191, 1, -0.46616002889743824], [2, -2, 0, 0.5087787822945713], [2, -4, 1, 12.495812678447855], [-3, 17, -1, 0.020405680096722275], [207, 457, 1, -0.09162219436254977]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 214, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 0, -1, 8.686802843492256], [-407, 240, 1, 0.26279768168310197], [6, -1, -1, 10.151284228355632], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [64, -11, -1, 0.03191147091828381], [-393, 208, 1, 0.4464585446207027], [-181, -436, -1, 0.26441986494347414], [5, -4, 1, -0.02940922588399203], [-401, 192, -1, 0.4598749436981666], [-1, -4, 1, 11.849815270167188], [61, -2, -1, 0.8396027873851489], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [3, -26, -1, 1.948449785835054], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-34, -33, -1, -0.025029748741160075], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 4, 1, 11.759216058800938], [4, 0, 0, 2.4156135388573103], [399, -192, 1, -0.4661722668784285], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 12.57843734871714], [-1, 16, -1, 0.03827136183684446], [208, 459, 1, -0.09164926377777159]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 215, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 2, -1, 8.760594652317472], [-409, 241, 1, 0.26284947907518097], [5, -3, -1, 10.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -12, -1, 0.035249353423129785], [-395, 209, 1, 0.4464769665367639], [-182, -438, -1, 0.2644724640473999], [3, -3, 1, -0.04702086962263067], [-403, 193, -1, 0.45988856318696886], [1, -5, 1, 11.920221314450373], [59, -3, -1, 0.8424721217709333], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [1, -27, -1, 1.9608410309975999], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-32, -34, -1, -0.0322264209222576], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 3, 1, 11.849413815164406], [4, 0, 0, 2.4156135388573103], [401, -193, 1, -0.4661843818927228], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 12.64060439052814], [1, 17, -1, 0.057556903610253216], [209, 461, 1, -0.09167609419945075]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 216, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 3, -1, 8.843219322586757], [-411, 242, 1, 0.2629007919412276], [3, -4, -1, 10.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -13, -1, 0.038780075735178166], [-397, 210, 1, 0.4464952050643296], [-183, -440, -1, 0.2645245707314451], [5, -4, 1, -0.02940922588399203], [-405, 194, -1, 0.45990204706256793], [2, -3, 1, 11.982388356261373], [57, -4, -1, 0.8455369491854979], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, -28, -1, 1.9724146556796796], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-34, -35, -1, -0.02971145119261768], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 2, 1, 11.954622103084123], [4, 0, 0, 2.4156135388573103], [403, -194, 1, -0.46619637578426426], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 12.67202086962264], [2, 19, -1, 0.06489730720487745], [210, 463, 1, -0.0917026887772517]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 217, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 8.936802843492256], [-413, 243, 1, 0.26295162703764285], [1, -5, -1, 10.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -14, -1, 0.04016683409541876], [-399, 211, 1, 0.4465132629277888], [-184, -442, -1, 0.2645761918672484], [3, -3, 1, -0.04702086962263067], [-407, 195, -1, 0.45991539734024894], [3, -1, 1, 12.08759664418109], [55, -5, -1, 0.8488154303308417], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, -27, -1, 1.9843446091714092], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-32, -36, -1, -0.036756298906983786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 12.048205623989622], [4, 0, 0, 2.4156135388573103], [405, -195, 1, -0.46620825036031416], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 12.745812678447857], [0, 18, -1, 0.04820562398961491], [211, 465, 1, -0.09172905060576181]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 218, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 5, -1, 8.997362314287678], [-415, 244, 1, 0.26300199099598426], [-1, -6, -1, 10.401284228355632], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [63, -16, -1, 0.044404825796477726], [-401, 212, 1, 0.44653114279784134], [-185, -444, -1, 0.26462733419938655], [5, -4, 1, -0.02940922588399203], [-409, 196, -1, 0.45992861599556645], [4, 1, 1, 12.177794400544558], [53, -6, -1, 0.8523276177502414], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-5, -26, -1, 1.9969705405846003], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-33, -38, -1, -0.038594640582137484], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 12.141789144895121], [4, 0, 0, 2.4156135388573103], [407, -196, 1, -0.46622000739235986], [2, -2, 0, 0.5087787822945713], [3, 4, 1, 12.819604487273073], [-1, 16, -1, 0.03827136183684446], [212, 467, 1, -0.09175518272568929]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 219, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 8.936802843492256], [-417, 245, 1, 0.2630518903258316], [-3, -5, -1, 10.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -18, -1, 0.049791419016542576], [-403, 213, 1, 0.44654884729281374], [-186, -446, -1, 0.26467800434829286], [3, -3, 1, -0.04702086962263067], [-411, 197, -1, 0.4599417049653187], [6, 2, 1, 12.190013026530657], [51, -7, -1, 0.8560956098837086], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-7, -25, -1, 2.010183650036128], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-32, -40, -1, -0.04501666302498404], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 12.246997432814839], [4, 0, 0, 2.4156135388573103], [409, -197, 1, -0.46623164861699534], [2, -2, 0, 0.5087787822945713], [1, 5, 1, 12.89060439052814], [-2, 14, -1, 0.025622006339181613], [213, 469, 1, -0.09178108812503033]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 220, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 5, -1, 8.997362314287678], [-419, 246, 1, 0.2631013314175747], [-4, -3, -1, 10.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -17, -1, 0.048763607045634795], [-405, 214, 1, 0.4465663789799372], [-187, -448, -1, 0.26472820881309594], [5, -4, 1, -0.02940922588399203], [-413, 198, -1, 0.4599546661484936], [4, 3, 1, 12.24122121770544], [49, -8, -1, 0.8601436883015792], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-9, -24, -1, 2.0238330910427247], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-30, -39, -1, -0.048047819206269084], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -5, 1, 12.298205623989622], [4, 0, 0, 2.4156135388573103], [411, -198, 1, -0.46624317573677615], [2, -2, 0, 0.5087787822945713], [0, 3, 1, 12.92202086962264], [-3, 12, -1, 0.009216058800930228], [214, 471, 1, -0.09180676974020571]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 221, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 8.936802843492256], [-421, 247, 1, 0.26315032054512427], [-5, -1, -1, 10.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -19, -1, 0.05440561914207005], [-407, 215, 1, 0.4465837403765868], [-188, -450, -1, 0.2647779539743813], [3, -3, 1, -0.04702086962263067], [-415, 199, -1, 0.45996750140718656], [3, 5, 1, 12.302794400544558], [47, -9, -1, 0.8644984207380522], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-11, -23, -1, 2.037732868687837], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-29, -41, -1, -0.05442607081801652], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -4, 1, 12.371997432814839], [4, 0, 0, 2.4156135388573103], [413, -199, 1, -0.4662545904210492], [2, -2, 0, 0.5087787822945713], [-2, 4, 1, 12.995812678447857], [-1, 11, -1, 0.03377665480146266], [215, 473, 1, -0.09183223045716848]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 222, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 5, -1, 8.997362314287678], [-423, 248, 1, 0.2631988638685502], [-4, 1, -1, 10.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -20, -1, 0.05524558465438761], [-409, 216, 1, 0.4466009339514865], [-189, -452, -1, 0.26482724609687736], [5, -4, 1, -0.02940922588399203], [-417, 200, -1, 0.45998021256749205], [1, 4, 1, 12.34981527016719], [45, -10, -1, 0.8691887047792215], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-13, -22, -1, 2.0516752623007957], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-27, -42, -1, -0.061473835197157656], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -2, 1, 12.454622103084123], [4, 0, 0, 2.4156135388573103], [415, -200, 1, -0.46626589430675847], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 13.078437348717141], [-3, 10, -1, 0.0018188344507437115], [216, 475, 1, -0.09185747311248288]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 223, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 8.98801103466704], [-425, 249, 1, 0.2632469674366478], [-5, 3, -1, 10.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [63, -21, -1, 0.05602959281069554], [-411, 217, 1, 0.4466179621258781], [-190, -454, -1, 0.26487609133206935], [3, -3, 1, -0.04702086962263067], [-419, 201, -1, 0.4599928014203692], [-1, 5, 1, 12.420221314450375], [43, -11, -1, 0.8742457168175427], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-15, -21, -1, 2.0654487370771437], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-28, -40, -1, -0.05520496317923799], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -1, 1, 12.516789144895123], [4, 0, 0, 2.4156135388573103], [417, -201, 1, -0.4662770889992273], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 13.17202086962264], [-1, 9, -1, 0.030593980250976267], [217, 477, 1, -0.09188250049437607]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 224, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 9.093219322586757], [-427, 250, 1, 0.2632946371894359], [-3, 4, -1, 10.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -23, -1, 0.06135814926943672], [-413, 218, 1, 0.4466348272746575], [-191, -456, -1, 0.2649244957207427], [5, -4, 1, -0.02940922588399203], [-421, 202, -1, 0.4600052697224832], [-2, 3, 1, 12.482388356261374], [44, -9, -1, 0.8664979355710722], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-17, -20, -1, 2.0788566781358186], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-29, -38, -1, -0.048656827495677096], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 12.587195189178308], [4, 0, 0, 2.4156135388573103], [419, -202, 1, -0.46628817607291834], [2, -2, 0, 0.5087787822945713], [-3, -2, 1, 13.26560439052814], [1, 10, -1, 0.06406838270489167], [218, 479, 1, -0.0919073153437627]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 225, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 9.155386364397756], [-429, 251, 1, 0.263341878960587], [-1, 5, -1, 10.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -24, -1, 0.06538087243133388], [-415, 219, 1, 0.44665153172747774], [-192, -458, -1, 0.2649724651954583], [3, -3, 1, -0.04702086962263067], [-423, 203, -1, 0.46001761919702144], [-3, 1, 1, 12.587596644181092], [42, -10, -1, 0.8715878437919982], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-30, -40, -1, -0.04998863693677872], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 12.673205623989624], [4, 0, 0, 2.4156135388573103], [421, -203, 1, -0.4662991570721713], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 13.370812678447857], [2, 8, -1, 0.08719518917829955], [219, 481, 1, -0.09193192035524406]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 226, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -1, -1, 9.213087071847884], [-431, 252, 1, 0.2633886984797933], [1, 4, -1, 10.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -23, -1, 0.06490719840401751], [-417, 220, 1, 0.44666807776982154], [-193, -460, -1, 0.26502000558296157], [5, -4, 1, -0.02940922588399203], [-425, 204, -1, 0.46002985153448817], [-4, -1, 1, 12.67779440054456], [43, -8, -1, 0.8636619714999902], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-31, -38, -1, -0.04349612066143473], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 5, 1, 12.737646153194202], [4, 0, 0, 2.4156135388573103], [423, -204, 1, -0.4663100335119201], [2, -2, 0, 0.5087787822945713], [0, -5, 1, 13.42202086962264], [0, 7, -1, 0.04820562398961491], [220, 483, 1, -0.0919563181780814]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 227, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 9.272813278303573], [-433, 253, 1, 0.26343510137507004], [3, 5, -1, 10.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -22, -1, 0.06439844698898259], [-419, 221, 1, 0.44668446764404274], [-194, -462, -1, 0.2650671226065281], [3, -3, 1, -0.04702086962263067], [-427, 205, -1, 0.4600419683934744], [-3, -3, 1, 12.763804835355876], [44, -6, -1, 0.8559563667494267], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-30, -40, -1, -0.04998863693677872], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 12.798205623989624], [4, 0, 0, 2.4156135388573103], [425, -205, 1, -0.4663208068783892], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 13.473229060797424], [-1, 9, -1, 0.030593980250976267], [221, 485, 1, -0.09198051141714542]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 228, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -5, -1, 9.297373874304105], [-435, 254, 1, 0.2634810931749976], [4, 3, -1, 11.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -20, -1, 0.06033003086341211], [-421, 222, 1, 0.4467007035503787], [-195, -464, -1, 0.26511382188824645], [5, -4, 1, -0.02940922588399203], [-429, 206, -1, 0.46005397140140836], [-2, -5, 1, 12.828245364560454], [42, -7, -1, 0.8606706894983164], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-31, -38, -1, -0.04349612066143473], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 12.891789144895123], [4, 0, 0, 2.4156135388573103], [427, -206, 1, -0.46633147862977076], [2, -2, 0, 0.5087787822945713], [0, -5, 1, 13.42202086962264], [1, 10, -1, 0.06406838270489167], [222, 487, 1, -0.09200450263384168]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 229, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -4, -1, 9.311802843492258], [-437, 255, 1, 0.26352667931090484], [5, 1, -1, 11.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -22, -1, 0.0663945844750301], [-423, 223, 1, 0.4467167876479346], [-196, -466, -1, 0.26516010895124165], [3, -3, 1, -0.04702086962263067], [-431, 207, -1, 0.4600658621552836], [0, -4, 1, 12.888804835355876], [43, -5, -1, 0.8528101128514076], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-33, -37, -1, -0.03648970796185534], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 12.99699743281484], [4, 0, 0, 2.4156135388573103], [429, -207, 1, -0.46634205019688185], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 13.473229060797424], [3, 11, -1, 0.09058095372033094], [223, 489, 1, -0.09202829434701282]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 230, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -6, -1, 9.363011034667041], [-439, 256, 1, 0.2635718651189949], [4, -1, -1, 11.16398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -20, -1, 0.06033003086341211], [-425, 224, 1, 0.44673272205563974], [-197, -468, -1, 0.26520598922183986], [5, -4, 1, -0.02940922588399203], [-433, 208, -1, 0.4600776422223669], [1, -6, 1, 12.915089063711502], [44, -3, -1, 0.8452211659826394], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-35, -38, -1, -0.03394195502553517], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 13.087195189178308], [4, 0, 0, 2.4156135388573103], [431, -208, 1, -0.4663525229838044], [2, -2, 0, 0.5087787822945713], [3, -4, 1, 13.524437251972207], [1, 12, -1, 0.06143796201940985], [224, 491, 1, -0.09205188903381899]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 231, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -7, -1, 9.414219225841824], [-441, 257, 1, 0.26361665584241617], [5, -3, -1, 11.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, -21, -1, 0.061001566722490165], [-427, 225, 1, 0.4467485088531777], [-198, -470, -1, 0.2652514680316768], [7, -3, 1, 0.013538601172791029], [-435, 209, -1, 0.46008931314088686], [3, -7, 1, 12.953245364560454], [42, -4, -1, 0.8494984945621494], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -37, -1, -0.027405019286345426], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 13.173205623989624], [4, 0, 0, 2.4156135388573103], [433, -209, 1, -0.46636289836850636], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 13.473229060797424], [0, 14, -1, 0.04820562398961491], [225, 493, 1, -0.09207528913059582]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 232, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -6, -1, 9.463087071847884], [-443, 258, 1, 0.26366105663327905], [3, -4, -1, 11.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -20, -1, 0.06033003086341211], [-429, 226, 1, 0.44676415008189047], [-199, -472, -1, 0.26529655061975144], [5, -4, 1, -0.02940922588399203], [-437, 210, -1, 0.4601008764207031], [5, -6, 1, 12.999375866167723], [43, -2, -1, 0.8417836854928762], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -35, -1, -0.020868083547155684], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 13.25921605880094], [4, 0, 0, 2.4156135388573103], [435, -210, 1, -0.466373177703446], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 13.504645539891925], [-2, 13, -1, 0.023910728815850425], [226, 495, 1, -0.09209849703369176]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 233, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -7, -1, 9.501243372696836], [-445, 259, 1, 0.26370507255462045], [1, -5, -1, 11.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -22, -1, 0.0663945844750301], [-431, 227, 1, 0.4467796477456579], [-200, -474, -1, 0.26534124213442634], [3, -3, 1, -0.04702086962263067], [-439, 211, -1, 0.4601123335439575], [6, -4, 1, 13.045221314450377], [44, 0, -1, 0.8343864611426897], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-39, -37, -1, -0.02321769773419272], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -6, 1, 13.298205623989624], [4, 0, 0, 2.4156135388573103], [437, -211, 1, -0.46638336231615957], [2, -2, 0, 0.5087787822945713], [3, -9, 1, 13.473229060797424], [-3, 15, -1, 0.016789144895114294], [227, 497, 1, -0.09212151510028477]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 234, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -5, -1, 9.54419119975362], [-447, 260, 1, 0.2637487085823179], [-1, -4, -1, 11.41398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -23, -1, 0.07109966605630756], [-433, 228, 1, 0.44679500381175336], [-201, -476, -1, 0.2653855476353765], [5, -4, 1, -0.02940922588399203], [-441, 212, -1, 0.46012368596570696], [4, -3, 1, 13.036388453006309], [45, -2, -1, 0.841455362197726], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-41, -36, -1, -0.017084771771265515], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -7, 1, 13.253912857598172], [4, 0, 0, 2.4156135388573103], [439, -212, 1, -0.4663934535098325], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 13.504645539891925], [-2, 17, -1, 0.0295671884125123], [228, 499, 1, -0.09214434564917906]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 235, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -3, -1, 9.600792408680944], [-449, 261, 1, 0.26379196960695483], [-3, -5, -1, 11.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -25, -1, 0.07736004783116414], [-435, 229, 1, 0.44681022021167505], [-202, -478, -1, 0.2654294720954883], [3, -3, 1, -0.04702086962263067], [-443, 213, -1, 0.4601349351145395], [3, -1, 1, 13.087596644181092], [43, -3, -1, 0.8454723308605501], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -35, -1, -0.011138314882376113], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -5, 1, 13.266789144895123], [4, 0, 0, 2.4156135388573103], [441, -213, 1, -0.4664034525638554], [2, -2, 0, 0.5087787822945713], [6, -8, 1, 13.524437251972207], [-4, 18, -1, 0.013403380353082937], [229, 501, 1, -0.09216699096158255]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 236, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -1, -1, 9.647813278303575], [-451, 262, 1, 0.2638348604356377], [-4, -3, -1, 11.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -27, -1, 0.08104286815868803], [-437, 230, 1, 0.446825298841956], [-203, -480, -1, 0.26547302040271], [5, -4, 1, -0.02940922588399203], [-445, 214, -1, 0.4601460823931732], [4, 1, 1, 13.17779440054456], [44, -1, -1, 0.8380029963442975], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -37, -1, -0.013684976113772633], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 13.32448985234525], [4, 0, 0, 2.4156135388573103], [443, -214, 1, -0.4664133607343644], [2, -2, 0, 0.5087787822945713], [5, -6, 1, 13.532591900434488], [-2, 17, -1, 0.0295671884125123], [230, 503, 1, -0.09218945328186531]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 237, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 1, -1, 9.738011034667043], [-453, 263, 1, 0.2638773857937673], [-5, -1, -1, 11.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -28, -1, 0.08606814145965376], [-439, 231, 1, 0.4468402415649514], [-204, -482, -1, 0.26551619736185483], [3, -3, 1, -0.04702086962263067], [-447, 215, -1, 0.4601571291790391], [3, 3, 1, 13.263804835355876], [42, -2, -1, 0.8419595472368736], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -39, -1, -0.01964751271491964], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -4, 1, 13.37199743281484], [4, 0, 0, 2.4156135388573103], [445, -215, 1, -0.46642317925476723], [2, -2, 0, 0.5087787822945713], [4, -4, 1, 13.54702086962264], [0, 18, -1, 0.04820562398961491], [231, 505, 1, -0.09221173481830004]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 238, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 3, -1, 9.84321932258676], [-455, 264, 1, 0.26391955032676484], [-4, 1, -1, 11.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -27, -1, 0.08104286815868803], [-441, 232, 1, 0.4468550502096049], [-205, -484, -1, 0.26555900769635893], [5, -4, 1, -0.02940922588399203], [-449, 216, -1, 0.4601680768248486], [1, 4, 1, 13.349815270167191], [43, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-42, -41, -1, -0.025487582625609066], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -3, 1, 13.445789241640057], [4, 0, 0, 2.4156135388573103], [447, -216, 1, -0.46643290933625486], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 13.598229060797424], [-2, 19, -1, 0.03151394077435232], [232, 507, 1, -0.09223383774378441]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 239, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 9.93680284349226], [-457, 265, 1, 0.2639613586017553], [-5, 3, -1, 11.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -25, -1, 0.07736004783116414], [-443, 233, 1, 0.44686972657219454], [-206, -486, -1, 0.26560145604999424], [3, -3, 1, -0.04702086962263067], [-451, 217, -1, 0.46017892665914517], [-1, 3, 1, 13.440013026530659], [44, -2, -1, 0.8416158005940779], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-41, -39, -1, -0.023426974330332494], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -1, 1, 13.49699743281484], [4, 0, 0, 2.4156135388573103], [449, -217, 1, -0.46644255216829955], [2, -2, 0, 0.5087787822945713], [7, -1, 1, 13.649437251972207], [-1, 17, -1, 0.03885434436897656], [233, 509, 1, -0.09225576419654652]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 240, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 3, -1, 10.030386364397758], [-459, 266, 1, 0.2640028151092073], [-3, 4, -1, 11.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -23, -1, 0.07343926337972137], [-445, 234, 1, 0.44688427241705847], [-207, -488, -1, 0.26564354698853904], [5, -4, 1, -0.02940922588399203], [-453, 218, -1, 0.4601896799868419], [0, 5, 1, 13.388804835355876], [42, -3, -1, 0.8457353966426198], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-40, -41, -1, -0.029369795310079442], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 13.587195189178308], [4, 0, 0, 2.4156135388573103], [451, -218, 1, -0.46645210891913924], [2, -2, 0, 0.5087787822945713], [6, 1, 1, 13.698305097978267], [-3, 16, -1, 0.018706581555850615], [234, 511, 1, -0.09227751628083314]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 241, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 1, -1, 10.135594652317476], [-461, 267, 1, 0.26404392426453305], [-1, 5, -1, 11.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -22, -1, 0.07322019270858887], [-447, 235, 1, 0.4468986894773018], [-208, -490, -1, 0.2656852850014062], [3, -3, 1, -0.04702086962263067], [-455, 219, -1, 0.4602003380897444], [-2, 4, 1, 13.462596644181092], [43, -1, -1, 0.838087071847883], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-41, -43, -1, -0.031193706874131314], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 13.673205623989624], [4, 0, 0, 2.4156135388573103], [453, -219, 1, -0.4664615807362495], [2, -2, 0, 0.5087787822945713], [7, 3, 1, 13.736461398827219], [-1, 15, -1, 0.03761097167214167], [235, 513, 1, -0.09229909606758196]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 242, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 0, -1, 10.18680284349226], [-463, 268, 1, 0.264084690409648], [1, 4, -1, 11.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -24, -1, 0.07996194887781807], [-449, 236, 1, 0.44691297945548475], [-209, -492, -1, 0.2657266745032312], [5, -4, 1, -0.02940922588399203], [-457, 220, -1, 0.46021090222706007], [-3, 2, 1, 13.545221314450377], [44, 1, -1, 0.8307699259410816], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-39, -44, -1, -0.03698109387485986], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 5, 1, 13.737646153194202], [4, 0, 0, 2.4156135388573103], [455, -220, 1, -0.4664709687468026], [2, -2, 0, 0.5087787822945713], [6, 5, 1, 13.782591900434488], [0, 13, -1, 0.0482056239896149], [236, 515, 1, -0.09232050559507775]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 243, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -1, -1, 10.238011034667043], [-465, 269, 1, 0.2641251178144917], [3, 5, -1, 11.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -25, -1, 0.0855286352444598], [-451, 237, 1, 0.44692714402429207], [-210, -494, -1, 0.26576771983542036], [3, -3, 1, -0.04702086962263067], [-459, 221, -1, 0.46022137363589366], [-4, 0, 1, 13.638804835355876], [45, -1, -1, 0.8379226556428471], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -45, -1, -0.042883346519578175], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 13.798205623989624], [4, 0, 0, 2.4156135388573103], [457, -221, 1, -0.46648027405811465], [2, -2, 0, 0.5087787822945713], [5, 7, 1, 13.823305097978267], [2, 12, -1, 0.0744898523452416], [237, 517, 1, -0.09234174686959325]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 244, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 10.34321932258676], [-467, 270, 1, 0.2641652106785114], [4, 3, -1, 12.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -26, -1, 0.09137502527020214], [-453, 238, 1, 0.44694118482718576], [-211, -496, -1, 0.2658084252676613], [5, -4, 1, -0.02940922588399203], [-461, 222, -1, 0.4602317535317305], [-3, -2, 1, 13.732388356261374], [43, -2, -1, 0.8417836854928761], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -43, -1, -0.03721694868604232], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 13.891789144895123], [4, 0, 0, 2.4156135388573103], [459, -222, 1, -0.4664894977580807], [2, -2, 0, 0.5087787822945713], [3, 6, 1, 13.848229060797424], [0, 11, -1, 0.04820562398961491], [238, 519, 1, -0.0923628218660147]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 245, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 10.43680284349226], [-469, 271, 1, 0.2642049731321088], [5, 1, -1, 12.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -24, -1, 0.08744607190519614], [-455, 239, 1, 0.44695510347904027], [-212, -498, -1, 0.2658487949993958], [3, -3, 1, -0.04702086962263067], [-463, 223, -1, 0.4602420431089063], [-1, -3, 1, 13.837596644181092], [44, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-36, -44, -1, -0.04326777800162219], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 13.99699743281484], [4, 0, 0, 2.4156135388573103], [461, -223, 1, -0.46649864091559873], [2, -2, 0, 0.5087787822945713], [1, 5, 1, 13.89060439052814], [2, 12, -1, 0.0744898523452416], [239, 521, 1, -0.09238373252845333]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 246, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 10.530386364397758], [-471, 272, 1, 0.26424440923805165], [4, -1, -1, 12.16398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -23, -1, 0.0814805568265892], [-457, 240, 1, 0.44696890156676133], [-213, -500, -1, 0.26588883316125667], [5, -4, 1, -0.02940922588399203], [-465, 224, -1, 0.4602522435410652], [0, -5, 1, 13.888804835355876], [45, -2, -1, 0.8414553621977259], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -45, -1, -0.04079603616993612], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 14.087195189178308], [4, 0, 0, 2.4156135388573103], [463, -224, 1, -0.4665077045809826], [2, -2, 0, 0.5087787822945713], [0, 3, 1, 13.92202086962264], [1, 10, -1, 0.06406838270489167], [240, 523, 1, -0.09240448077084194]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 247, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 10.635594652317476], [-473, 273, 1, 0.26428352299285085], [5, -3, -1, 12.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -24, -1, 0.0813569893490172], [-459, 241, 1, 0.44698258064988855], [-214, -502, -1, 0.26592854381646974], [3, -5, 1, -0.08601043481131534], [-467, 225, -1, 0.4602623559816061], [1, -3, 1, 13.940013026530659], [43, -3, -1, 0.84547233086055], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -43, -1, -0.03931933408862049], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 14.173205623989624], [4, 0, 0, 2.4156135388573103], [465, -225, 1, -0.4665166897863641], [2, -2, 0, 0.5087787822945713], [-2, 4, 1, 13.995812678447857], [-1, 9, -1, 0.030593980250976267], [241, 525, 1, -0.09242506847751818]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, 2], "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 248, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 10.725792408680944], [-475, 274, 1, 0.264322318328104], [3, -4, -1, 12.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -25, -1, 0.08124363114661068], [-461, 242, 1, 0.4469961422611832], [-215, -504, -1, 0.2659679309622214], [4, -3, 1, -0.0244372519721974], [-469, 226, -1, 0.4602723815641171], [2, -5, 1, 13.949364306151297], [44, -1, -1, 0.8380029963442974], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-36, -45, -1, -0.045016663024984034], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -5, 1, 14.237646153194202], [4, 0, 0, 2.4156135388573103], [467, -226, 1, -0.4665255975460846], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 14.078437348717141], [-3, 8, -1, -0.008894501620339161], [242, 527, 1, -0.09244549750379413]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 249, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 10.81180284349226], [-477, 275, 1, 0.2643607991118062], [1, -5, -1, 12.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -26, -1, 0.08113926726445977], [-463, 243, 1, 0.4470095879071999], [-216, -506, -1, 0.26600699853099324], [6, -4, 1, -0.015604390528130075], [-471, 227, -1, 0.4602823214027989], [3, -3, 1, 14.013804835355876], [42, -2, -1, 0.8419595472368735], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -46, -1, -0.042517052705805164], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -7, 1, 14.27562200633919], [4, 0, 0, 2.4156135388573103], [469, -227, 1, -0.46653442885707663], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 14.17202086962264], [-5, 7, -1, -0.05051014765475837], [243, 529, 1, -0.09246576967651284]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 250, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 10.897813278303575], [-479, 276, 1, 0.2643989691496302], [-1, -4, -1, 12.41398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -27, -1, 0.08104286815868804], [-465, 244, 1, 0.4470229190688447], [-217, -508, -1, 0.26604575039186473], [4, -3, 1, -0.0244372519721974], [-473, 228, -1, 0.4602921765928779], [4, -1, 1, 14.099815270167191], [43, 0, -1, 0.8343864611426894], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-39, -44, -1, -0.03698109387485986], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -5, 1, 14.298205623989624], [4, 0, 0, 2.4156135388573103], [471, -228, 1, -0.46654318469923606], [2, -2, 0, 0.5087787822945713], [-3, -2, 1, 14.26560439052814], [-3, 6, -1, -0.025586184835601742], [244, 531, 1, -0.09248588679459212]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 251, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 10.988011034667043], [-481, 277, 1, 0.26443683218617403], [-3, -5, -1, 12.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -29, -1, 0.08710959261139499], [-467, 245, 1, 0.44703613720191815], [-218, -510, -1, 0.2660841903517839], [6, -4, 1, -0.015604390528130075], [-475, 229, -1, 0.46030194821100795], [3, 1, 1, 14.190013026530659], [44, -2, -1, 0.8416158005940778], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -45, -1, -0.042883346519578175], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -6, 1, 14.349413815164407], [4, 0, 0, 2.4156135388573103], [473, -229, 1, -0.466551866035784], [2, -2, 0, 0.5087787822945713], [-4, -4, 1, 14.29702086962264], [-4, 8, -1, -0.025586184835601742], [245, 533, 1, -0.09250585062955582]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 252, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 11.09321932258676], [-483, 278, 1, 0.26447439190618094], [-4, -3, -1, 12.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -28, -1, 0.08744607190519613], [-469, 246, 1, 0.4470492437376453], [-219, -512, -1, 0.26612232215680826], [4, -3, 1, -0.0244372519721974], [-477, 230, -1, 0.4603116373156623], [2, 3, 1, 14.295221314450377], [42, -3, -1, 0.8457353966426197], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-36, -47, -1, -0.048375635309298975], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -4, 1, 14.40062200633919], [4, 0, 0, 2.4156135388573103], [475, -230, 1, -0.4665604738136205], [2, -2, 0, 0.5087787822945713], [-2, -5, 1, 14.361461398827219], [-6, 9, -1, -0.04537789691588448], [246, 535, 1, -0.09252566292605319]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 253, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 11.15538636439776], [-485, 279, 1, 0.26451165193572856], [-5, -1, -1, 12.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -29, -1, 0.09280881479732667], [-471, 247, 1, 0.44706224008319184], [-220, -514, -1, 0.26616014949331607], [6, -4, 1, -0.015604390528130075], [-479, 231, -1, 0.46032124494751625], [0, 4, 1, 14.388804835355876], [43, -1, -1, 0.8380870718478829], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -46, -1, -0.042517052705805164], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -2, 1, 14.474413815164407], [4, 0, 0, 2.4156135388573103], [477, -231, 1, -0.46656900896366815], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 14.370812678447857], [-7, 7, -1, -0.0767943760103851], [247, 537, 1, -0.09254532540236636]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 254, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 11.225792408680945], [-487, 280, 1, 0.2645486158433906], [-4, 1, -1, 12.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -27, -1, 0.08929662737792708], [-473, 248, 1, 0.4470751276221675], [-221, -516, -1, 0.26619767598918836], [4, -3, 1, -0.0244372519721974], [-481, 232, -1, 0.46033077212981893], [-2, 3, 1, 14.482388356261374], [44, 1, -1, 0.8307699259410815], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-39, -44, -1, -0.03698109387485986], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 14.548205623989624], [4, 0, 0, 2.4156135388573103], [479, -232, 1, -0.4665774724012083], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 14.461010434811325], [-5, 8, -1, -0.04069821825506147], [248, 539, 1, -0.0925648397509064]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 255, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 11.272813278303577], [-489, 281, 1, 0.2645852871413712], [-5, 3, -1, 12.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -26, -1, 0.08382953670358816], [-475, 249, 1, 0.447087907715117], [-222, -518, -1, 0.26623490521496357], [6, -4, 1, -0.015604390528130075], [-483, 233, -1, 0.4603402198687571], [-3, 1, 1, 14.587596644181092], [45, -1, -1, 0.837922655642847], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -45, -1, -0.042883346519578175], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 14.62199743281484], [4, 0, 0, 2.4156135388573103], [481, -233, 1, -0.4665858650262075], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 14.473229060797424], [-4, 6, -1, -0.04537789691588448], [249, 541, 1, -0.09258420763869837]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 256, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 11.280386364397762], [-491, 282, 1, 0.264621669286612], [-3, 4, -1, 12.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -27, -1, 0.08929662737792708], [-477, 250, 1, 0.44710058169999845], [-223, -520, -1, 0.2662718406849647], [4, -3, 1, -0.0244372519721974], [-485, 234, -1, 0.4603495891538091], [-4, -1, 1, 14.67779440054456], [43, -2, -1, 0.841783685492876], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-36, -43, -1, -0.04147062165587341], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 14.704622103084125], [4, 0, 0, 2.4156135388573103], [483, -234, 1, -0.46659418772363714], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 14.504645539891925], [-6, 5, -1, -0.09122334519853736], [250, 543, 1, -0.09260343070785501]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 257, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 11.38559465231748], [-493, 283, 1, 0.2646577656818737], [-1, 5, -1, 12.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -28, -1, 0.08886706042349347], [-479, 251, 1, 0.44711315089265], [-224, -522, -1, 0.26630848585839983], [6, -4, 1, -0.015604390528130075], [-487, 235, -1, 0.4603588809580898], [-3, -3, 1, 14.763804835355876], [44, 0, -1, 0.8343864611426894], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-35, -41, -1, -0.039943876114126725], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 14.798205623989624], [4, 0, 0, 2.4156135388573103], [485, -235, 1, -0.46660244136378387], [2, -2, 0, 0.5087787822945713], [6, -6, 1, 14.54702086962264], [-8, 4, -1, -0.12800256718516845], [251, 545, 1, -0.09262251057604068]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 258, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -5, -1, 11.436802843492263], [-495, 284, 1, 0.2646935796767924], [1, 4, -1, 12.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -29, -1, 0.09434572784451929], [-481, 252, 1, 0.4471256165872454], [-225, -524, -1, 0.2663448441404376], [4, -3, 1, -0.0244372519721974], [-489, 236, -1, 0.46036809623868824], [-2, -5, 1, 14.828245364560454], [45, -2, -1, 0.8414553621977258], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-36, -39, -1, -0.03376782496034132], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 14.858765094785046], [4, 0, 0, 2.4156135388573103], [487, -236, 1, -0.4666106268025532], [2, -2, 0, 0.5087787822945713], [5, -4, 1, 14.564632513361278], [-9, 2, -1, -0.16699213237385313], [252, 547, 1, -0.09264144883692406]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 259, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -4, -1, 11.51059465231748], [-497, 285, 1, 0.2647291145689111], [3, 5, -1, 12.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -28, -1, 0.08886706042349347], [-483, 253, 1, 0.4471379800567375], [-226, -526, -1, 0.2663809188832566], [6, -4, 1, -0.015604390528130075], [-491, 237, -1, 0.46037723593699553], [0, -4, 1, 14.888804835355876], [43, -3, -1, 0.8454723308605498], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -37, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 14.923205623989624], [4, 0, 0, 2.4156135388573103], [489, -237, 1, -0.46661874488176536], [2, -2, 0, 0.5087787822945713], [4, -2, 1, 14.598229060797424], [-8, 0, -1, -0.2017943760103851], [253, 549, 1, -0.09266024706062168]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 260, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 11.593219322586764], [-499, 286, 1, 0.26476437360468696], [4, 3, -1, 13.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -29, -1, 0.09434572784451929], [-485, 254, 1, 0.44715024255329167], [-227, -528, -1, 0.2664167133870715], [4, -3, 1, -0.0244372519721974], [-493, 238, -1, 0.4603863009790255], [2, -5, 1, 14.949364306151297], [44, -1, -1, 0.8380029963442973], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -35, -1, -0.020868083547155688], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 14.987646153194202], [4, 0, 0, 2.4156135388573103], [491, -238, 1, -0.4666267964294436], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 14.67202086962264], [-6, 1, -1, -0.1755101476547584], [254, 551, 1, -0.09267890679413093]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 261, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -3, -1, 11.600792408680949], [-501, 287, 1, 0.2647993599804765], [5, 1, -1, 13.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -31, -1, 0.1008284145494728], [-487, 255, 1, 0.4471624053087084], [-228, -530, -1, 0.2664522309011347], [6, -4, 1, -0.015604390528130075], [-495, 239, -1, 0.4603952922757275], [3, -3, 1, 15.013804835355876], [42, -2, -1, 0.8419595472368734], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -33, -1, -0.01832033061083551], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-6, 0, 1, 15.048205623989624], [4, 0, 0, 2.4156135388573103], [493, -239, 1, -0.46663478226009597], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 14.745812678447857], [-5, 3, -1, -0.11578394119906979], [255, 553, 1, -0.09269742956175415]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 262, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, -1, -1, 11.660518615136638], [-503, 288, 1, 0.26483407684349664], [4, -1, -1, 13.16398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -30, -1, 0.09523807800311607], [-489, 256, 1, 0.4471744695348353], [-229, -532, -1, 0.26648747462471506], [4, -3, 1, -0.0244372519721974], [-497, 240, -1, 0.46040421072329146], [5, -4, 1, 15.031416479094514], [43, 0, -1, 0.8343864611426893], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -35, -1, -0.020868083547155684], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -2, 1, 15.108765094785046], [4, 0, 0, 2.4156135388573103], [495, -240, 1, -0.46664270317498974], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 14.828437348717141], [-3, 2, -1, -0.10821085510488573], [256, 555, 1, -0.09271581686551295]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 263, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-7, 1, -1, 11.709386461142698], [-505, 289, 1, 0.2648685272927645], [5, -3, -1, 13.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -31, -1, 0.09459811415863491], [-491, 257, 1, 0.4471864364239697], [-230, -534, -1, 0.26652244770805456], [6, -4, 1, -0.015604390528130075], [-499, 241, -1, 0.4604130572034456], [4, -2, 1, 15.065013026530659], [44, -2, -1, 0.8416158005940777], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-40, -36, -1, -0.019036165108058334], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 15.173205623989624], [4, 0, 0, 2.4156135388573103], [497, -241, 1, -0.4666505599624194], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 14.92202086962264], [-2, 0, 0, -0.10821085510488573], [257, 557, 1, -0.09273407018555374]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 264, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 11.760594652317481], [-507, 290, 1, 0.26490271438001606], [3, -4, -1, 13.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -33, -1, 0.10067840993499108], [-493, 258, 1, 0.44719830714925124], [-231, -536, -1, 0.26655715325330265], [4, -3, 1, -0.0244372519721974], [-501, 242, -1, 0.4604218325837467], [3, 0, 1, 15.138804835355876], [42, -3, -1, 0.8457353966426195], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -37, -1, -0.025283079117095424], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 15.25921605880094], [4, 0, 0, 2.4156135388573103], [499, -242, 1, -0.46665835339796813], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 15.01560439052814], [-2, 0, 0, -0.10821085510488573], [258, 559, 1, -0.09275219098054455]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 265, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 11.718219322586766], [-509, 291, 1, 0.2649366411106031], [1, -5, -1, 13.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -35, -1, 0.10353717328028549], [-495, 259, 1, 0.4472100828650447], [-232, -538, -1, 0.26659159431542967], [6, -4, 1, -0.015604390528130075], [-503, 243, -1, 0.46043053771786396], [4, 2, 1, 15.212596644181092], [43, -1, -1, 0.8380870718478828], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-39, -39, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -6, 1, 15.298205623989624], [4, 0, 0, 2.4156135388573103], [501, -243, 1, -0.466666084244763], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 15.120812678447857], [-2, 0, 0, -0.10821085510488573], [259, 561, 1, -0.09277018068806282]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 266, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 11.760594652317481], [-511, 292, 1, 0.2649703104443703], [-1, -4, -1, 13.41398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -37, -1, 0.10621429363731863], [-497, 260, 1, 0.44722176470731484], [-233, -540, -1, 0.2666257739031193], [4, -3, 1, -0.0244372519721974], [-505, 244, -1, 0.4604391734458557], [2, 3, 1, 15.295221314450377], [44, 1, -1, 0.8307699259410813], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-41, -38, -1, -0.021364063412428583], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 15.358765094785046], [4, 0, 0, 2.4156135388573103], [503, -244, 1, -0.46667375325372407], [2, -2, 0, 0.5087787822945713], [-5, 0, 1, 15.17202086962264], [-2, 0, 0, -0.10821085510488573], [260, 563, 1, -0.09278804072497525]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 267, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 4, -1, 11.811802843492265], [-513, 293, 1, 0.26500372529651256], [-3, -5, -1, 13.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -36, -1, 0.10723778398547892], [-499, 261, 1, 0.4472333537939905], [-234, -542, -1, 0.2666596949796409], [6, -4, 1, -0.015604390528130075], [-507, 245, -1, 0.46044774059443944], [0, 4, 1, 15.388804835355876], [45, -1, -1, 0.8379226556428468], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-42, -40, -1, -0.023523960877188835], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 15.423205623989624], [4, 0, 0, 2.4156135388573103], [505, -245, 1, -0.46668136116380726], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 15.223229060797424], [-2, 0, 0, -0.10821085510488573], [261, 565, 1, -0.09280577248780934]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 268, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 6, -1, 11.863011034667048], [-515, 294, 1, 0.2650368885384127], [-4, -3, -1, 13.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -34, -1, 0.10136560317352712], [-501, 262, 1, 0.447244851225322], [-235, -544, -1, 0.26669336046370257], [4, -3, 1, -0.0244372519721974], [-509, 246, -1, 0.46045623997725554], [-1, 6, 1, 15.415089063711502], [43, -2, -1, 0.8417836854928759], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -41, -1, -0.021790116674245345], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -1, 1, 15.50921605880094], [4, 0, 0, 2.4156135388573103], [507, -246, 1, -0.46668890870224194], [2, -2, 0, 0.5087787822945713], [-5, -2, 1, 15.232580340418062], [-2, 0, 0, -0.10821085510488573], [262, 567, 1, -0.09282337735311685]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 269, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 11.905386364397764], [-517, 295, 1, 0.2650698029984608], [-5, -1, -1, 13.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -36, -1, 0.10413775512045874], [-503, 263, 1, 0.4472562580842286], [-236, -546, -1, 0.2667267732302842], [6, -4, 1, -0.015604390528130075], [-511, 247, -1, 0.460464672395125], [-3, 5, 1, 15.474815270167191], [44, 0, -1, 0.8343864611426893], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -43, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 1, 1, 15.599413815164407], [4, 0, 0, 2.4156135388573103], [509, -247, 1, -0.46669639658476253], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 15.29702086962264], [-2, 0, 0, -0.10821085510488573], [263, 569, 1, -0.09284085667782954]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 270, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 11.975792408680949], [-519, 296, 1, 0.2651024714628549], [-4, 1, -1, 13.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -35, -1, 0.09910914335744501], [-505, 264, 1, 0.44726757543663853], [-237, -548, -1, 0.2667599361114532], [4, -3, 1, -0.0244372519721974], [-513, 248, -1, 0.460473038636301], [-4, 3, 1, 15.536388453006309], [45, -2, -1, 0.8414553621977257], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -44, -1, -0.025616836746969327], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 15.704622103084125], [4, 0, 0, 2.4156135388573103], [511, -248, 1, -0.46670382551583456], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 15.383031304433956], [-2, 0, 0, -0.10821085510488573], [264, 571, 1, -0.09285821179960752]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 271, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 12.061802843492265], [-521, 297, 1, 0.26513489667638435], [-5, 3, -1, 13.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -33, -1, 0.09345503201272654], [-507, 265, 1, 0.4472788043318211], [-238, -550, -1, 0.26679285189716073], [6, -4, 1, -0.015604390528130075], [-515, 249, -1, 0.46048133947671405], [-3, 1, 1, 15.587596644181092], [43, -3, -1, 0.8454723308605497], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -43, -1, -0.020336118231309052], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 15.798205623989624], [4, 0, 0, 2.4156135388573103], [513, -249, 1, -0.46671119618887574], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 15.473229060797424], [-2, 0, 0, -0.10821085510488573], [265, 573, 1, -0.0928754440371799]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 272, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 12.14781327830358], [-523, 298, 1, 0.2651670813431951], [-3, 4, -1, 13.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -32, -1, 0.08868702097190556], [-509, 266, 1, 0.44728994580271053], [-239, -552, -1, 0.2668255233360214], [4, -3, 1, -0.0244372519721974], [-517, 250, -1, 0.46048957568021215], [-4, -1, 1, 15.67779440054456], [44, -1, -1, 0.8380029963442972], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -45, -1, -0.025656134262983583], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 15.858765094785046], [4, 0, 0, 2.4156135388573103], [515, -250, 1, -0.46671850928647163], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 15.578437348717141], [-2, 0, 0, -0.10821085510488573], [266, 575, 1, -0.09289255469067854]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 273, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 12.186802843492265], [-525, 299, 1, 0.2651990281275386], [-1, 5, -1, 13.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -31, -1, 0.08905364292077328], [-511, 267, 1, 0.44730100086622276], [-240, -554, -1, 0.2668579531360748], [6, -4, 1, -0.015604390528130075], [-519, 251, -1, 0.460497747998795], [-3, -3, 1, 15.763804835355876], [42, -2, -1, 0.8419595472368733], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -43, -1, -0.02378848408473744], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 15.923205623989624], [4, 0, 0, 2.4156135388573103], [517, -251, 1, -0.46672576548058636], [2, -2, 0, 0.5087787822945713], [5, -3, 1, 15.586010434811326], [-2, 0, 0, -0.10821085510488573], [267, 577, 1, -0.09290954504196455]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 274, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, -1, -1, 12.206594555572547], [-527, 300, 1, 0.265230739654504], [1, 4, -1, 13.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -32, -1, 0.094005445955684], [-513, 268, 1, 0.4473119705235646], [-241, -556, -1, 0.2668901439655311], [4, -3, 1, -0.0244372519721974], [-521, 252, -1, 0.46050585717284276], [-1, -4, 1, 15.849815270167191], [43, 0, -1, 0.8343864611426892], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -41, -1, -0.021790116674245345], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 15.987646153194202], [4, 0, 0, 2.4156135388573103], [519, -252, 1, -0.4667329654327684], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 15.645736641267016], [-2, 0, 0, -0.10821085510488573], [268, 579, 1, -0.09292641635494807]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 275, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [9, -3, -1, 12.238011034667048], [-529, 301, 1, 0.2652622185107347], [3, 5, -1, 13.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -34, -1, 0.09986501867046055], [-515, 269, 1, 0.447322855760536], [-242, -558, -1, 0.26692209845349957], [6, -4, 1, -0.015604390528130075], [-523, 253, -1, 0.4605139039313398], [1, -3, 1, 15.940013026530659], [44, -2, -1, 0.8416158005940776], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -39, -1, -0.016056083786415223], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 16.048205623989624], [4, 0, 0, 2.4156135388573103], [521, -253, 1, -0.4667401097943514], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 15.703437348717143], [-2, 0, 0, -0.10821085510488573], [269, 581, 1, -0.09294316987590119]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 276, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, -4, -1, 12.26942751376155], [-531, 302, 1, 0.2652934672451287], [4, 3, -1, 14.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -35, -1, 0.09910914335744503], [-517, 270, 1, 0.44733365754782517], [-243, -560, -1, 0.26695381919070177], [4, -3, 1, -0.0244372519721974], [-525, 254, -1, 0.46052188899209257], [3, -2, 1, 16.045221314450377], [42, -3, -1, 0.8457353966426194], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -38, -1, -0.010615874391231218], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 16.141789144895125], [4, 0, 0, 2.4156135388573103], [523, -254, 1, -0.46674719920665086], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 15.765604390528143], [-2, 0, 0, -0.10821085510488573], [270, 583, 1, -0.0929598068337647]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 277, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -6, -1, 12.311802843492265], [-533, 303, 1, 0.2653244883695238], [5, 1, -1, 14.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -33, -1, 0.09345503201272655], [-519, 271, 1, 0.447344376841297], [-244, -562, -1, 0.26698530873016874], [6, -4, 1, -0.015604390528130075], [-527, 255, -1, 0.4605298130619437], [4, -4, 1, 16.013804835355877], [43, -1, -1, 0.8380870718478827], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -36, -1, -0.008091248541417866], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 16.24699743281484], [4, 0, 0, 2.4156135388573103], [525, -255, 1, -0.4667542343011559], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 15.87081267844786], [-2, 0, 0, -0.10821085510488573], [271, 585, 1, -0.09297632844044794]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 278, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -7, -1, 12.35417817322298], [-535, 304, 1, 0.26535528435936845], [4, -1, -1, 14.16398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -35, -1, 0.09634699918199681], [-521, 272, 1, 0.44735501458227495], [-245, -564, -1, 0.26701656958792336], [4, -3, 1, -0.0244372519721974], [-529, 256, -1, 0.46053767683698016], [2, -3, 1, 15.982388356261376], [44, 1, -1, 0.8307699259410812], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -35, -1, -0.009351279620638253], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -4, 1, 16.33719518917831], [4, 0, 0, 2.4156135388573103], [527, -256, 1, -0.4667612156997167], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 15.961010434811328], [-2, 0, 0, -0.10821085510488573], [272, 587, 1, -0.09299273589112296]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 279, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -8, -1, 12.397813278303579], [-537, 305, 1, 0.2653858576543773], [5, -3, -1, 14.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -34, -1, 0.09166510078696063], [-523, 273, 1, 0.44736557169781643], [-246, -566, -1, 0.2670476042436479], [6, -4, 1, -0.015604390528130075], [-531, 257, -1, 0.46054548100273696], [4, -2, 1, 16.06501302653066], [45, -1, -1, 0.8379226556428467], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -36, -1, -0.008091248541417866], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -6, 1, 16.298205623989624], [4, 0, 0, 2.4156135388573103], [529, -257, 1, -0.46676814401472755], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 16.047020869622642], [-2, 0, 0, -0.10821085510488573], [273, 589, 1, -0.09300903036451229]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 280, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -7, -1, 12.436802843492263], [-539, 306, 1, 0.2654162106591734], [3, -4, -1, 14.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, -36, -1, 0.09447596917640565], [-525, 274, 1, 0.4473760491009821], [-247, -568, -1, 0.267078415141337], [4, -3, 1, -0.0244372519721974], [-533, 258, -1, 0.46055322623439654], [3, 0, 1, 16.138804835355877], [43, -2, -1, 0.8417836854928757], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -38, -1, -0.014014002402754664], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 16.358765094785046], [4, 0, 0, 2.4156135388573103], [531, -258, 1, -0.46677501984930625], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 16.133031304433956], [-2, 0, 0, -0.10821085510488573], [274, 591, 1, -0.09302521302317084]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 281, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -6, -1, 12.488011034667046], [-541, 307, 1, 0.26544634574391635], [1, -5, -1, 14.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -35, -1, 0.09501915799938025], [-527, 275, 1, 0.44738644769109903], [-248, -570, -1, 0.267109004689937], [6, -4, 1, -0.015604390528130075], [-535, 259, -1, 0.4605609131969835], [4, 2, 1, 16.212596644181094], [44, 0, -1, 0.8343864611426892], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -37, -1, -0.015490704484070365], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 16.423205623989624], [4, 0, 0, 2.4156135388573103], [533, -259, 1, -0.4667818437974688], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 16.223229060797426], [-2, 0, 0, -0.10821085510488573], [275, 593, 1, -0.09304128501376224]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 282, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 12.53921922584183], [-543, 308, 1, 0.2654762652449164], [-1, -4, -1, 14.41398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, -34, -1, 0.09042058427960441], [-529, 276, 1, 0.44739676835401765], [-249, -572, -1, 0.26713937526397113], [4, -3, 1, -0.0244372519721974], [-537, 260, -1, 0.4605685425455545], [2, 3, 1, 16.295221314450377], [45, -2, -1, 0.8414553621977255], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -35, -1, -0.009351279620638253], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -1, 1, 16.509216058800938], [4, 0, 0, 2.4156135388573103], [535, -260, 1, -0.4667886164443005], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 16.32843734871714], [-2, 0, 0, -0.10821085510488573], [276, 595, 1, -0.09305724746732912]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 283, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -3, -1, 12.600792408680947], [-545, 309, 1, 0.26550597146523663], [-3, -5, -1, 14.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -33, -1, 0.09083183644722756], [-531, 277, 1, 0.44740701196236365], [-250, -574, -1, 0.2671695292041518], [6, -4, 1, -0.015604390528130075], [-539, 261, -1, 0.46057611492538486], [0, 4, 1, 16.388804835355877], [43, -3, -1, 0.8454723308605496], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -33, -1, -0.006583192509318012], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 16.579622103084123], [4, 0, 0, 2.4156135388573103], [537, -261, 1, -0.46679533836612325], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 16.422020869622642], [-2, 0, 0, -0.10821085510488573], [277, 597, 1, -0.0930731014995584]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 284, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -1, -1, 12.647813278303579], [-547, 310, 1, 0.26553546667528144], [-4, -3, -1, 14.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -32, -1, 0.0912727077381122], [-533, 278, 1, 0.44741717937578357], [-251, -576, -1, 0.26719946881797957], [4, -3, 1, -0.0244372519721974], [-541, 262, -1, 0.46058363097214994], [-2, 3, 1, 16.482388356261378], [44, -1, -1, 0.8380029963442971], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -35, -1, -0.009351279620638253], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 16.65062200633919], [4, 0, 0, 2.4156135388573103], [539, -262, 1, -0.4668020101306589], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 16.515604390528143], [-2, 0, 0, -0.10821085510488573], [278, 599, 1, -0.09308884821104071]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 285, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 12.718219322586764], [-549, 311, 1, 0.2655647531133729], [-5, -1, -1, 14.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -31, -1, 0.09174650995791277], [-535, 279, 1, 0.447427271441185], [-252, -578, -1, 0.2672291963803296], [6, -4, 1, -0.015604390528130075], [-543, 263, -1, 0.46059109131210346], [-4, 2, 1, 16.56501302653066], [42, -2, -1, 0.8419595472368732], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -37, -1, -0.01192669205311261], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 4, 1, 16.724413815164407], [4, 0, 0, 2.4156135388573103], [541, -263, 1, -0.4668086322971892], [2, -2, 0, 0.5087787822945713], [4, -2, 1, 16.598229060797426], [-2, 0, 0, -0.10821085510488573], [279, 601, 1, -0.09310448868752498]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 286, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 3, -1, 12.78921922584183], [-551, 312, 1, 0.265593832986315], [-4, 1, -1, 14.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -32, -1, 0.09689639005884557], [-537, 280, 1, 0.4474372889929721], [-253, -580, -1, 0.26725871413402574], [4, -3, 1, -0.0244372519721974], [-545, 264, -1, 0.4605984965622509], [-5, 0, 1, 16.638804835355877], [43, 0, -1, 0.8343864611426891], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -36, -1, -0.013339416916817379], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 3, 1, 16.798205623989624], [4, 0, 0, 2.4156135388573103], [543, -264, 1, -0.46681520541671184], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 16.672020869622642], [-2, 0, 0, -0.10821085510488573], [280, 603, 1, -0.09312002400016746]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 287, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 5, -1, 12.850792408680947], [-553, 313, 1, 0.26562270846994585], [-5, 3, -1, 14.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -31, -1, 0.0976209143851037], [-539, 281, 1, 0.44744723285327515], [-254, -582, -1, 0.2672880242904026], [6, -4, 1, -0.015604390528130075], [-547, 265, -1, 0.46060584733051996], [-4, -2, 1, 16.712596644181094], [44, -2, -1, 0.8416158005940775], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -38, -1, -0.015780252272127628], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 5, 1, 16.829622103084123], [4, 0, 0, 2.4156135388573103], [545, -265, 1, -0.46682173003209343], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 16.74581267844786], [-2, 0, 0, -0.10821085510488573], [281, 605, 1, -0.09313545520577635]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 288, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 12.897813278303579], [-555, 314, 1, 0.2656513817096786], [-3, 4, -1, 14.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -32, -1, 0.09689639005884557], [-541, 282, 1, 0.4474571038321756], [-255, -584, -1, 0.26731712902985544], [4, -3, 1, -0.0244372519721974], [-549, 266, -1, 0.4606131442159268], [-2, -3, 1, 16.795221314450377], [42, -3, -1, 0.8457353966426193], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -36, -1, -0.01333941691681738], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 6, 1, 16.87199743281484], [4, 0, 0, 2.4156135388573103], [547, -266, 1, -0.46682820667821884], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 16.82843734871714], [-2, 0, 0, -0.10821085510488573], [282, 607, 1, -0.09315078334705078]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 289, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 12.988011034667046], [-557, 315, 1, 0.26567985482103096], [-1, 5, -1, 14.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -34, -1, 0.09986501867046055], [-543, 283, 1, 0.4474669027279257], [-256, -586, -1, 0.26734603050237926], [6, -4, 1, -0.015604390528130075], [-551, 267, -1, 0.46062038780873865], [0, -4, 1, 16.888804835355877], [43, -1, -1, 0.8380870718478826], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -38, -1, -0.015780252272127628], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 16.923205623989624], [4, 0, 0, 2.4156135388573103], [549, -267, 1, -0.46683463588213747], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 16.922020869622642], [-2, 0, 0, -0.10821085510488573], [283, 609, 1, -0.09316600945281575]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 290, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 13.093219322586764], [-559, 316, 1, 0.26570812989014336], [1, 4, -1, 14.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -35, -1, 0.10509441265565667], [-545, 284, 1, 0.447476630327164], [-257, -588, -1, 0.26737473082809604], [4, -3, 1, -0.0244372519721974], [-553, 268, -1, 0.4606275786906331], [2, -3, 1, 16.982388356261378], [44, 1, -1, 0.8307699259410811], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -39, -1, -0.014327651940866992], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 16.987646153194202], [4, 0, 0, 2.4156135388573103], [551, -268, 1, -0.46684101816320606], [2, -2, 0, 0.5087787822945713], [-1, 6, 1, 16.94830509797827], [-2, 0, 0, -0.10821085510488573], [284, 611, 1, -0.09318113453825182]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 291, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 13.155386364397764], [-561, 317, 1, 0.2657362089742869], [3, 5, -1, 14.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -33, -1, 0.10224849745076858], [-547, 285, 1, 0.4474862874051253], [-258, -590, -1, 0.2674032320977715], [6, -4, 1, -0.015604390528130075], [-555, 269, -1, 0.46063471743485357], [4, -2, 1, 17.06501302653066], [45, -1, -1, 0.8379226556428466], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -41, -1, -0.016570314446395718], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 17.048205623989624], [4, 0, 0, 2.4156135388573103], [553, -269, 1, -0.4668473540332285], [2, -2, 0, 0.5087787822945713], [-2, 4, 1, 16.99581267844786], [-2, 0, 0, -0.10821085510488573], [285, 613, 1, -0.09319615960512065]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 292, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 13.225792408680949], [-563, 318, 1, 0.26576409410236074], [4, 3, -1, 15.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -35, -1, 0.10833918469418204], [-549, 286, 1, 0.44749587472584695], [-259, -592, -1, 0.26743153637332084], [4, -3, 1, -0.0244372519721974], [-557, 270, -1, 0.4606418046063616], [5, 0, 1, 17.138804835355877], [43, -2, -1, 0.8417836854928756], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -39, -1, -0.010999071748094044], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 17.141789144895125], [4, 0, 0, 2.4156135388573103], [555, -270, 1, -0.4668536439965929], [2, -2, 0, 0.5087787822945713], [-4, 3, 1, 17.069604487273075], [-2, 0, 0, -0.10821085510488573], [286, 615, 1, -0.0932110856419859]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 293, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -3, -1, 13.311802843492265], [-565, 319, 1, 0.2657917872753788], [5, 1, -1, 15.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -33, -1, 0.10552650646214774], [-551, 287, 1, 0.44750539304236997], [-260, -594, -1, 0.26745964568830444], [6, -4, 1, -0.015604390528130075], [-559, 271, -1, 0.4606488407619862], [4, 2, 1, 17.212596644181094], [44, 0, -1, 0.8343864611426891], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -41, -1, -0.013294997452971627], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 17.24699743281484], [4, 0, 0, 2.4156135388573103], [557, -271, 1, -0.46685988855040506], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 17.12081267844786], [-2, 0, 0, -0.10821085510488573], [287, 617, 1, -0.09322591362442964]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 294, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -5, -1, 13.376243372696843], [-567, 320, 1, 0.26581929046694686], [4, -1, -1, 15.16398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -32, -1, 0.10664392501359805], [-553, 288, 1, 0.4475148430969364], [-261, -596, -1, 0.26748756204841295], [4, -3, 1, -0.0244372519721974], [-561, 272, -1, 0.46065582645056935], [2, 3, 1, 17.295221314450377], [45, -2, -1, 0.8414553621977254], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -43, -1, -0.018669026328850882], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -5, 1, 17.298205623989624], [4, 0, 0, 2.4156135388573103], [559, -272, 1, -0.4668660881846196], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 17.211010434811328], [-2, 0, 0, -0.10821085510488573], [288, 619, 1, -0.09324064451526504]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 295, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 13.436802843492265], [-569, 321, 1, 0.26584660562373], [5, -3, -1, 15.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -33, -1, 0.10552650646214774], [-555, 289, 1, 0.44752422562118205], [-262, -598, -1, 0.2675152874319428], [6, -4, 1, -0.015604390528130075], [-563, 273, -1, 0.4606627622131087], [0, 4, 1, 17.388804835355877], [43, -3, -1, 0.8454723308605495], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -41, -1, -0.016570314446395718], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -6, 1, 17.349413815164407], [4, 0, 0, 2.4156135388573103], [561, -273, 1, -0.46687224338216815], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 17.297020869622642], [-2, 0, 0, -0.10821085510488573], [289, 621, 1, -0.09325527926474413]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 296, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 13.530386364397764], [-571, 322, 1, 0.26587373466591036], [3, -4, -1, 15.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -34, -1, 0.11130290193896399], [-557, 290, 1, 0.4475335413363252], [-263, -600, -1, 0.267542823790262], [4, -3, 1, -0.0244372519721974], [-565, 274, -1, 0.4606696485828974], [-2, 3, 1, 17.482388356261378], [44, -1, -1, 0.838002996344297], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -40, -1, -0.01805373966570708], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -7, 1, 17.380830294258907], [4, 0, 0, 2.4156135388573103], [563, -274, 1, -0.46687835461908456], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 17.383031304433956], [-2, 0, 0, -0.10821085510488573], [290, 623, 1, -0.09326981881076225]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 297, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 13.635594652317481], [-573, 323, 1, 0.2659006794876352], [1, -5, -1, 15.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -35, -1, 0.11002968955562946], [-559, 291, 1, 0.4475427909533515], [-264, -602, -1, 0.26757017304826625], [6, -4, 1, -0.015604390528130075], [-567, 275, -1, 0.4606764860856606], [-3, 1, 1, 17.587596644181094], [42, -2, -1, 0.841959547236873], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -39, -1, -0.019647512714919643], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -8, 1, 17.337195189178306], [4, 0, 0, 2.4156135388573103], [565, -275, 1, -0.4668844223646277], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 17.422020869622642], [-2, 0, 0, -0.10821085510488573], [291, 625, 1, -0.09328426407905807]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 298, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 13.725792408680949], [-575, 324, 1, 0.2659274419574567], [-1, -4, -1, 15.41398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -36, -1, 0.10885078561295869], [-561, 292, 1, 0.4475519751731945], [-265, -604, -1, 0.26759733710482586], [4, -3, 1, -0.0244372519721974], [-569, 276, -1, 0.4606832752396891], [-4, -1, 1, 17.677794400544563], [43, 0, -1, 0.834386461142689], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -37, -1, -0.013684976113772635], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 17.32448985234525], [4, 0, 0, 2.4156135388573103], [567, -276, 1, -0.4668904470814016], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 17.461010434811328], [-2, 0, 0, -0.10821085510488573], [292, 627, 1, -0.09329861598340976]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 299, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 13.811802843492265], [-577, 325, 1, 0.2659540239187624], [-3, -5, -1, 15.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -37, -1, 0.10775620216204998], [-563, 293, 1, 0.4475610946869131], [-266, -606, -1, 0.267624317833224], [6, -4, 1, -0.015604390528130075], [-571, 277, -1, 0.46069001655597075], [-5, -3, 1, 17.724815270167195], [44, -2, -1, 0.8416158005940774], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -38, -1, -0.012292985866885693], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -7, 1, 17.3626461531942], [4, 0, 0, 2.4156135388573103], [569, -277, 1, -0.46689642922547286], [2, -2, 0, 0.5087787822945713], [3, -3, 1, 17.547020869622642], [-2, 0, 0, -0.10821085510488573], [293, 629, 1, -0.09331287542582775]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 300, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 13.89781327830358], [-579, 326, 1, 0.2659804271901968], [-4, -3, -1, 15.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -39, -1, 0.11024982073350255], [-565, 294, 1, 0.44757015017586427], [-267, -608, -1, 0.2676511170815856], [4, -3, 1, -0.0244372519721974], [-573, 278, -1, 0.460696710538318], [-3, -4, 1, 17.786388453006314], [42, -3, -1, 0.8457353966426192], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -40, -1, -0.014626975768947387], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 17.32448985234525], [4, 0, 0, 2.4156135388573103], [571, -278, 1, -0.466902369246486], [2, -2, 0, 0.5087787822945713], [4, -1, 1, 17.633031304433956], [-2, 0, 0, -0.10821085510488573], [294, 631, 1, -0.09332704329674321]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 301, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 13.988011034667048], [-581, 327, 1, 0.26600665356607534], [-5, -1, -1, 15.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -40, -1, 0.1091786017159886], [-567, 295, 1, 0.44757914231187323], [-268, -610, -1, 0.26767773667329825], [6, -4, 1, -0.015604390528130075], [-575, 279, -1, 0.46070335768349396], [-1, -3, 1, 17.837596644181097], [43, -1, -1, 0.8380870718478824], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -42, -1, -0.020175679834957085], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -7, 1, 17.3626461531942], [4, 0, 0, 2.4156135388573103], [573, -279, 1, -0.46690826758777565], [2, -2, 0, 0.5087787822945713], [3, 1, 1, 17.723229060797426], [-2, 0, 0, -0.10821085510488573], [295, 633, 1, -0.09334112047519343]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 302, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 14.093219322586766], [-583, 328, 1, 0.2660327048167888], [-4, 1, -1, 15.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -38, -1, 0.10382087163059743], [-569, 296, 1, 0.4475880717573993], [-269, -612, -1, 0.26770417840742405], [4, -3, 1, -0.0244372519721974], [-577, 280, -1, 0.46070995848133495], [1, -4, 1, 17.927794400544567], [44, 1, -1, 0.830769925941081], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -43, -1, -0.025575732682002097], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 17.358765094785042], [4, 0, 0, 2.4156135388573103], [575, -280, 1, -0.4669141246864773], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 17.82843734871714], [-2, 0, 0, -0.10821085510488573], [296, 635, 1, -0.09335510782900329]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 303, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 14.155386364397765], [-585, 329, 1, 0.2660585826892011], [-5, 3, -1, 15.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -40, -1, 0.10629044432198213], [-571, 297, 1, 0.4475969391656983], [-270, -614, -1, 0.2677304440591038], [6, -4, 1, -0.015604390528130075], [-579, 281, -1, 0.46071651341487074], [2, -6, 1, 17.940013026530664], [45, -1, -1, 0.8379226556428465], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -44, -1, -0.02386882478618786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -4, 1, 17.42320562398962], [4, 0, 0, 2.4156135388573103], [577, -281, 1, -0.466919940973635], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 17.922020869622642], [-2, 0, 0, -0.10821085510488573], [297, 637, 1, -0.0933690062149636]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 304, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 14.22579240868095], [-587, 330, 1, 0.266084288907038], [-3, 4, -1, 15.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -39, -1, 0.10163933376397795], [-573, 298, 1, 0.44760574518098234], [-271, -616, -1, 0.2677565353799527], [4, -3, 1, -0.0244372519721974], [-581, 282, -1, 0.4607230229604426], [3, -4, 1, 17.991221217705448], [43, -2, -1, 0.8417836854928755], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -46, -1, -0.0256937417630142], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -3, 1, 17.474413815164404], [4, 0, 0, 2.4156135388573103], [579, -282, 1, -0.4669257168743072], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 18.015604390528143], [-2, 0, 0, -0.10821085510488573], [298, 639, 1, -0.09338281647900566]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 305, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -3, -1, 14.311802843492266], [-589, 331, 1, 0.26610982517126913], [-1, 5, -1, 15.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -41, -1, 0.10677377671969869], [-575, 299, 1, 0.4476144904385751], [-272, -618, -1, 0.2677824540984489], [6, -4, 1, -0.015604390528130075], [-583, 283, -1, 0.4607294875878187], [4, -6, 1, 17.98238835626138], [44, 0, -1, 0.834386461142689], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -48, -1, -0.030790783828376782], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -1, 1, 17.525622006339187], [4, 0, 0, 2.4156135388573103], [581, -283, 1, -0.4669314528076702], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 18.12081267844786], [-2, 0, 0, -0.10821085510488573], [299, 641, 1, -0.09339653945637286]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 306, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -4, -1, 14.397813278303582], [-591, 332, 1, 0.2661351931604814], [1, 4, -1, 15.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -43, -1, 0.10904116224834645], [-577, 300, 1, 0.44762317556506537], [-273, -620, -1, 0.26780820192031357], [4, -3, 1, -0.0244372519721974], [-585, 284, -1, 0.46073590776030665], [6, -5, 1, 18.028233804544033], [45, -2, -1, 0.8414553621977253], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -47, -1, -0.025729765968621712], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 17.54820562398962], [4, 0, 0, 2.4156135388573103], [583, -284, 1, -0.4669371491871196], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 18.211010434811328], [-2, 0, 0, -0.10821085510488573], [300, 643, 1, -0.09341017597178883]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 307, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 14.48801103466705], [-593, 333, 1, 0.2661603945312462], [3, 5, -1, 15.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -44, -1, 0.10811225289489312], [-579, 301, 1, 0.44763180117845597], [-274, -622, -1, 0.267833780528884], [6, -4, 1, -0.015604390528130075], [-587, 285, -1, 0.46074228393486477], [4, -4, 1, 18.01380483535588], [43, -3, -1, 0.8454723308605494], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -45, -1, -0.020636551934095065], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 17.621997432814837], [4, 0, 0, 2.4156135388573103], [585, -285, 1, -0.46694280642036967], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 18.297020869622642], [-2, 0, 0, -0.10821085510488573], [301, 645, 1, -0.09342372683962254]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 308, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 14.593219322586767], [-595, 334, 1, 0.2661854309184785], [4, 3, -1, 16.02258361765044], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -46, -1, 0.11021627205290922], [-581, 302, 1, 0.4476403678883106], [-275, -624, -1, 0.26785919158547944], [4, -3, 1, -0.0244372519721974], [-589, 286, -1, 0.46074861656221006], [2, -3, 1, 17.98238835626138], [44, -1, -1, 0.8380029963442969], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -47, -1, -0.022484270008472973], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 4, 1, 17.695789241640053], [4, 0, 0, 2.4156135388573103], [587, -286, 1, -0.4669484249095505], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 18.383031304433956], [-2, 0, 0, -0.10821085510488573], [302, 647, 1, -0.09343719286405035]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 309, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 14.686802843492266], [-597, 335, 1, 0.2662103039357896], [5, 1, -1, 16.093583520905508], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -48, -1, 0.11220975789727358], [-583, 303, 1, 0.4476488762958973], [-276, -626, -1, 0.2678844367297593], [6, -4, 1, -0.015604390528130075], [-591, 287, -1, 0.4607549060869244], [4, -2, 1, 18.065013026530664], [42, -2, -1, 0.8419595472368729], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-51, -49, -1, -0.024222344735859033], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 5, 1, 17.76678914489512], [4, 0, 0, 2.4156135388573103], [589, -287, 1, -0.46695400505130336], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 18.473229060797426], [-2, 0, 0, -0.10821085510488573], [303, 649, 1, -0.09345057483921468]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 310, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 14.780386364397765], [-599, 336, 1, 0.26623501517583265], [4, -1, -1, 16.163989565188693], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -47, -1, 0.10805605411788848], [-585, 304, 1, 0.44765732699432925], [-277, -628, -1, 0.26790951758007514], [4, -3, 1, -0.0244372519721974], [-593, 288, -1, 0.4607611529475589], [5, 0, 1, 18.13880483535588], [43, 0, -1, 0.8343864611426889], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-52, -47, -1, -0.019373714852399384], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 17.837195189178306], [4, 0, 0, 2.4156135388573103], [591, -288, 1, -0.46695954723687383], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 18.57843734871714], [-2, 0, 0, -0.10821085510488573], [304, 651, 1, -0.09346387354938028]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 311, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 14.885594652317483], [-601, 337, 1, 0.26625956621064134], [5, -3, -1, 16.211010434811325], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -49, -1, 0.11252743201250733], [-587, 305, 1, 0.44766572056870235], [-278, -630, -1, 0.2679344357338151], [6, -4, 1, -0.015604390528130075], [-595, 289, -1, 0.4607673575767356], [4, 2, 1, 18.212596644181097], [44, -2, -1, 0.8416158005940773], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-51, -49, -1, -0.024222344735859033], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 17.92320562398962], [4, 0, 0, 2.4156135388573103], [593, -289, 1, -0.46696505185220355], [2, -2, 0, 0.5087787822945713], [4, -4, 1, 18.547020869622642], [-2, 0, 0, -0.10821085510488573], [305, 653, 1, -0.09347708976908706]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 312, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 14.97579240868095], [-603, 338, 1, 0.2662839585919626], [3, -4, -1, 16.272583617650444], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -48, -1, 0.11351695596087139], [-589, 306, 1, 0.4476740575962303], [-279, -632, -1, 0.26795919276774205], [4, -3, 1, -0.0244372519721974], [-597, 290, -1, 0.46077352040124725], [2, 3, 1, 18.29522131445038], [42, -3, -1, 0.8457353966426191], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -50, -1, -0.0290125903019225], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 18.009216058800934], [4, 0, 0, 2.4156135388573103], [595, -290, 1, -0.4669705192780196], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 18.598229060797426], [-2, 0, 0, -0.10821085510488573], [306, 655, 1, -0.09349022426330046]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 313, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 15.061802843492266], [-605, 339, 1, 0.2663081938515823], [1, -5, -1, 16.34358352090551], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -50, -1, 0.11539243244775998], [-591, 307, 1, 0.44768233864637674], [-280, -634, -1, 0.2679837902383253], [6, -4, 1, -0.015604390528130075], [-599, 291, -1, 0.46077964184215514], [0, 4, 1, 18.38880483535588], [43, -1, -1, 0.8380870718478823], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -48, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 18.099413815164404], [4, 0, 0, 2.4156135388573103], [597, -291, 1, -0.4669759498899222], [2, -2, 0, 0.5087787822945713], [7, -1, 1, 18.64943725197221], [-2, 0, 0, -0.10821085510488573], [307, 657, 1, -0.09350327778755882]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 314, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 15.147813278303582], [-607, 340, 1, 0.26633227350164507], [-1, -4, -1, 16.413989565188697], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -52, -1, 0.11717204613824939], [-593, 308, 1, 0.44769056428098525], [-281, -636, -1, 0.2680082296820656], [4, -3, 1, -0.0244372519721974], [-601, 292, -1, 0.4607857223148854], [-2, 3, 1, 18.48238835626138], [44, 1, -1, 0.8307699259410809], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -46, -1, -0.022380743390534103], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 18.20462210308412], [4, 0, 0, 2.4156135388573103], [599, -292, 1, -0.46698134405847097], [2, -2, 0, 0.5087787822945713], [5, 0, 1, 18.672020869622642], [-2, 0, 0, -0.10821085510488573], [308, 659, 1, -0.09351625108811823]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 315, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 15.186802843492266], [-609, 341, 1, 0.26635619903496793], [-3, -5, -1, 16.461010434811328], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -50, -1, 0.11539243244775998], [-595, 309, 1, 0.447698735054406], [-282, -638, -1, 0.2680325126158142], [6, -4, 1, -0.015604390528130075], [-603, 293, -1, 0.4607917622293224], [-3, 1, 1, 18.587596644181097], [45, -1, -1, 0.8379226556428464], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -48, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 18.29820562398962], [4, 0, 0, 2.4156135388573103], [601, -293, 1, -0.4669867021492689], [2, -2, 0, 0.5087787822945713], [3, 1, 1, 18.723229060797426], [-2, 0, 0, -0.10821085510488573], [309, 661, 1, -0.09352914490209445]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 316, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, -1, -1, 15.206594555572549], [-611, 342, 1, 0.26637997192534774], [-4, -3, -1, 16.522583617650447], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -52, -1, 0.11717204613824939], [-597, 310, 1, 0.4477068515136203], [-283, -640, -1, 0.2680566405370857], [4, -3, 1, -0.0244372519721974], [-605, 294, -1, 0.4607977619899011], [-4, -1, 1, 18.677794400544567], [43, -2, -1, 0.8417836854928754], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -46, -1, -0.025693741763014203], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 18.39178914489512], [4, 0, 0, 2.4156135388573103], [603, -294, 1, -0.46699202452304517], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 18.82843734871714], [-2, 0, 0, -0.10821085510488573], [310, 663, 1, -0.09354195995760255]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 317, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, -3, -1, 15.251243372696845], [-613, 343, 1, 0.266403593627863], [-5, -1, -1, 16.593583520905515], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -51, -1, 0.11826683970893268], [-599, 311, 1, 0.4477149141983627], [-284, -642, -1, 0.26808061492436497], [6, -4, 1, -0.015604390528130075], [-607, 295, -1, 0.4608037219956973], [-3, -3, 1, 18.76380483535588], [44, 0, -1, 0.8343864611426889], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -47, -1, -0.03086436447181307], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -2, 1, 18.474413815164404], [4, 0, 0, 2.4156135388573103], [605, -295, 1, -0.46699731153573604], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 18.922020869622642], [-2, 0, 0, -0.10821085510488573], [311, 665, 1, -0.09355469697389376]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 318, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -5, -1, 15.297373874304114], [-615, 344, 1, 0.26642706557916973], [-4, 1, -1, 16.6639895651887], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -53, -1, 0.12265710302401385], [-601, 312, 1, 0.44772292364124083], [-285, -644, -1, 0.2681044372374083], [4, -3, 1, -0.0244372519721974], [-609, 296, -1, 0.4608096426405163], [-1, -4, 1, 18.849815270167195], [45, -2, -1, 0.8414553621977252], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -46, -1, -0.03276776217847596], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 0, 1, 18.54820562398962], [4, 0, 0, 2.4156135388573103], [607, -296, 1, -0.4670025635385641], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 19.015604390528143], [-2, 0, 0, -0.10821085510488573], [312, 667, 1, -0.09356735666148987]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 319, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -4, -1, 15.311802843492266], [-617, 345, 1, 0.2664503891977923], [-5, 3, -1, 16.71101043481133], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -52, -1, 0.11847246613598203], [-603, 313, 1, 0.4477308803678521], [-286, -646, -1, 0.2681281089175386], [6, -4, 1, -0.015604390528130075], [-611, 297, -1, 0.46081552431297923], [1, -3, 1, 18.940013026530664], [43, -3, -1, 0.8454723308605493], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -48, -1, -0.034320444069676395], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 18.621997432814837], [4, 0, 0, 2.4156135388573103], [609, -297, 1, -0.4670077808781162], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 19.12081267844786], [-2, 0, 0, -0.10821085510488573], [313, 669, 1, -0.09357993972231532]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 320, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 15.343219322586767], [-619, 346, 1, 0.2664735658844078], [-3, 4, -1, 16.77258361765045], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -54, -1, 0.12014564755536315], [-605, 314, 1, 0.4477387848968991], [-287, -648, -1, 0.2681516313879355], [4, -3, 1, -0.0244372519721974], [-613, 298, -1, 0.4608213673966083], [3, -4, 1, 18.991221217705448], [44, -1, -1, 0.8380029963442968], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -46, -1, -0.029153904309707275], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 18.70462210308412], [4, 0, 0, 2.4156135388573103], [611, -298, 1, -0.46701296389641933], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 19.211010434811328], [-2, 0, 0, -0.10821085510488573], [314, 671, 1, -0.09359244684982682]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 321, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 15.436802843492266], [-621, 347, 1, 0.2664965970221263], [-1, 5, -1, 16.84358352090552], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -52, -1, 0.11589608564970165], [-607, 315, 1, 0.4477466377403022], [-288, -650, -1, 0.2681750060539197], [6, -4, 1, -0.015604390528130075], [-615, 299, -1, 0.4608271722699101], [5, -3, 1, 19.052794400544567], [42, -2, -1, 0.8419595472368728], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -48, -1, -0.034320444069676395], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 18.79820562398962], [4, 0, 0, 2.4156135388573103], [613, -299, 1, -0.4670181129310159], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 19.297020869622642], [-2, 0, 0, -0.10821085510488573], [315, 673, 1, -0.0936048787291405]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 322, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 15.530386364397765], [-623, 348, 1, 0.26651948397676456], [1, 4, -1, 16.913989565188704], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [64, -53, -1, 0.11490197192609082], [-609, 316, 1, 0.4477544394033099], [-289, -652, -1, 0.26819823430323175], [4, -3, 1, -0.0244372519721974], [-617, 300, -1, 0.4608329393064574], [3, -2, 1, 19.045221314450384], [43, 0, -1, 0.8343864611426888], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -49, -1, -0.03242929518215669], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 18.858765094785042], [4, 0, 0, 2.4156135388573103], [615, -300, 1, -0.4670232283150367], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 19.383031304433956], [-2, 0, 0, -0.10821085510488573], [316, 675, 1, -0.09361723603715706]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 323, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 15.635594652317483], [-625, 349, 1, 0.26654222809711575], [3, 5, -1, 16.961010434811335], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [65, -51, -1, 0.11070550266192071], [-611, 317, 1, 0.44776219038460713], [-290, -654, -1, 0.2682213175063062], [6, -4, 1, -0.015604390528130075], [-619, 301, -1, 0.4608386688749693], [5, -3, 1, 19.052794400544567], [44, -2, -1, 0.8416158005940771], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -48, -1, -0.027405019286345433], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 18.92320562398962], [4, 0, 0, 2.4156135388573103], [617, -301, 1, -0.46702831037727244], [2, -2, 0, 0.5087787822945713], [1, -5, 1, 19.45343734871714], [-2, 0, 0, -0.10821085510488573], [317, 677, 1, -0.09362951944268448]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 324, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 15.72579240868095], [-627, 350, 1, 0.2665648307152133], [4, 3, -1, 17.022583617650454], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [67, -52, -1, 0.10986510332361539], [-613, 318, 1, 0.4477698911764217], [-291, -656, -1, 0.26824425701654014], [4, -3, 1, -0.0244372519721974], [-621, 302, -1, 0.46084436133938955], [3, -2, 1, 19.045221314450384], [42, -3, -1, 0.845735396642619], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -47, -1, -0.02248427000847298], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 18.9876461531942], [4, 0, 0, 2.4156135388573103], [619, -302, 1, -0.46703335944224483], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 19.51560439052814], [-2, 0, 0, -0.10821085510488573], [318, 679, 1, -0.0936417296065584]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 325, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 3, -1, 15.772813278303582], [-629, 351, 1, 0.2665872931465906], [5, 1, -1, 17.093583520905522], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [68, -50, -1, 0.10572925150291287], [-615, 319, 1, 0.44777754226462824], [-292, -658, -1, 0.26826705417055713], [6, -4, 1, -0.015604390528130075], [-623, 303, -1, 0.4608500170589639], [5, -3, 1, 19.052794400544567], [43, -1, -1, 0.8380870718478822], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -49, -1, -0.027405019286345436], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 19.04820562398962], [4, 0, 0, 2.4156135388573103], [621, -303, 1, -0.4670383758302752], [2, -2, 0, 0.5087787822945713], [4, -2, 1, 19.598229060797422], [-2, 0, 0, -0.10821085510488573], [319, 681, 1, -0.09365386718176077]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 326, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 4, -1, 15.8343864611427], [-631, 352, 1, 0.2666096166905352], [4, -1, -1, 17.163989565188707], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [67, -48, -1, 0.10376165118938935], [-617, 320, 1, 0.4477851441288507], [-293, -660, -1, 0.26828971028846593], [4, -3, 1, -0.0244372519721974], [-625, 304, -1, 0.46085563638831534], [3, -2, 1, 19.045221314450384], [44, 1, -1, 0.8307699259410808], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -48, -1, -0.02908027260406915], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 19.14178914489512], [4, 0, 0, 2.4156135388573103], [623, -304, 1, -0.4670433598575523], [2, -2, 0, 0.5087787822945713], [5, 0, 1, 19.67202086962264], [-2, 0, 0, -0.10821085510488573], [320, 683, 1, -0.09366593281353605]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 327, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 15.885594652317483], [-633, 353, 1, 0.26663180263033887], [5, -3, -1, 17.21101043481134], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [65, -49, -1, 0.10762882728480974], [-619, 321, 1, 0.44779269724256193], [-294, -662, -1, 0.26831222667411475], [6, -4, 1, -0.015604390528130075], [-627, 305, -1, 0.4608612196775186], [4, -4, 1, 19.013804835355884], [45, -1, -1, 0.8379226556428463], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -50, -1, -0.030652628530532685], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 19.246997432814837], [4, 0, 0, 2.4156135388573103], [625, -305, 1, -0.4670483118361988], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 19.745812678447855], [-2, 0, 0, -0.10821085510488573], [321, 685, 1, -0.09367792713950547]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 328, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 15.97579240868095], [-635, 354, 1, 0.2666538522335427], [3, -4, -1, 17.272583617650458], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [64, -51, -1, 0.11190602745857257], [-621, 322, 1, 0.4478002020731827], [-295, -664, -1, 0.2683346046153404], [4, -3, 1, -0.0244372519721974], [-629, 306, -1, 0.4608667672721726], [2, -3, 1, 18.982388356261385], [43, -2, -1, 0.8417836854928753], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -49, -1, -0.03242929518215669], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -4, 1, 19.337195189178306], [4, 0, 0, 2.4156135388573103], [627, -306, 1, -0.4670532320743366], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 19.828437348717138], [-2, 0, 0, -0.10821085510488573], [322, 687, 1, -0.09368985078977918]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 329, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 16.061802843492266], [-637, 355, 1, 0.266675766752178], [1, -5, -1, 17.343583520905526], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -50, -1, 0.11283389172956387], [-623, 323, 1, 0.4478076590821775], [-296, -666, -1, 0.2683568453842135], [6, -4, 1, -0.015604390528130075], [-631, 307, -1, 0.4608722795134717], [4, -4, 1, 19.013804835355884], [44, 0, -1, 0.8343864611426888], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -48, -1, -0.034320444069676395], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 19.42320562398962], [4, 0, 0, 2.4156135388573103], [629, -307, 1, -0.4670581208761502], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 19.92202086962264], [-2, 0, 0, -0.10821085510488573], [323, 689, 1, -0.0937017043870666]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 330, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 16.14781327830358], [-639, 356, 1, 0.26669754742300245], [-1, -4, -1, 17.41398956518871], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [64, -51, -1, 0.11190602745857257], [-625, 324, 1, 0.44781506872514937], [-297, -668, -1, 0.2683789502372786], [4, -3, 1, -0.0244372519721974], [-633, 308, -1, 0.46087775673827575], [3, -2, 1, 19.045221314450384], [45, -2, -1, 0.8414553621977251], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -46, -1, -0.03276776217847596], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -1, 1, 19.509216058800934], [4, 0, 0, 2.4156135388573103], [631, -308, 1, -0.46706297854194995], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 20.01560439052814], [-2, 0, 0, -0.10821085510488573], [324, 691, 1, -0.0937134885467847]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 331, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 2, -1, 16.135594652317483], [-641, 357, 1, 0.2667191954677322], [-3, -5, -1, 17.461010434811342], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -50, -1, 0.11283389172956387], [-627, 325, 1, 0.4478224314519327], [-298, -670, -1, 0.26840092041579017], [6, -4, 1, -0.015604390528130075], [-635, 309, -1, 0.4608831992791788], [4, -4, 1, 19.013804835355884], [43, -3, -1, 0.8454723308605492], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -44, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 1, 1, 19.599413815164404], [4, 0, 0, 2.4156135388573103], [633, -309, 1, -0.4670678053682334], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 20.120812678447855], [-2, 0, 0, -0.10821085510488573], [325, 693, 1, -0.09372520387716439]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 332, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, 0, -1, 16.186802843492266], [-643, 358, 1, 0.2667407120932698], [-4, -3, -1, 17.52258361765046], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -52, -1, 0.11717204613824939], [-629, 326, 1, 0.4478297477066841], [-299, -672, -1, 0.2684227571459445], [4, -3, 1, -0.0244372519721974], [-637, 310, -1, 0.46088860746457616], [2, -3, 1, 18.982388356261385], [44, -1, -1, 0.8380029963442966], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -42, -1, -0.025532694569721775], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 19.70462210308412], [4, 0, 0, 2.4156135388573103], [635, -310, 1, -0.4670726016477453], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 20.211010434811325], [-2, 0, 0, -0.10821085510488573], [326, 695, 1, -0.0937368509793551]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 333, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, -2, -1, 16.225792408680952], [-645, 359, 1, 0.26676209849192783], [-5, -1, -1, 17.59358352090553], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -50, -1, 0.11539243244775998], [-631, 327, 1, 0.4478370179279718], [-300, -674, -1, 0.268444461639107], [6, -4, 1, -0.015604390528130075], [-639, 311, -1, 0.4608939816187307], [4, -2, 1, 19.065013026530668], [42, -2, -1, 0.8419595472368727], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -40, -1, -0.019831933192161366], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 19.79820562398962], [4, 0, 0, 2.4156135388573103], [637, -311, 1, -0.46707736766953717], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 20.29702086962264], [-2, 0, 0, -0.10821085510488573], [327, 697, 1, -0.09374843044752755]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 334, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, 0, -1, 16.186802843492266], [-647, 360, 1, 0.2667833558416486], [-4, 1, -1, 17.663989565188714], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -48, -1, 0.11092886045818565], [-633, 328, 1, 0.4478442425488631], [-301, -676, -1, 0.26846603509203576], [4, -3, 1, -0.0244372519721974], [-641, 312, -1, 0.46089932206183726], [3, 0, 1, 19.138804835355884], [43, 0, -1, 0.8343864611426887], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -42, -1, -0.02191909147833995], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 19.89178914489512], [4, 0, 0, 2.4156135388573103], [639, -312, 1, -0.4670821037190252], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 20.383031304433953], [-2, 0, 0, -0.10821085510488573], [328, 699, 1, -0.09375994286897464]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 335, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, -2, -1, 16.225792408680952], [-649, 361, 1, 0.2668044853062197], [-5, 3, -1, 17.711010434811346], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -49, -1, 0.11512673162099203], [-635, 329, 1, 0.44785142199701067], [-302, -678, -1, 0.2684874786871007], [6, -4, 1, -0.015604390528130075], [-643, 313, -1, 0.4609046291100869], [4, 2, 1, 19.2125966441811], [44, -2, -1, 0.841615800594077], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -43, -1, -0.020336118231309055], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 19.996997432814837], [4, 0, 0, 2.4156135388573103], [641, -313, 1, -0.46708681007804714], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 20.473229060797422], [-2, 0, 0, -0.10821085510488573], [329, 701, 1, -0.09377138882421071]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 336, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -3, -1, 16.260594652317483], [-651, 362, 1, 0.266825488035486], [-3, 4, -1, 17.772583617650465], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -51, -1, 0.11694511433896045], [-637, 330, 1, 0.4478585566947364], [-303, -680, -1, 0.26850879359249935], [4, -3, 1, -0.0244372519721974], [-645, 314, -1, 0.4609099030757285], [2, 3, 1, 19.295221314450384], [42, -3, -1, 0.8457353966426189], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -45, -1, -0.025656134262983587], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 20.087195189178306], [4, 0, 0, 2.4156135388573103], [643, -314, 1, -0.4670914870249184], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 20.578437348717138], [-2, 0, 0, -0.10821085510488573], [330, 703, 1, -0.09378276888706903]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 337, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -2, -1, 16.260594652317483], [-653, 363, 1, 0.26684636516555765], [-1, 5, -1, 17.843583520905533], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -49, -1, 0.11252743201250733], [-639, 331, 1, 0.44786564705911475], [-304, -682, -1, 0.268529980962468], [6, -4, 1, -0.015604390528130075], [-647, 315, -1, 0.4609151442671307], [0, 4, 1, 19.388804835355884], [43, -1, -1, 0.8380870718478821], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -46, -1, -0.024019254744314003], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 20.17320562398962], [4, 0, 0, 2.4156135388573103], [645, -315, 1, -0.46709613483448664], [2, -2, 0, 0.5087787822945713], [5, -3, 1, 20.58601043481132], [-2, 0, 0, -0.10821085510488573], [331, 705, 1, -0.09379408362479756]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 338, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 16.343219322586766], [-655, 364, 1, 0.26686711781901457], [1, 4, -1, 17.913989565188718], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [63, -50, -1, 0.11159168355553037], [-641, 332, 1, 0.4478726935020535], [-305, -684, -1, 0.2685510419374899], [4, -3, 1, -0.0244372519721974], [-649, 316, -1, 0.46092035298884143], [-2, 5, 1, 19.449364306151306], [44, 1, -1, 0.8307699259410807], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -47, -1, -0.022484270008472976], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 20.259216058800934], [4, 0, 0, 2.4156135388573103], [647, -316, 1, -0.46710075377818594], [2, -2, 0, 0.5087787822945713], [4, -1, 1, 20.633031304433953], [-2, 0, 0, -0.10821085510488573], [332, 707, 1, -0.09380533359815327]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 339, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 16.436802843492266], [-657, 365, 1, 0.26688774710510665], [3, 5, -1, 17.96101043481135], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -48, -1, 0.1096736388227863], [-643, 333, 1, 0.44787969643037395], [-306, -686, -1, 0.26857197764449914], [6, -4, 1, -0.015604390528130075], [-651, 317, -1, 0.46092552954164734], [-3, 3, 1, 19.513804835355884], [45, -1, -1, 0.8379226556428462], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -48, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -3, 1, 20.349413815164404], [4, 0, 0, 2.4156135388573103], [649, -317, 1, -0.46710534412408933], [2, -2, 0, 0.5087787822945713], [3, 1, 1, 20.723229060797422], [-2, 0, 0, -0.10821085510488573], [333, 709, 1, -0.09381651936149453]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 340, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 16.530386364397767], [-659, 366, 1, 0.2669082541199515], [4, 3, -1, 18.02258361765047], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -50, -1, 0.11410061874657201], [-645, 334, 1, 0.4478866562458889], [-307, -688, -1, 0.2685927891970811], [4, -3, 1, -0.0244372519721974], [-653, 318, -1, 0.46093067422263134], [-4, 1, 1, 19.5998152701672], [43, -2, -1, 0.8417836854928752], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -50, -1, -0.032325768564217885], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -2, 1, 20.45462210308412], [4, 0, 0, 2.4156135388573103], [651, -318, 1, -0.46710990613696085], [2, -2, 0, 0.5087787822945713], [5, 2, 1, 20.73258034041806], [-2, 0, 0, -0.10821085510488573], [334, 711, 1, -0.09382764146287219]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 341, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 16.61301103466705], [-661, 367, 1, 0.2669286399467278], [5, 1, -1, 18.093583520905536], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -49, -1, 0.11512673162099203], [-647, 335, 1, 0.44789357334547947], [-308, -690, -1, 0.2686134776956696], [6, -4, 1, -0.015604390528130075], [-655, 319, -1, 0.46093578732522966], [-5, -1, 1, 19.670221314450384], [44, 0, -1, 0.8343864611426887], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -49, -1, -0.0341734866385958], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -3, 1, 20.462195189178303], [4, 0, 0, 2.4156135388573103], [653, -319, 1, -0.46711444007830627], [2, -2, 0, 0.5087787822945713], [3, 3, 1, 20.79702086962264], [-2, 0, 0, -0.10821085510488573], [335, 713, 1, -0.09383870044411904]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 342, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 0, -1, 16.686802843492266], [-663, 368, 1, 0.2669489056558655], [4, -1, -1, 18.16398956518872], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -47, -1, 0.11320862517823597], [-649, 336, 1, 0.44790044812117064], [-309, -692, -1, 0.2686340442277401], [4, -3, 1, -0.0244372519721974], [-657, 320, -1, 0.4609408691392876], [-3, -2, 1, 19.73238835626138], [45, -2, -1, 0.841455362197725], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -50, -1, -0.032325768564217885], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -4, 1, 20.465580953720334], [4, 0, 0, 2.4156135388573103], [655, -320, 1, -0.46711894620642325], [2, -2, 0, 0.5087787822945713], [1, 4, 1, 20.883031304433953], [-2, 0, 0, -0.10821085510488573], [336, 715, 1, -0.09384969684093769]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 343, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 2, -1, 16.760594652317483], [-665, 369, 1, 0.2669690523052327], [5, -3, -1, 18.211010434811353], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -48, -1, 0.11760277564981353], [-651, 337, 1, 0.44790728096020527], [-310, -694, -1, 0.268654489868], [6, -4, 1, -0.015604390528130075], [-659, 321, -1, 0.4609459199511141], [-1, -3, 1, 19.837596644181097], [43, -3, -1, 0.8454723308605491], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -49, -1, -0.0341734866385958], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [8, -2, 1, 20.509216058800934], [4, 0, 0, 2.4156135388573103], [657, -321, 1, -0.46712342477645025], [2, -2, 0, 0.5087787822945713], [-1, 3, 1, 20.973229060797422], [-2, 0, 0, -0.10821085510488573], [337, 717, 1, -0.09386063118298696]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 344, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 3, -1, 16.843219322586766], [-667, 370, 1, 0.26698908094031965], [3, -4, -1, 18.272583617650472], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -49, -1, 0.1164659739608276], [-653, 338, 1, 0.4479140722451168], [-311, -696, -1, 0.2686748156785751], [4, -3, 1, -0.0244372519721974], [-661, 322, -1, 0.46095094004353576], [1, -4, 1, 19.927794400544567], [44, -1, -1, 0.8380029963442965], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -50, -1, -0.032325768564217885], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -3, 1, 20.474413815164404], [4, 0, 0, 2.4156135388573103], [659, -322, 1, -0.4671278760404147], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 21.078437348717138], [-2, 0, 0, -0.10821085510488573], [338, 719, 1, -0.0938715039939669]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 345, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 16.936802843492266], [-669, 371, 1, 0.2670089925944185], [1, -5, -1, 18.34358352090554], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, -51, -1, 0.12098854019184492], [-655, 339, 1, 0.44792082235380065], [-312, -698, -1, 0.2686950227091933], [6, -4, 1, -0.015604390528130075], [-663, 323, -1, 0.46095592969594945], [3, -3, 1, 20.01380483535588], [42, -2, -1, 0.8419595472368726], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -49, -1, -0.0341734866385958], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -1, 1, 20.525622006339187], [4, 0, 0, 2.4156135388573103], [661, -323, 1, -0.4671323002472804], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 21.17202086962264], [-2, 0, 0, -0.10821085510488573], [339, 721, 1, -0.0938823157917024]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 346, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 3, -1, 17.030386364397767], [-671, 372, 1, 0.2670287882888011], [-1, -4, -1, 18.413989565188725], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -49, -1, 0.1164659739608276], [-657, 340, 1, 0.44792753165958415], [-313, -700, -1, 0.2687151119973648], [4, -3, 1, -0.0244372519721974], [-665, 324, -1, 0.4609608891843743], [4, -1, 1, 20.099815270167195], [43, 0, -1, 0.8343864611426886], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -50, -1, -0.032325768564217885], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 20.54820562398962], [4, 0, 0, 2.4156135388573103], [663, -324, 1, -0.4671366976429937], [2, -2, 0, 0.5087787822945713], [-3, -2, 1, 21.26560439052814], [-2, 0, 0, -0.10821085510488573], [340, 723, 1, -0.09389306708822526]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 347, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 4, -1, 17.061802843492266], [-673, 373, 1, 0.26704846903289303], [-3, -5, -1, 18.461010434811357], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -48, -1, 0.11760277564981353], [-659, 341, 1, 0.44793420053129546], [-314, -702, -1, 0.26873508456855905], [6, -4, 1, -0.015604390528130075], [-667, 325, -1, 0.4609658187815023], [5, 1, 1, 20.17022131445038], [44, -2, -1, 0.8416158005940769], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -48, -1, -0.030790783828376786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, 2, 1, 20.599413815164404], [4, 0, 0, 2.4156135388573103], [665, -325, 1, -0.4671410684705293], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 21.370812678447855], [-2, 0, 0, -0.10821085510488573], [341, 725, 1, -0.0939037583898549]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 348, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 2, -1, 17.126243372696845], [-675, 374, 1, 0.2670680358244447], [-4, -3, -1, 18.522583617650476], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -49, -1, 0.12210149368015645], [-661, 342, 1, 0.4479408293333313], [-315, -704, -1, 0.26875494143637907], [4, -3, 1, -0.0244372519721974], [-669, 326, -1, 0.46097071875674867], [7, 2, 1, 20.18309760174733], [42, -3, -1, 0.8457353966426188], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -49, -1, -0.02904573377147507], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 4, 1, 20.65559398025098], [4, 0, 0, 2.4156135388573103], [667, -326, 1, -0.4671454129699347], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 21.461010434811325], [-2, 0, 0, -0.10821085510488573], [342, 727, 1, -0.09391439019727793]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 349, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 1, -1, 17.135594652317483], [-677, 375, 1, 0.2670874896496996], [-5, -1, -1, 18.593583520905543], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -48, -1, 0.12345859596191633], [-663, 343, 1, 0.4479474184257228], [-316, -706, -1, 0.2687746836027324], [6, -4, 1, -0.015604390528130075], [-671, 327, -1, 0.46097558937630057], [5, 3, 1, 20.224815270167195], [43, -1, -1, 0.838087071847882], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -48, -1, -0.030790783828376786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 5, 1, 20.712195189178303], [4, 0, 0, 2.4156135388573103], [669, -327, 1, -0.4671497313783746], [2, -2, 0, 0.5087787822945713], [3, -3, 1, 21.54702086962264], [-2, 0, 0, -0.10821085510488573], [343, 729, 1, -0.09392496300562608]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 350, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 0, -1, 17.186802843492266], [-679, 376, 1, 0.2671068314835595], [-4, 1, -1, 18.66398956518873], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -50, -1, 0.12518713094620862], [-665, 344, 1, 0.44795396816420135], [-317, -708, -1, 0.26879431205799903], [4, -3, 1, -0.0244372519721974], [-673, 328, -1, 0.4609804309031656], [3, 4, 1, 20.286388453006314], [44, 1, -1, 0.8307699259410806], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -47, -1, -0.03264998597173686], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 6, 1, 20.771921395633992], [4, 0, 0, 2.4156135388573103], [671, -328, 1, -0.4671540239301737], [2, -2, 0, 0.5087787822945713], [5, -4, 1, 21.56463251336128], [-2, 0, 0, -0.10821085510488573], [344, 731, 1, -0.09393547730455326]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 351, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, -1, -1, 17.2093864611427], [-681, 377, 1, 0.2671260622897473], [-5, 3, -1, 18.71101043481136], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -49, -1, 0.12663872708542584], [-667, 345, 1, 0.44796047890026197], [-318, -710, -1, 0.2688138277811969], [6, -4, 1, -0.015604390528130075], [-675, 329, -1, 0.46098524359721893], [1, 3, 1, 20.337596644181097], [45, -1, -1, 0.8379226556428461], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -48, -1, -0.030790783828376786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 5, 1, 20.82962210308412], [4, 0, 0, 2.4156135388573103], [673, -329, 1, -0.467158290856859], [2, -2, 0, 0.5087787822945713], [7, -3, 1, 21.60758034041806], [-2, 0, 0, -0.10821085510488573], [345, 733, 1, -0.09394593357831074]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 352, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -3, -1, 17.260594652317483], [-683, 378, 1, 0.26714518302096624], [-3, 4, -1, 18.77258361765048], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -51, -1, 0.13139714166329539], [-669, 346, 1, 0.44796695098122674], [-319, -712, -1, 0.26883323174014395], [4, -3, 1, -0.0244372519721974], [-677, 330, -1, 0.4609900277152497], [-1, 4, 1, 20.427794400544567], [43, -2, -1, 0.8417836854928751], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -47, -1, -0.03264998597173686], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 20.891789144895117], [4, 0, 0, 2.4156135388573103], [675, -330, 1, -0.46716253238720185], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 21.64573664126701], [-2, 0, 0, -0.10821085510488573], [346, 735, 1, -0.0939563323058218]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 353, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -4, -1, 17.311802843492266], [-685, 379, 1, 0.267164194619057], [-1, 5, -1, 18.843583520905547], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -49, -1, 0.12663872708542584], [-671, 347, 1, 0.447973384750306], [-320, -714, -1, 0.26885252489161815], [6, -4, 1, -0.015604390528130075], [-679, 331, -1, 0.4609947835110072], [-3, 3, 1, 20.51380483535588], [44, 0, -1, 0.8343864611426886], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -46, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 20.996997432814833], [4, 0, 0, 2.4156135388573103], [677, -331, 1, -0.4671667487472584], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 21.703437348717138], [-2, 0, 0, -0.10821085510488573], [347, 737, 1, -0.09396667396075452]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 354, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 17.343219322586766], [-687, 380, 1, 0.2671830980151522], [1, 4, -1, 18.913989565188732], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -50, -1, 0.13142897265148937], [-673, 348, 1, 0.4479797805466595], [-321, -716, -1, 0.2688717081815139], [4, -3, 1, -0.0244372519721974], [-681, 332, -1, 0.46099951123524496], [-4, 1, 1, 20.599815270167195], [45, -2, -1, 0.8414553621977249], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -45, -1, -0.022272768547471542], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 21.087195189178303], [4, 0, 0, 2.4156135388573103], [679, -332, 1, -0.46717094016041], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 21.765604390528136], [-2, 0, 0, -0.10821085510488573], [348, 739, 1, -0.09397695901159384]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 355, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 17.436802843492266], [-689, 381, 1, 0.267201894129828], [3, 5, -1, 18.961010434811364], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -52, -1, 0.13618420730990818], [-675, 349, 1, 0.44798613870545556], [-322, -718, -1, 0.26889078254499665], [6, -4, 1, -0.015604390528130075], [-683, 333, -1, 0.46100421113576556], [-3, -1, 1, 20.690013026530664], [43, -3, -1, 0.845472330860549], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -43, -1, -0.017040027622010817], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 21.173205623989617], [4, 0, 0, 2.4156135388573103], [681, -333, 1, -0.4671751068474026], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 21.87081267844785], [-2, 0, 0, -0.10821085510488573], [349, 741, 1, -0.09398718792171211]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 356, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -6, -1, 17.463087071847895], [-691, 382, 1, 0.2672205838732527], [4, 3, -1, 19.022583617650483], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -51, -1, 0.138018010272041], [-677, 350, 1, 0.4479924595579299], [-323, -720, -1, 0.2689097489066542], [4, -3, 1, -0.0244372519721974], [-685, 334, -1, 0.4610088834574633], [-4, -3, 1, 20.741221217705448], [44, -1, -1, 0.8380029963442964], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-51, -42, -1, -0.012050741087300483], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 21.25921605880093], [4, 0, 0, 2.4156135388573103], [683, -334, 1, -0.4671792490263854], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 21.96101043481132], [-2, 0, 0, -0.10821085510488573], [350, 743, 1, -0.09399736114943867]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 357, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -7, -1, 17.501243372696845], [-693, 383, 1, 0.2672391681453342], [5, 1, -1, 19.09358352090555], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -49, -1, 0.1365898689881626], [-679, 351, 1, 0.4479987434314429], [-324, -722, -1, 0.26892860818064596], [6, -4, 1, -0.015604390528130075], [-687, 335, -1, 0.46101352844236726], [-5, -5, 1, 20.76380483535588], [42, -2, -1, 0.8419595472368725], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -41, -1, -0.013294997452971625], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -3, 1, 21.3494138151644], [4, 0, 0, 2.4156135388573103], [685, -335, 1, -0.4671833669129491], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 22.047020869622635], [-2, 0, 0, -0.10821085510488573], [351, 745, 1, -0.09400747914812839]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 358, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -5, -1, 17.497362314287688], [-695, 384, 1, 0.26725764783586325], [4, -1, -1, 19.163989565188736], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -51, -1, 0.138018010272041], [-681, 352, 1, 0.4480049906495367], [-325, -724, -1, 0.2689473612708494], [4, -3, 1, -0.0244372519721974], [-689, 336, -1, 0.46101814632968274], [-3, -6, 1, 20.815013026530664], [43, 0, -1, 0.8343864611426884], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-51, -42, -1, -0.012050741087300483], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -2, 1, 21.454622103084116], [4, 0, 0, 2.4156135388573103], [687, -336, 1, -0.46718746072016304], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 22.13303130443395], [-2, 0, 0, -0.10821085510488573], [352, 747, 1, -0.09401754236622872]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 359, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 17.48801103466705], [-697, 385, 1, 0.26727602382465593], [5, -3, -1, 19.211010434811367], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -50, -1, 0.13996646491454096], [-683, 353, 1, 0.4480112015319897], [-326, -726, -1, 0.2689660090710041], [6, -4, 1, -0.015604390528130075], [-691, 337, -1, 0.4610227373558324], [-2, -4, 1, 20.815013026530664], [44, -2, -1, 0.8416158005940768], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -44, -1, -0.017259956007716737], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -4, 1, 21.423205623989617], [4, 0, 0, 2.4156135388573103], [689, -337, 1, -0.4671915306586123], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 22.22322906079742], [-2, 0, 0, -0.10821085510488573], [353, 749, 1, -0.09402755124734609]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 360, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 17.539219225841833], [-699, 386, 1, 0.2672942969816921], [3, -4, -1, 19.272583617650486], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -51, -1, 0.138018010272041], [-685, 354, 1, 0.44801737639487194], [-327, -728, -1, 0.2689845524648534], [4, -3, 1, -0.0244372519721974], [-693, 338, -1, 0.46102730175449663], [0, -3, 1, 20.88880483535588], [42, -3, -1, 0.8457353966426187], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -42, -1, -0.015186393300246678], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -3, 1, 21.4744138151644], [4, 0, 0, 2.4156135388573103], [691, -338, 1, -0.46719557693643343], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 22.328437348717134], [-2, 0, 0, -0.10821085510488573], [354, 751, 1, -0.09403750623031097]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 361, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 17.48801103466705], [-701, 387, 1, 0.26731246816725324], [1, -5, -1, 19.343583520905554], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -50, -1, 0.13306901088009954], [-687, 355, 1, 0.4480235155505985], [-328, -730, -1, 0.2690029923262837], [6, -4, 1, -0.015604390528130075], [-695, 339, -1, 0.4610318397566533], [-2, -4, 1, 20.815013026530664], [43, -1, -1, 0.8380870718478819], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -44, -1, -0.020489594503014394], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -1, 1, 21.525622006339184], [4, 0, 0, 2.4156135388573103], [693, -339, 1, -0.46719959975935027], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 22.422020869622635], [-2, 0, 0, -0.10821085510488573], [355, 753, 1, -0.09404740774924199]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 362, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 17.539219225841833], [-703, 388, 1, 0.2673305382320564], [-1, -4, -1, 19.41398956518874], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -51, -1, 0.138018010272041], [-689, 356, 1, 0.4480296193079821], [-329, -732, -1, 0.2690213295194615], [4, -3, 1, -0.0244372519721974], [-697, 340, -1, 0.46103635159061646], [-3, -6, 1, 20.815013026530664], [44, 1, -1, 0.8307699259410805], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -42, -1, -0.018473119309267025], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 21.548205623989617], [4, 0, 0, 2.4156135388573103], [695, -340, 1, -0.4672035993307085], [2, -2, 0, 0.5087787822945713], [2, -5, 1, 22.482580340418057], [-2, 0, 0, -0.10821085510488573], [356, 755, 1, -0.09405725623360901]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 363, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 17.61301103466705], [-705, 389, 1, 0.2673485080173873], [-3, -5, -1, 19.46101043481137], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -52, -1, 0.13618420730990818], [-691, 357, 1, 0.4480356879722846], [-330, -734, -1, 0.26903956489896796], [6, -4, 1, -0.015604390528130075], [-699, 341, -1, 0.4610408374820748], [-2, -4, 1, 20.815013026530664], [45, -1, -1, 0.837922655642846], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -41, -1, -0.020007794936158913], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 21.621997432814833], [4, 0, 0, 2.4156135388573103], [697, -341, 1, -0.4672075758515101], [2, -2, 0, 0.5087787822945713], [3, -3, 1, 22.547020869622635], [-2, 0, 0, -0.10821085510488573], [357, 757, 1, -0.09406705210829511]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 364, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 0, -1, 17.686802843492266], [-707, 390, 1, 0.26736637835523014], [-4, -3, -1, 19.52258361765049], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -50, -1, 0.1347421509137847], [-693, 358, 1, 0.44804172184526864], [-331, -736, -1, 0.2690576993099314], [4, -3, 1, -0.0244372519721974], [-701, 342, -1, 0.4610452976541292], [0, -3, 1, 20.88880483535588], [43, -2, -1, 0.841783685492875], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -39, -1, -0.014327651940866992], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 21.704622103084116], [4, 0, 0, 2.4156135388573103], [699, -342, 1, -0.46721152952044714], [2, -2, 0, 0.5087787822945713], [4, -1, 1, 22.63303130443395], [-2, 0, 0, -0.10821085510488573], [358, 759, 1, -0.09407679579365764]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 365, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 2, -1, 17.760594652317483], [-709, 391, 1, 0.26738415006839616], [-5, -1, -1, 19.593583520905558], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -48, -1, 0.13320716617794365], [-695, 359, 1, 0.4480477212252469], [-332, -738, -1, 0.26907573358815756], [6, -4, 1, -0.015604390528130075], [-703, 343, -1, 0.46104973232733004], [1, -5, 1, 20.92022131445038], [44, 0, -1, 0.8343864611426884], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -40, -1, -0.019831933192161366], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 21.798205623989617], [4, 0, 0, 2.4156135388573103], [701, -343, 1, -0.4672154605339344], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 22.703437348717134], [-2, 0, 0, -0.10821085510488573], [359, 761, 1, -0.09408648770558845]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 366, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 4, -1, 17.8343864611427], [-711, 392, 1, 0.2674018239706491], [-4, 1, -1, 19.663989565188743], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -46, -1, 0.13157028665927412], [-697, 360, 1, 0.4480536864071315], [-333, -740, -1, 0.26909366856025785], [4, -3, 1, -0.0244372519721974], [-705, 344, -1, 0.46105414171971293], [2, -3, 1, 20.982388356261378], [45, -2, -1, 0.8414553621977248], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -42, -1, -0.02191909147833995], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 21.85876509478504], [4, 0, 0, 2.4156135388573103], [703, -344, 1, -0.4672193690861424], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 22.765604390528132], [-2, 0, 0, -0.10821085510488573], [360, 763, 1, -0.09409612825557286]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 367, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 17.905386364397767], [-713, 393, 1, 0.26741940086682975], [-5, 3, -1, 19.711010434811374], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -44, -1, 0.12628520713575472], [-699, 361, 1, 0.4480596176824824], [-334, -742, -1, 0.26911150504377523], [6, -4, 1, -0.015604390528130075], [-707, 345, -1, 0.4610585260468349], [4, -2, 1, 21.06501302653066], [43, -3, -1, 0.8454723308605488], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -40, -1, -0.016319149568484948], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 21.923205623989617], [4, 0, 0, 2.4156135388573103], [705, -345, 1, -0.46722325536902914], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 22.870812678447848], [-2, 0, 0, -0.10821085510488573], [361, 765, 1, -0.09410571785074794]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 368, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 17.975792408680952], [-715, 394, 1, 0.2674368815529772], [-3, 4, -1, 19.772583617650493], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -42, -1, 0.12433547382790677], [-701, 362, 1, 0.44806551533955497], [-335, -744, -1, 0.26912924384730813], [4, -3, 1, -0.0244372519721974], [-709, 346, -1, 0.46106288552180946], [3, 0, 1, 21.138804835355877], [44, -1, -1, 0.8380029963442963], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -42, -1, -0.01847311930926703], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 21.987646153194195], [4, 0, 0, 2.4156135388573103], [707, -346, 1, -0.4672271195723715], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 22.961010434811318], [-2, 0, 0, -0.10821085510488573], [362, 767, 1, -0.09411525689395975]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 369, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 18.061802843492266], [-717, 395, 1, 0.2674542668164494], [-1, 5, -1, 19.84358352090556], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -43, -1, 0.12982140163591224], [-703, 363, 1, 0.4480713796633463], [-336, -746, -1, 0.2691468857706325], [6, -4, 1, -0.015604390528130075], [-711, 347, -1, 0.461067220355341], [4, 2, 1, 21.212596644181094], [42, -2, -1, 0.8419595472368724], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -40, -1, -0.012976050098193154], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 22.048205623989617], [4, 0, 0, 2.4156135388573103], [709, -347, 1, -0.46723096188379615], [2, -2, 0, 0.5087787822945713], [-3, 5, 1, 23.00803130443395], [-2, 0, 0, -0.10821085510488573], [363, 769, 1, -0.09412474578381975]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 370, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 18.14781327830358], [-719, 396, 1, 0.2674715574360406], [1, 4, -1, 19.913989565188746], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, -44, -1, 0.13543630424801228], [-705, 364, 1, 0.44807721093564146], [-337, -748, -1, 0.26916443160482156], [4, -3, 1, -0.0244372519721974], [-713, 348, -1, 0.46107153075575885], [2, 3, 1, 21.295221314450377], [43, 0, -1, 0.8343864611426883], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -39, -1, -0.007833438383935739], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 22.141789144895117], [4, 0, 0, 2.4156135388573103], [711, -348, 1, -0.46723478248881], [2, -2, 0, 0.5087787822945713], [-4, 3, 1, 23.069604487273068], [-2, 0, 0, -0.10821085510488573], [364, 771, 1, -0.09413418491476024]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 371, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 18.186802843492266], [-721, 397, 1, 0.2674887541820979], [3, 5, -1, 19.961010434811378], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -43, -1, 0.13757890820733804], [-707, 365, 1, 0.4480830094350585], [-338, -750, -1, 0.26918188213236405], [6, -4, 1, -0.015604390528130075], [-715, 349, -1, 0.46107581692905064], [0, 4, 1, 21.388804835355877], [44, -2, -1, 0.8416158005940767], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -38, -1, -0.008981367577627453], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 22.246997432814833], [4, 0, 0, 2.4156135388573103], [713, -349, 1, -0.46723858157083], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 23.12081267844785], [-2, 0, 0, -0.10821085510488573], [365, 773, 1, -0.09414357467708905]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 372, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 18.225792408680952], [-723, 398, 1, 0.2675058578166349], [4, 3, -1, 20.022583617650497], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -42, -1, 0.13988108136957153], [-709, 366, 1, 0.44808877543709286], [-339, -752, -1, 0.2691992381272801], [4, -3, 1, -0.0244372519721974], [-717, 350, -1, 0.461080079078895], [-2, 5, 1, 21.4493643061513], [42, -3, -1, 0.8457353966426185], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -36, -1, -0.006434403263391883], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -4, 1, 22.337195189178303], [4, 0, 0, 2.4156135388573103], [715, -350, 1, -0.46724235931121233], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 23.21101043481132], [-2, 0, 0, -0.10821085510488573], [366, 775, 1, -0.09415291545704318]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 373, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 18.272813278303584], [-725, 399, 1, 0.26752286909344425], [5, 1, -1, 20.093583520905565], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -43, -1, 0.13757890820733804], [-711, 367, 1, 0.4480945092141609], [-340, -754, -1, 0.2692165003552354], [6, -4, 1, -0.015604390528130075], [-719, 351, -1, 0.4610843174066938], [-3, 3, 1, 21.513804835355877], [43, -1, -1, 0.8380870718478818], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -34, -1, -0.0037084481476006357], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -6, 1, 22.3494138151644], [4, 0, 0, 2.4156135388573103], [717, -351, 1, -0.4672461158892816], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 23.297020869622635], [-2, 0, 0, -0.10821085510488573], [367, 777, 1, -0.09416220763684184]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 374, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 18.280386364397767], [-727, 400, 1, 0.26753978875820844], [4, -1, -1, 20.16398956518875], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -44, -1, 0.14354144480848502], [-713, 368, 1, 0.4481002110356428], [-341, -756, -1, 0.26923366957365374], [4, -3, 1, -0.0244372519721974], [-721, 352, -1, 0.46108853211160417], [-4, 1, 1, 21.59981527016719], [44, 1, -1, 0.8307699259410803], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -33, -1, 0.001737972414575658], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -7, 1, 22.3808302942589], [4, 0, 0, 2.4156135388573103], [719, -352, 1, -0.46724985148235904], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 23.38303130443395], [-2, 0, 0, -0.10821085510488573], [368, 779, 1, -0.09417145159473851]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 375, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -4, -1, 18.311802843492266], [-729, 401, 1, 0.267556617548608], [5, -3, -1, 20.21101043481138], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -43, -1, 0.14608810603988157], [-715, 369, 1, 0.4481058811679248], [-342, -758, -1, 0.2692507465318274], [6, -4, 1, -0.015604390528130075], [-723, 353, -1, 0.4610927233905694], [-3, -1, 1, 21.69001302653066], [45, -1, -1, 0.8379226556428458], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -35, -1, -0.0011207909307187052], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -6, 1, 22.3494138151644], [4, 0, 0, 2.4156135388573103], [721, -353, 1, -0.4672535662657902], [2, -2, 0, 0.5087787822945713], [1, -5, 1, 23.453437348717134], [-2, 0, 0, -0.10821085510488573], [369, 781, 1, -0.09418064770507222]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 376, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -5, -1, 18.376243372696845], [-731, 402, 1, 0.2675733561944288], [3, -4, -1, 20.2725836176505], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -41, -1, 0.14014164915099214], [-717, 370, 1, 0.4481115198744408], [-343, -760, -1, 0.2692677319710259], [4, -3, 1, -0.0244372519721974], [-725, 354, -1, 0.46109689143834964], [-2, -3, 1, 21.795221314450377], [43, -2, -1, 0.8417836854928749], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -37, -1, -0.0037979112877518885], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -7, 1, 22.3808302942589], [4, 0, 0, 2.4156135388573103], [723, -354, 1, -0.46725726041297266], [2, -2, 0, 0.5087787822945713], [2, -7, 1, 23.466313636014085], [-2, 0, 0, -0.10821085510488573], [370, 783, 1, -0.09418979633831799]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 377, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -7, -1, 18.414219225841833], [-733, 403, 1, 0.2675900054176673], [1, -5, -1, 20.343583520905568], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -43, -1, 0.14608810603988157], [-719, 371, 1, 0.4481171274157128], [-344, -762, -1, 0.2692846266246032], [6, -4, 1, -0.015604390528130075], [-727, 355, -1, 0.46110103644755224], [-1, -5, 1, 21.857388356261374], [44, 0, -1, 0.8343864611426883], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -39, -1, -0.00939648125051977], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -8, 1, 22.3371951891783], [4, 0, 0, 2.4156135388573103], [725, -355, 1, -0.467260934095383], [2, -2, 0, 0.5087787822945713], [4, -8, 1, 23.495812678447848], [-2, 0, 0, -0.10821085510488573], [371, 785, 1, -0.09419889786113676]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 378, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -8, -1, 18.45659455557255], [-735, 404, 1, 0.2676065659326342], [-1, -4, -1, 20.413989565188754], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -41, -1, 0.14014164915099214], [-721, 372, 1, 0.4481227040493914], [-345, -764, -1, 0.26930143121810285], [4, -3, 1, -0.0244372519721974], [-729, 356, -1, 0.4611051586086612], [1, -4, 1, 21.92779440054456], [45, -2, -1, 0.8414553621977247], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -41, -1, -0.014912931467823848], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -7, 1, 22.3808302942589], [4, 0, 0, 2.4156135388573103], [727, -356, 1, -0.4672645874826032], [2, -2, 0, 0.5087787822945713], [6, -7, 1, 23.534802243636534], [-2, 0, 0, -0.10821085510488573], [372, 787, 1, -0.09420795263642405]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 379, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -7, -1, 18.501243372696845], [-737, 405, 1, 0.26762303844605617], [-3, -5, -1, 20.461010434811385], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -40, -1, 0.14269768893286403], [-723, 373, 1, 0.44812825003029505], [-346, -766, -1, 0.2693181464693617], [6, -4, 1, -0.015604390528130075], [-731, 357, -1, 0.46110925811006653], [3, -3, 1, 22.013804835355874], [43, -3, -1, 0.8454723308605487], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -39, -1, -0.012642392425387814], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -8, 1, 22.3371951891783], [4, 0, 0, 2.4156135388573103], [729, -357, 1, -0.4672682207423467], [2, -2, 0, 0.5087787822945713], [7, -5, 1, 23.57330509797826], [-2, 0, 0, -0.10821085510488573], [373, 789, 1, -0.09421696102335839]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 380, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -5, -1, 18.497362314287688], [-739, 406, 1, 0.26763942365717636], [-4, -3, -1, 20.522583617650504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -38, -1, 0.13635833737510197], [-725, 374, 1, 0.4481337656104487], [-347, -768, -1, 0.26933477308861203], [4, -3, 1, -0.0244372519721974], [-733, 358, -1, 0.46111333513809266], [4, -1, 1, 22.099815270167188], [44, -1, -1, 0.8380029963442962], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -37, -1, -0.010214419388452068], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 22.32448985234524], [4, 0, 0, 2.4156135388573103], [731, -358, 1, -0.4672718340404842], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 23.598229060797415], [-2, 0, 0, -0.10821085510488573], [374, 791, 1, -0.0942259233774487]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 381, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 18.48801103466705], [-741, 407, 1, 0.2676557222578532], [-5, -1, -1, 20.59358352090557], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -37, -1, 0.12982140163591224], [-727, 375, 1, 0.4481392510391224], [-348, -770, -1, 0.2693513117785817], [6, -4, 1, -0.015604390528130075], [-735, 359, -1, 0.46111738987702716], [3, 1, 1, 22.190013026530657], [42, -2, -1, 0.8419595472368723], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -36, -1, -0.011542260571068606], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -7, 1, 22.36264615319419], [4, 0, 0, 2.4156135388573103], [733, -359, 1, -0.467275427541069], [2, -2, 0, 0.5087787822945713], [4, -2, 1, 23.598229060797415], [-2, 0, 0, -0.10821085510488573], [375, 793, 1, -0.094234840050581]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 382, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 18.539219225841833], [-743, 408, 1, 0.26767193493265745], [-4, 1, -1, 20.663989565188757], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -35, -1, 0.12757993092729455], [-729, 376, 1, 0.44814470656286837], [-349, -772, -1, 0.269367763234593], [4, -3, 1, -0.0244372519721974], [-737, 360, -1, 0.46112142250914795], [2, 3, 1, 22.295221314450373], [43, 0, -1, 0.8343864611426882], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -34, -1, -0.00888651958939719], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 22.358765094785035], [4, 0, 0, 2.4156135388573103], [735, -360, 1, -0.46727900140636136], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 23.67202086962263], [-2, 0, 0, -0.10821085510488573], [376, 795, 1, -0.09424371139106447]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 383, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 18.61301103466705], [-745, 409, 1, 0.26768806235896775], [-5, 3, -1, 20.71101043481139], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -36, -1, 0.12552096358319567], [-731, 377, 1, 0.4481501324255584], [-350, -774, -1, 0.2693841281446601], [6, -4, 1, -0.015604390528130075], [-739, 361, -1, 0.4611254332147511], [0, 4, 1, 22.388804835355874], [44, -2, -1, 0.8416158005940766], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -32, -1, -0.002481056467188737], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 22.423205623989613], [4, 0, 0, 2.4156135388573103], [737, -361, 1, -0.46728255579685346], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 23.70343734871713], [-2, 0, 0, -0.10821085510488573], [377, 797, 1, -0.09425253774367678]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 384, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 0, -1, 18.686802843492266], [-747, 410, 1, 0.2677041052070651], [-3, 4, -1, 20.772583617650508], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -34, -1, 0.12310054270075577], [-733, 378, 1, 0.4481555288684198], [-351, -776, -1, 0.26940040718958463], [4, -3, 1, -0.0244372519721974], [-741, 362, -1, 0.4611294221721773], [-2, 3, 1, 22.482388356261374], [42, -3, -1, 0.8457353966426184], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -34, -1, -0.00888651958939719], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 22.440817267728253], [4, 0, 0, 2.4156135388573103], [739, -362, 1, -0.46728609087129314], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 23.76560439052813], [-2, 0, 0, -0.10821085510488573], [378, 799, 1, -0.09426131944970867]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 385, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 18.718219322586766], [-749, 411, 1, 0.2677200641402253], [-1, 5, -1, 20.843583520905575], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -33, -1, 0.1165890636061173], [-735, 379, 1, 0.4481608961300712], [-352, -778, -1, 0.2694166010430498], [6, -4, 1, -0.015604390528130075], [-743, 363, -1, 0.4611333895578385], [-3, 1, 1, 22.58759664418109], [43, -1, -1, 0.8380870718478817], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-42, -36, -1, -0.015186393300246685], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 22.483765094785035], [4, 0, 0, 2.4156135388573103], [741, -363, 1, -0.46728960678670756], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 23.870812678447844], [-2, 0, 0, -0.10821085510488573], [379, 801, 1, -0.09427005684700801]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 386, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 18.760594652317483], [-751, 412, 1, 0.2677359398148103], [1, 4, -1, 20.91398956518876], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -32, -1, 0.11830855791062254], [-737, 380, 1, 0.44816623444655795], [-353, -780, -1, 0.26943271037171335], [4, -3, 1, -0.0244372519721974], [-745, 364, -1, 0.461137335546244], [-5, 0, 1, 22.638804835355874], [44, 1, -1, 0.8307699259410802], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -35, -1, -0.00935127962063826], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 22.521921395633985], [4, 0, 0, 2.4156135388573103], [743, -364, 1, -0.4672931036984265], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 23.961010434811314], [-2, 0, 0, -0.10821085510488573], [380, 803, 1, -0.094278750270023]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 387, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 4, -1, 18.811802843492266], [-753, 413, 1, 0.26775173288035775], [3, 5, -1, 20.961010434811392], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -30, -1, 0.11118296605880965], [-739, 381, 1, 0.4481715440513866], [-354, -782, -1, 0.2694487358352986], [6, -4, 1, -0.015604390528130075], [-747, 365, -1, 0.4611412603100257], [-3, -1, 1, 22.690013026530657], [45, -1, -1, 0.8379226556428457], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -33, -1, -0.006583192509318019], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 22.579622103084112], [4, 0, 0, 2.4156135388573103], [745, -365, 1, -0.4672965817601053], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 24.047020869622628], [-2, 0, 0, -0.10821085510488573], [381, 805, 1, -0.09428740004984493]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 388, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 3, -1, 18.843219322586766], [-755, 414, 1, 0.2677674439796698], [4, 3, -1, 21.02258361765051], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -29, -1, 0.11274744147022706], [-741, 382, 1, 0.4481768251755587], [-355, -784, -1, 0.26946467808668456], [4, -3, 1, -0.0244372519721974], [-749, 366, -1, 0.4611451640199637], [-2, -3, 1, 22.795221314450373], [43, -2, -1, 0.8417836854928747], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -31, -1, -8.956383021452644e-05], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 2, 1, 22.64178914489511], [4, 0, 0, 2.4156135388573103], [747, -366, 1, -0.46730004112374707], [2, -2, 0, 0.5087787822945713], [-5, 4, 1, 24.064632513361268], [-2, 0, 0, -0.10821085510488573], [382, 807, 1, -0.09429600651425006]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 389, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 18.936802843492266], [-757, 415, 1, 0.26778307374889987], [5, 1, -1, 21.09358352090558], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -31, -1, 0.11581459311043749], [-743, 383, 1, 0.4481820780476046], [-356, -786, -1, 0.2694805377719944], [6, -4, 1, -0.015604390528130075], [-751, 367, -1, 0.4611490468450106], [0, -4, 1, 22.888804835355874], [44, 0, -1, 0.8343864611426882], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -29, -1, 0.003160371968514347], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 3, 1, 22.746997432814826], [4, 0, 0, 2.4156135388573103], [749, -367, 1, -0.46730348193972515], [2, -2, 0, 0.5087787822945713], [-6, 2, 1, 24.120812678447844], [-2, 0, 0, -0.10821085510488573], [383, 809, 1, -0.09430456998774109]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 390, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 3, -1, 19.030386364397767], [-759, 416, 1, 0.2677986228176386], [4, -1, -1, 21.163989565188764], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -32, -1, 0.12269981771517612], [-745, 384, 1, 0.4481873028936164], [-357, -788, -1, 0.2694963155306824], [4, -3, 1, -0.0244372519721974], [-753, 368, -1, 0.4611529089523164], [2, -3, 1, 22.982388356261374], [45, -2, -1, 0.8414553621977245], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -28, -1, 0.009009447930749854], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 22.837195189178296], [4, 0, 0, 2.4156135388573103], [751, -368, 1, -0.46730690435680483], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 24.133031304433942], [-2, 0, 0, -0.10821085510488573], [384, 811, 1, -0.09431309079158787]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 391, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 2, -1, 19.11301103466705], [-761, 417, 1, 0.26781409180899773], [5, -3, -1, 21.211010434811396], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -31, -1, 0.11581459311043749], [-747, 385, 1, 0.4481924999372802], [-358, -790, -1, 0.26951201199561975], [6, -4, 1, -0.015604390528130075], [-755, 369, -1, 0.461156750507252], [4, -2, 1, 23.065013026530657], [43, -3, -1, 0.8454723308605486], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -29, -1, 0.009607567552240064], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 5, 1, 22.884216058800927], [4, 0, 0, 2.4156135388573103], [753, -369, 1, -0.46731030852216465], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 24.22322906079741], [-2, 0, 0, -0.10821085510488573], [385, 813, 1, -0.09432156924386756]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 392, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 1, -1, 19.16051861513664], [-763, 418, 1, 0.26782948133969386], [3, -4, -1, 21.272583617650515], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -32, -1, 0.1141806161980365], [-749, 386, 1, 0.4481976693999081], [-359, -792, -1, 0.2695276277931793], [4, -3, 1, -0.0244372519721974], [-757, 370, -1, 0.4611605716734331], [6, -3, 1, 23.065013026530657], [44, -1, -1, 0.8380029963442961], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -30, -1, 0.010159315853699087], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 3, 1, 22.945789241640046], [4, 0, 0, 2.4156135388573103], [755, -370, 1, -0.46731369458141764], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 24.328437348717127], [-2, 0, 0, -0.10821085510488573], [386, 815, 1, -0.09433000565950424]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 393, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, 0, -1, 19.186802843492266], [-765, 419, 1, 0.26784479202012973], [1, -5, -1, 21.343583520905582], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -33, -1, 0.12073671296040232], [-751, 387, 1, 0.44820281150046964], [-360, -794, -1, 0.2695431635433183], [6, -4, 1, -0.015604390528130075], [-759, 371, -1, 0.4611643726127434], [8, -2, 1, 23.099815270167188], [42, -2, -1, 0.8419595472368722], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -32, -1, 0.004011459808155178], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 1, 1, 23.016789144895114], [4, 0, 0, 2.4156135388573103], [757, -371, 1, -0.467317062678632], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 24.422020869622628], [-2, 0, 0, -0.10821085510488573], [387, 817, 1, -0.09433840035030777]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 394, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [9, -2, -1, 19.221605087128797], [-767, 420, 1, 0.2678600244544748], [-1, -4, -1, 21.413989565188768], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -35, -1, 0.12757993092729453], [-753, 388, 1, 0.4482079264556227], [-361, -796, -1, 0.2695586198596606], [4, -3, 1, -0.0244372519721974], [-761, 372, -1, 0.4611681534853572], [7, 0, 1, 23.138804835355874], [43, 0, -1, 0.8343864611426881], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -34, -1, -0.002077622748023777], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 23.0871951891783], [4, 0, 0, 2.4156135388573103], [759, -372, 1, -0.46732041295635157], [2, -2, 0, 0.5087787822945713], [2, -5, 1, 24.48258034041805], [-2, 0, 0, -0.10821085510488573], [388, 819, 1, -0.09434675362501233]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 395, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, -1, -1, 19.2093864611427], [-769, 421, 1, 0.2678751792407451], [-3, -5, -1, 21.4610104348114], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -33, -1, 0.1251417229750892], [-755, 389, 1, 0.44821301447974377], [-362, -798, -1, 0.2695739973495771], [6, -4, 1, -0.015604390528130075], [-763, 373, -1, 0.4611719144497623], [5, 1, 1, 23.170221314450373], [44, -2, -1, 0.8416158005940765], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -35, -1, -0.0011207909307187078], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -3, 1, 23.13421605880093], [4, 0, 0, 2.4156135388573103], [761, -373, 1, -0.46732374555561595], [2, -2, 0, 0.5087787822945713], [3, -3, 1, 24.547020869622628], [-2, 0, 0, -0.10821085510488573], [389, 821, 1, -0.09435506578931407]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 396, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -3, -1, 19.260594652317483], [-771, 422, 1, 0.2678902569708806], [-4, -3, -1, 21.52258361765052], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -34, -1, 0.12310054270075572], [-757, 390, 1, 0.44821807578495837], [-363, -800, -1, 0.2695892966142653], [4, -3, 1, -0.0244372519721974], [-765, 374, -1, 0.4611756556627818], [3, 2, 1, 23.23238835626137], [42, -3, -1, 0.8457353966426183], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-51, -36, -1, -0.00023166642021410055], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -4, 1, 23.19578924164005], [4, 0, 0, 2.4156135388573103], [763, -374, 1, -0.4673270606159802], [2, -2, 0, 0.5087787822945713], [5, -4, 1, 24.564632513361268], [-2, 0, 0, -0.10821085510488573], [390, 823, 1, -0.09436333714590857]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 397, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -4, -1, 19.311802843492266], [-773, 423, 1, 0.26790525823082273], [-5, -1, -1, 21.593583520905586], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -33, -1, 0.1251417229750892], [-759, 391, 1, 0.44822311058116976], [-364, -802, -1, 0.26960451824882725], [6, -4, 1, -0.015604390528130075], [-767, 375, -1, 0.46117937727959607], [1, 3, 1, 23.337596644181087], [43, -1, -1, 0.8380870718478816], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-53, -37, -1, 0.0005966417901610493], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -5, 1, 23.266789144895117], [4, 0, 0, 2.4156135388573103], [765, -375, 1, -0.46733035827553454], [2, -2, 0, 0.5087787822945713], [7, -3, 1, 24.60758034041805], [-2, 0, 0, -0.10821085510488573], [391, 825, 1, -0.0943715679945274]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 398, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 19.343219322586766], [-775, 424, 1, 0.2679201836005898], [-4, 1, -1, 21.66398956518877], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -34, -1, 0.12310054270075572], [-761, 392, 1, 0.4482281190760887], [-365, -804, -1, 0.26961966284234695], [4, -3, 1, -0.0244372519721974], [-769, 376, -1, 0.46118307945376424], [-1, 4, 1, 23.427794400544556], [44, 1, -1, 0.8307699259410801], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-55, -38, -1, 0.0013701265138870837], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -4, 1, 23.337195189178303], [4, 0, 0, 2.4156135388573103], [767, -376, 1, -0.46733363867092315], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 24.645736641267], [-2, 0, 0, -0.10821085510488573], [392, 827, 1, -0.09437975863197436]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 399, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 19.436802843492266], [-777, 425, 1, 0.2679350336543517], [-5, 3, -1, 21.711010434811403], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -32, -1, 0.11621281148650175], [-763, 393, 1, 0.44823310147526163], [-366, -806, -1, 0.2696347309779658], [6, -4, 1, -0.015604390528130075], [-771, 377, -1, 0.4611867623372451], [-3, 5, 1, 23.474815270167188], [45, -1, -1, 0.8379226556428456], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -37, -1, 0.0059601984535585795], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 23.423205623989617], [4, 0, 0, 2.4156135388573103], [769, -377, 1, -0.46733690193736344], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 24.703437348717127], [-2, 0, 0, -0.10821085510488573], [393, 829, 1, -0.09438790935216124]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 400, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 19.530386364397767], [-779, 426, 1, 0.2679498089605036], [-3, 4, -1, 21.772583617650522], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -30, -1, 0.10917860171598857], [-765, 394, 1, 0.4482380579820987], [-367, -808, -1, 0.26964972323295766], [4, -3, 1, -0.0244372519721974], [-773, 378, -1, 0.46119042608041805], [-4, 3, 1, 23.536388453006307], [43, -2, -1, 0.8417836854928746], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-55, -36, -1, 0.005354507616183642], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 23.440817267728256], [4, 0, 0, 2.4156135388573103], [771, -378, 1, -0.4673401482086644], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 24.765604390528125], [-2, 0, 0, -0.10821085510488573], [394, 831, 1, -0.09439602044614272]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 401, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 19.635594652317483], [-781, 427, 1, 0.267964510081738], [-1, 5, -1, 21.84358352090559], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -31, -1, 0.11581459311043746], [-767, 395, 1, 0.4482429887979017], [-368, -810, -1, 0.2696646401788022], [6, -4, 1, -0.015604390528130075], [-775, 379, -1, 0.46119407083210373], [-3, 1, 1, 23.58759664418109], [44, 0, -1, 0.8343864611426881], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -37, -1, 0.0059601984535585795], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 23.48376509478504], [4, 0, 0, 2.4156135388573103], [773, -379, 1, -0.4673433776172448], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 24.87081267844784], [-2, 0, 0, -0.10821085510488573], [395, 833, 1, -0.09440409220215122]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 402, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 19.725792408680952], [-783, 428, 1, 0.26797913757511627], [1, 4, -1, 21.913989565188775], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -29, -1, 0.10856959342658051], [-769, 396, 1, 0.44824789412189125], [-369, -812, -1, 0.26967948238125744], [4, -3, 1, -0.0244372519721974], [-777, 380, -1, 0.46119769673958383], [-4, -1, 1, 23.67779440054456], [45, -2, -1, 0.8414553621977244], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-55, -36, -1, 0.005354507616183642], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 23.52192139563399], [4, 0, 0, 2.4156135388573103], [775, -380, 1, -0.4673465902941516], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 24.96101043481131], [-2, 0, 0, -0.10821085510488573], [396, 835, 1, -0.09441212490563096]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 403, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 3, -1, 19.772813278303584], [-785, 429, 1, 0.26799369199213885], [3, 5, -1, 21.961010434811406], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -30, -1, 0.11539243244775996], [-771, 397, 1, 0.4482527741512335], [-370, -814, -1, 0.26969425040043116], [6, -4, 1, -0.015604390528130075], [-779, 381, -1, 0.461201303948621], [-3, -3, 1, 23.763804835355874], [43, -3, -1, 0.8454723308605485], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-56, -38, -1, 0.0027069403090172876], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 23.579622103084116], [4, 0, 0, 2.4156135388573103], [777, -381, 1, -0.4673497863690772], [2, -2, 0, 0.5087787822945713], [-3, 5, 1, 25.008031304433942], [-2, 0, 0, -0.10821085510488573], [397, 837, 1, -0.09442011883927148]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 404, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 19.780386364397767], [-787, 430, 1, 0.2680081738788142], [4, 3, -1, 22.022583617650525], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -28, -1, 0.11220975789727357], [-773, 398, 1, 0.4482576290810667], [-371, -816, -1, 0.2697089447908512], [4, -3, 1, -0.0244372519721974], [-781, 382, -1, 0.4612048926034788], [-1, -4, 1, 23.849815270167188], [44, -1, -1, 0.838002996344296], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-55, -40, -1, -0.0024810564671887366], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 2, 1, 23.641789144895114], [4, 0, 0, 2.4156135388573103], [779, -382, 1, -0.4673529659703772], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 25.015604390528125], [-2, 0, 0, -0.10821085510488573], [398, 839, 1, -0.09442807428304097]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 405, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 19.885594652317483], [-789, 431, 1, 0.2680225837757275], [5, 1, -1, 22.093583520905593], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -26, -1, 0.10872517005649152], [-775, 399, 1, 0.44826245910452694], [-372, -818, -1, 0.26972356610153486], [6, -4, 1, -0.015604390528130075], [-783, 383, -1, 0.46120846284694017], [1, -3, 1, 23.940013026530657], [42, -2, -1, 0.841959547236872], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -41, -1, -0.0016477921274557], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 3, 1, 23.74699743281483], [4, 0, 0, 2.4156135388573103], [781, -383, 1, -0.4673561292250874], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 25.12081267844784], [-2, 0, 0, -0.10821085510488573], [399, 841, 1, -0.09443599151421872]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 406, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 19.975792408680952], [-791, 432, 1, 0.2680369222181072], [4, -1, -1, 22.16398956518878], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -24, -1, 0.10489743881675556], [-777, 400, 1, 0.44826726441277415], [-373, -820, -1, 0.2697381148760569], [4, -3, 1, -0.0244372519721974], [-785, 384, -1, 0.4612120148203271], [3, -2, 1, 24.045221314450373], [43, 0, -1, 0.834386461142688], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -39, -1, 0.0033798958887369477], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 23.8371951891783], [4, 0, 0, 2.4156135388573103], [783, -384, 1, -0.46735927625894086], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 25.21101043481131], [-2, 0, 0, -0.10821085510488573], [400, 843, 1, -0.0944438708074276]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 407, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 20.061802843492266], [-793, 433, 1, 0.26805118973589154], [5, -3, -1, 22.21101043481141], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -26, -1, 0.11341545409766082], [-779, 401, 1, 0.4482720451950169], [-374, -822, -1, 0.26975259165261706], [6, -4, 1, -0.015604390528130075], [-787, 385, -1, 0.4612155486635189], [4, -4, 1, 24.013804835355874], [44, -2, -1, 0.8416158005940764], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -37, -1, 0.008448893689393045], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 23.923205623989613], [4, 0, 0, 2.4156135388573103], [785, -385, 1, -0.4673624071963845], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 25.297020869622624], [-2, 0, 0, -0.10821085510488573], [401, 845, 1, -0.09445171243466544]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 408, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 20.14781327830358], [-795, 434, 1, 0.2680653868537935], [3, -4, -1, 22.27258361765053], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [31, -24, -1, 0.10967363882278629], [-781, 402, 1, 0.44827680163853767], [-375, -824, -1, 0.26976699696410616], [4, -3, 1, -0.0244372519721974], [-789, 386, -1, 0.4612190645149704], [2, -3, 1, 23.982388356261374], [42, -3, -1, 0.8457353966426182], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -36, -1, 0.012740614744468415], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 24.009216058800927], [4, 0, 0, 2.4156135388573103], [787, -386, 1, -0.4673655221605954], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 25.38303130443394], [-2, 0, 0, -0.10821085510488573], [402, 847, 1, -0.0944595166653366]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 409, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 20.186802843492266], [-797, 435, 1, 0.26807951409136516], [1, -5, -1, 22.343583520905597], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [29, -25, -1, 0.11805363830519322], [-783, 403, 1, 0.4482815339287169], [-376, -826, -1, 0.2697813313381714], [6, -4, 1, -0.015604390528130075], [-791, 387, -1, 0.46122256251173066], [4, -4, 1, 24.013804835355874], [43, -1, -1, 0.8380870718478814], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-60, -38, -1, 0.0077409709929822535], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 24.099413815164397], [4, 0, 0, 2.4156135388573103], [789, -387, 1, -0.4673686212734972], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 25.422020869622624], [-2, 0, 0, -0.10821085510488573], [403, 849, 1, -0.0944672837662827]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 410, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 20.225792408680952], [-799, 436, 1, 0.2680935719630612], [-1, -4, -1, 22.413989565188782], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [30, -23, -1, 0.10892190041747157], [-785, 404, 1, 0.4482862422490573], [-377, -828, -1, 0.2697955952972806], [4, -3, 1, -0.0244372519721974], [-793, 388, -1, 0.46122604278946006], [3, -2, 1, 24.045221314450373], [44, 1, -1, 0.83076992594108], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -36, -1, 0.012740614744468415], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 24.204622103084112], [4, 0, 0, 2.4156135388573103], [791, -388, 1, -0.46737170465577577], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 25.46101043481131], [-2, 0, 0, -0.10821085510488573], [404, 851, 1, -0.094475014001813]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 411, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 20.186802843492266], [-801, 437, 1, 0.2681075609783006], [-3, -5, -1, 22.461010434811413], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [29, -21, -1, 0.10457063241140577], [-787, 405, 1, 0.44829092678120736], [-378, -830, -1, 0.26980978935878563], [6, -4, 1, -0.015604390528130075], [-795, 389, -1, 0.4612295054824483], [4, -4, 1, 24.013804835355874], [45, -1, -1, 0.8379226556428455], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -34, -1, 0.017762216014521146], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 24.298205623989613], [4, 0, 0, 2.4156135388573103], [793, -389, 1, -0.46737477242689496], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 25.473229060797408], [-2, 0, 0, -0.10821085510488573], [405, 853, 1, -0.0944827076337344]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 412, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 20.225792408680952], [-803, 438, 1, 0.2681214816415286], [-4, -3, -1, 22.522583617650533], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [31, -22, -1, 0.10305046243332625], [-789, 406, 1, 0.44829558770498507], [-379, -832, -1, 0.26982391403498496], [4, -3, 1, -0.0244372519721974], [-797, 390, -1, 0.4612329507236314], [3, -2, 1, 24.045221314450373], [43, -2, -1, 0.8417836854928745], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -35, -1, 0.017947351576335133], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 24.32448985234524], [4, 0, 0, 2.4156135388573103], [795, -390, 1, -0.467377824705112], [2, -2, 0, 0.5087787822945713], [3, -4, 1, 25.52443725197219], [-2, 0, 0, -0.10821085510488573], [406, 855, 1, -0.09449036492138096]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 413, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -3, -1, 20.311802843492266], [-805, 439, 1, 0.26813533445227716], [-5, -1, -1, 22.5935835209056], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [30, -24, -1, 0.11220975789727357], [-791, 407, 1, 0.4483002251984006], [-380, -834, -1, 0.269837969833185], [6, -4, 1, -0.015604390528130075], [-799, 391, -1, 0.461236378644609], [4, -4, 1, 24.013804835355874], [44, 0, -1, 0.834386461142688], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -33, -1, 0.020800604703269387], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -7, 1, 24.36264615319419], [4, 0, 0, 2.4156135388573103], [797, -391, 1, -0.46738086160749287], [2, -2, 0, 0.5087787822945713], [4, -2, 1, 25.598229060797408], [-2, 0, 0, -0.10821085510488573], [407, 857, 1, -0.09449798612164301]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 414, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -4, -1, 20.39781327830358], [-807, 440, 1, 0.2681491199052244], [-4, 1, -1, 22.663989565188785], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -25, -1, 0.11037343619842517], [-793, 408, 1, 0.448304839437679], [-381, -836, -1, 0.2698519572557607], [4, -3, 1, -0.0244372519721974], [-801, 392, -1, 0.46123978937566074], [3, -2, 1, 24.045221314450373], [45, -2, -1, 0.8414553621977243], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -31, -1, 0.025805015284320307], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 24.32448985234524], [4, 0, 0, 2.4156135388573103], [799, -392, 1, -0.4673838832499269], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 25.672020869622624], [-2, 0, 0, -0.10821085510488573], [408, 859, 1, -0.09450557148899592]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 415, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 20.48801103466705], [-809, 441, 1, 0.2681628384902535], [-5, 3, -1, 22.711010434811417], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -24, -1, 0.10264804876978086], [-795, 409, 1, 0.4483094305972826], [-382, -838, -1, 0.2698658768002157], [6, -4, 1, -0.015604390528130075], [-803, 393, -1, 0.4612431830457631], [5, -3, 1, 24.052794400544556], [43, -3, -1, 0.8454723308605484], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -29, -1, 0.028935422627311806], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -7, 1, 24.36264615319419], [4, 0, 0, 2.4156135388573103], [801, -393, 1, -0.467386889747142], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 25.74581267844784], [-2, 0, 0, -0.10821085510488573], [409, 861, 1, -0.09451312127552833]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 416, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 20.593219322586766], [-811, 442, 1, 0.2681764906925108], [-3, 4, -1, 22.772583617650536], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -25, -1, 0.10142648876470074], [-797, 410, 1, 0.4483139988499331], [-383, -840, -1, 0.26987972895924056], [4, -3, 1, -0.0244372519721974], [-805, 394, -1, 0.46124655978260554], [3, -2, 1, 24.045221314450373], [44, -1, -1, 0.8380029963442959], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -31, -1, 0.02380317188843792], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 24.358765094785035], [4, 0, 0, 2.4156135388573103], [803, -394, 1, -0.4673898812127186], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 25.828437348717124], [-2, 0, 0, -0.10821085510488573], [410, 863, 1, -0.09452063573097012]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 417, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 20.686802843492266], [-813, 443, 1, 0.2681900769924626], [-1, 5, -1, 22.843583520905604], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -24, -1, 0.10264804876978086], [-799, 411, 1, 0.44831854436663293], [-384, -842, -1, 0.26989351422077135], [6, -4, 1, -0.015604390528130075], [-807, 395, -1, 0.4612499197126064], [5, -3, 1, 24.052794400544556], [42, -2, -1, 0.8419595472368719], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -33, -1, 0.01867092114956403], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 24.423205623989613], [4, 0, 0, 2.4156135388573103], [805, -395, 1, -0.46739285775910455], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 25.922020869622624], [-2, 0, 0, -0.10821085510488573], [411, 865, 1, -0.0945281151027199]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 418, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 20.780386364397767], [-815, 444, 1, 0.26820359786595166], [1, 4, -1, 22.91398956518879], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -22, -1, 0.09840492254141162], [-801, 412, 1, 0.4483230673166869], [-385, -844, -1, 0.2699072330680466], [4, -3, 1, -0.0244372519721974], [-809, 396, -1, 0.4612532629609289], [3, -2, 1, 24.045221314450373], [43, 0, -1, 0.8343864611426879], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-60, -35, -1, 0.013549321926073254], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [807, -396, 1, -0.4673958194976287], [2, -2, 0, 0.5087787822945713], [-2, 5, 1, 25.982580340418046], [-2, 0, 0, -0.10821085510488573], [412, 867, 1, -0.09453555963587221]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 419, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 4, -1, 20.86301103466705], [-817, 445, 1, 0.2682170537842524], [3, 5, -1, 22.96101043481142], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -23, -1, 0.09735093170413668], [-803, 413, 1, 0.44832756786772293], [-386, -846, -1, 0.2699208859796637], [6, -4, 1, -0.015604390528130075], [-811, 397, -1, 0.46125658965149646], [5, -3, 1, 24.052794400544556], [44, -2, -1, 0.8416158005940763], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -33, -1, 0.016430406573419522], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [809, -397, 1, -0.4673987665385152], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 26.047020869622624], [-2, 0, 0, -0.10821085510488573], [413, 869, 1, -0.09454296957324411]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 420, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 20.936802843492266], [-819, 446, 1, 0.268230445214126], [4, 3, -1, 23.02258361765054], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -21, -1, 0.0888670604234935], [-805, 414, 1, 0.448332046185713], [-387, -848, -1, 0.2699344734296345], [4, -3, 1, -0.0244372519721974], [-813, 398, -1, 0.46125989990700805], [3, -2, 1, 24.045221314450373], [42, -3, -1, 0.8457353966426181], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -32, -1, 0.01617829440555421], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [811, -398, 1, -0.4674016989908968], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 26.13303130443394], [-2, 0, 0, -0.10821085510488573], [414, 871, 1, -0.09455034515540178]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 421, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 5, -1, 20.968219322586766], [-821, 447, 1, 0.26824377261787374], [5, 1, -1, 23.093583520905607], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -23, -1, 0.09333800634036687], [-807, 415, 1, 0.4483365024349934], [-388, -850, -1, 0.26994799588744], [6, -4, 1, -0.015604390528130075], [-815, 399, -1, 0.4612631938489535], [5, -3, 1, 24.052794400544556], [43, -1, -1, 0.8380870718478813], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -34, -1, 0.013208519570964718], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [813, -399, 1, -0.46740461696282853], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 26.223229060797408], [-2, 0, 0, -0.10821085510488573], [415, 873, 1, -0.09455768662068642]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 422, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 4, -1, 21.039219225841833], [-823, 448, 1, 0.2682570364533906], [4, -1, -1, 23.163989565188793], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -24, -1, 0.10048526082703337], [-809, 416, 1, 0.44834093677828496], [-389, -852, -1, 0.26996145381808445], [4, -3, 1, -0.0244372519721974], [-817, 400, -1, 0.46126647159762807], [3, -2, 1, 24.045221314450373], [44, 1, -1, 0.8307699259410799], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-56, -33, -1, 0.012844321252222499], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [815, -400, 1, -0.4674075205613011], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 26.328437348717124], [-2, 0, 0, -0.10821085510488573], [416, 875, 1, -0.09456499420523995]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 423, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 2, -1, 21.11301103466705], [-825, 449, 1, 0.26827023717421733], [5, -3, -1, 23.211010434811424], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -26, -1, 0.10437043762001857], [-811, 417, 1, 0.44834534937671255], [-390, -854, -1, 0.2699748476821484], [6, -4, 1, -0.015604390528130075], [-819, 401, -1, 0.46126973327214726], [4, -4, 1, 24.013804835355874], [45, -1, -1, 0.8379226556428454], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-55, -35, -1, 0.007397224350186532], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [817, -401, 1, -0.4674104098922535], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 26.422020869622624], [-2, 0, 0, -0.10821085510488573], [417, 877, 1, -0.09457226814303024]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 424, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 0, -1, 21.186802843492266], [-827, 450, 1, 0.2682833752295921], [3, -4, -1, 23.272583617650543], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -27, -1, 0.10314027898309848], [-813, 418, 1, 0.44834974038982495], [-391, -856, -1, 0.26998817793584134], [4, -3, 1, -0.0244372519721974], [-821, 402, -1, 0.46127297899046116], [6, -3, 1, 24.065013026530657], [43, -2, -1, 0.8417836854928744], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-56, -33, -1, 0.012844321252222499], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [819, -402, 1, -0.46741328506058655], [2, -2, 0, 0.5087787822945713], [1, -6, 1, 26.448305097978253], [-2, 0, 0, -0.10821085510488573], [418, 879, 1, -0.0945795086658762]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 425, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 21.155386364397767], [-829, 451, 1, 0.2682964510645015], [1, -5, -1, 23.34358352090561], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -28, -1, 0.11002968955562946], [-815, 419, 1, 0.44835410997561403], [-392, -858, -1, 0.2700014450310533], [6, -4, 1, -0.015604390528130075], [-823, 403, -1, 0.46127620886936876], [7, -1, 1, 24.11622121770544], [44, 0, -1, 0.8343864611426879], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -32, -1, 0.017354475805569314], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [821, -403, 1, -0.46741614617017496], [2, -2, 0, 0.5087787822945713], [3, -7, 1, 26.486461398827203], [-2, 0, 0, -0.10821085510488573], [419, 881, 1, -0.09458671600347224]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 426, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 21.225792408680952], [-831, 452, 1, 0.2683094651197306], [-1, -4, -1, 23.413989565188796], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -26, -1, 0.10230978159987368], [-817, 420, 1, 0.4483584582905335], [-393, -860, -1, 0.2700146494154057], [4, -3, 1, -0.0244372519721974], [-825, 404, -1, 0.4612794230245318], [5, 0, 1, 24.138804835355874], [45, -2, -1, 0.8414553621977242], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -30, -1, 0.022727817015796382], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [823, -404, 1, -0.46741899332388026], [2, -2, 0, 0.5087787822945713], [5, -8, 1, 26.5109247118673], [-2, 0, 0, -0.10821085510488573], [420, 883, 1, -0.09459389038341268]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 427, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 21.272813278303584], [-833, 453, 1, 0.26832241783191235], [-3, -5, -1, 23.461010434811428], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -28, -1, 0.10588904556878968], [-819, 421, 1, 0.44836278548951763], [-394, -862, -1, 0.270027791532302], [6, -4, 1, -0.015604390528130075], [-827, 405, -1, 0.4612826215704886], [4, 2, 1, 24.21259664418109], [43, -3, -1, 0.8454723308605483], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -31, -1, 0.022762958314207892], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [825, -405, 1, -0.46742182662356296], [2, -2, 0, 0.5087787822945713], [7, -7, 1, 26.547020869622624], [-2, 0, 0, -0.10821085510488573], [421, 885, 1, -0.09460103203121561]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 428, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 21.280386364397767], [-835, 454, 1, 0.2683353096335764], [-4, -3, -1, 23.522583617650547], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -26, -1, 0.10230978159987368], [-821, 422, 1, 0.4483670917259997], [-395, -864, -1, 0.27004087182097686], [4, -3, 1, -0.0244372519721974], [-829, 406, -1, 0.4612858046206681], [2, 3, 1, 24.295221314450373], [44, -1, -1, 0.8380029963442958], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -32, -1, 0.02279587557187544], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [827, -406, 1, -0.46742464617009466], [2, -2, 0, 0.5087787822945713], [9, -6, 1, 26.578437348717124], [-2, 0, 0, -0.10821085510488573], [422, 887, 1, -0.09460814117034655]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 429, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 21.385594652317483], [-837, 455, 1, 0.26834814095319726], [-5, -1, -1, 23.593583520905614], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -28, -1, 0.11002968955562946], [-823, 423, 1, 0.4483713771519303], [-396, -866, -1, 0.2700538907165452], [6, -4, 1, -0.015604390528130075], [-831, 407, -1, 0.4612889722874025], [0, 4, 1, 24.388804835355874], [42, -2, -1, 0.8419595472368718], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -34, -1, 0.017762216014521146], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [829, -407, 1, -0.46742745206337016], [2, -2, 0, 0.5087787822945713], [8, -4, 1, 26.598229060797408], [-2, 0, 0, -0.10821085510488573], [423, 889, 1, -0.09461521802224182]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 430, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 21.475792408680952], [-839, 456, 1, 0.26836091221524166], [-4, 1, -1, 23.6639895651888], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -30, -1, 0.11760277564981352], [-825, 424, 1, 0.44837564191779483], [-397, -868, -1, 0.27006684865005026], [4, -3, 1, -0.0244372519721974], [-833, 408, -1, 0.4612921246819411], [-2, 3, 1, 24.482388356261374], [43, 0, -1, 0.8343864611426878], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -32, -1, 0.020703143023417758], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 24.521921395633985], [4, 0, 0, 2.4156135388573103], [831, -408, 1, -0.4674302444023192], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 26.598229060797408], [-2, 0, 0, -0.10821085510488573], [424, 891, 1, -0.09462226280633128]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 431, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -3, -1, 21.561802843492266], [-841, 457, 1, 0.268373623840215], [-5, 3, -1, 23.71101043481143], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -32, -1, 0.12500000000000003], [-827, 425, 1, 0.4483798861726315], [-398, -870, -1, 0.27007974604851126], [6, -4, 1, -0.015604390528130075], [-835, 409, -1, 0.4612952619144631], [-3, 1, 1, 24.58759664418109], [44, -2, -1, 0.8416158005940761], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -31, -1, 0.02059914285758971], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 24.579622103084112], [4, 0, 0, 2.4156135388573103], [833, -409, 1, -0.46743302328491787], [2, -2, 0, 0.5087787822945713], [7, -1, 1, 26.64943725197219], [-2, 0, 0, -0.10821085510488573], [425, 893, 1, -0.09462927574006125]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 432, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -2, -1, 21.626243372696845], [-843, 458, 1, 0.26838627624470784], [-3, 4, -1, 23.77258361765055], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -31, -1, 0.12729534483258126], [-829, 426, 1, 0.4483841100640484], [-399, -872, -1, 0.27009258333496994], [4, -3, 1, -0.0244372519721974], [-837, 410, -1, 0.46129838409409024], [-5, 0, 1, 24.638804835355874], [42, -3, -1, 0.845735396642618], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -30, -1, 0.024850228776207784], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 24.65062200633918], [4, 0, 0, 2.4156135388573103], [835, -410, 1, -0.4674357888082005], [2, -2, 0, 0.5087787822945713], [5, 0, 1, 26.672020869622624], [-2, 0, 0, -0.10821085510488573], [426, 895, 1, -0.09463625703891675]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 433, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 21.686802843492266], [-845, 459, 1, 0.2683988698414411], [-1, 5, -1, 23.843583520905618], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -29, -1, 0.11956755167354755], [-831, 427, 1, 0.44838831373824056], [-400, -874, -1, 0.2701053609285371], [6, -4, 1, -0.015604390528130075], [-839, 411, -1, 0.4613014913288999], [-4, -2, 1, 24.71259664418109], [43, -1, -1, 0.8380870718478812], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -31, -1, 0.02059914285758971], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 4, 1, 24.724413815164397], [4, 0, 0, 2.4156135388573103], [837, -411, 1, -0.46743854106827065], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 26.74581267844784], [-2, 0, 0, -0.10821085510488573], [427, 897, 1, -0.09464320691644357]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 434, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 21.780386364397767], [-847, 460, 1, 0.268411405039311], [1, 4, -1, 23.913989565188803], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -31, -1, 0.12729534483258126], [-833, 428, 1, 0.44839249734000736], [-401, -876, -1, 0.2701180792444379], [4, -3, 1, -0.0244372519721974], [-841, 412, -1, 0.4613045837259372], [-2, -3, 1, 24.795221314450373], [44, 1, -1, 0.8307699259410798], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -30, -1, 0.024850228776207784], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 5, 1, 24.798205623989613], [4, 0, 0, 2.4156135388573103], [839, -412, 1, -0.4674412801603122], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 26.828437348717124], [-2, 0, 0, -0.10821085510488573], [428, 899, 1, -0.0946501255842701]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 435, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 21.686802843492266], [-849, 461, 1, 0.26842388224343305], [3, 5, -1, 23.961010434811435], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -30, -1, 0.11988713948314178], [-835, 429, 1, 0.44839666101276837], [-402, -878, -1, 0.27013073869405685], [6, -4, 1, -0.015604390528130075], [-843, 413, -1, 0.4613076613912273], [0, -4, 1, 24.888804835355874], [45, -1, -1, 0.8379226556428453], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-60, -28, -1, 0.028103609941154524], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 6, 1, 24.849413815164397], [4, 0, 0, 2.4156135388573103], [841, -413, 1, -0.4674440061786006], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 26.922020869622624], [-2, 0, 0, -0.10821085510488573], [429, 901, 1, -0.09465701325212875]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 436, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 21.780386364397767], [-851, 462, 1, 0.2684363018551859], [4, 3, -1, 24.022583617650554], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -32, -1, 0.12737305720096181], [-837, 430, 1, 0.4484008048985803], [-403, -880, -1, 0.2701433396849819], [4, -3, 1, -0.0244372519721974], [-845, 414, -1, 0.46131072442978793], [2, -3, 1, 24.982388356261374], [43, -2, -1, 0.8417836854928743], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -27, -1, 0.028253897850301787], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 5, 1, 24.905593980250973], [4, 0, 0, 2.4156135388573103], [843, -414, 1, -0.4674467192165134], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 27.015604390528125], [-2, 0, 0, -0.10821085510488573], [430, 903, 1, -0.09466387012787704]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 437, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 21.885594652317483], [-853, 463, 1, 0.26844866427225395], [5, 1, -1, 24.09358352090562], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -34, -1, 0.1346428032718244], [-839, 431, 1, 0.44840492913815305], [-404, -882, -1, 0.2701558826210486], [6, -4, 1, -0.015604390528130075], [-847, 415, -1, 0.46131377294564074], [4, -2, 1, 25.065013026530657], [44, 0, -1, 0.8343864611426878], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -25, -1, 0.033806722214058636], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-6, 4, 1, 24.954622103084112], [4, 0, 0, 2.4156135388573103], [845, -415, 1, -0.467449419366541], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 27.12081267844784], [-2, 0, 0, -0.10821085510488573], [431, 905, 1, -0.09467069641751866]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 438, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 21.975792408680952], [-855, 464, 1, 0.26846096988867024], [4, -1, -1, 24.163989565188807], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -36, -1, 0.1367368264192432], [-841, 432, 1, 0.44840903387086545], [-405, -884, -1, 0.27016836790238263], [4, -3, 1, -0.0244372519721974], [-849, 416, -1, 0.4613168070418234], [5, 0, 1, 25.138804835355874], [45, -2, -1, 0.8414553621977241], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -26, -1, 0.033469609400298285], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 5, 1, 24.905593980250973], [4, 0, 0, 2.4156135388573103], [847, -416, 1, -0.46745210672029724], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 27.21101043481131], [-2, 0, 0, -0.10821085510488573], [432, 907, 1, -0.094677492325224]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 439, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 22.061802843492266], [-857, 465, 1, 0.26847321909485766], [5, -3, -1, 24.21101043481144], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [31, -35, -1, 0.13945537179957096], [-843, 433, 1, 0.44841311923478105], [-406, -886, -1, 0.27018079592544253], [6, -4, 1, -0.015604390528130075], [-851, 417, -1, 0.46131982682040135], [4, 2, 1, 25.21259664418109], [43, -3, -1, 0.8454723308605482], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -27, -1, 0.03315445150907626], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 3, 1, 24.962195189178296], [4, 0, 0, 2.4156135388573103], [849, -417, 1, -0.4674547813685298], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 27.297020869622624], [-2, 0, 0, -0.10821085510488573], [433, 909, 1, -0.09468425805335054]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 440, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 22.14781327830358], [-859, 466, 1, 0.2684854122776707], [3, -4, -1, 24.272583617650557], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [29, -34, -1, 0.14242632526898624], [-845, 434, 1, 0.4484171853666638], [-407, -888, -1, 0.2701931670830618], [4, -3, 1, -0.0244372519721974], [-853, 418, -1, 0.46132283238247884], [2, 3, 1, 25.295221314450373], [44, -1, -1, 0.8380029963442956], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -26, -1, 0.033469609400298285], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-6, 1, 1, 25.021921395633985], [4, 0, 0, 2.4156135388573103], [851, -418, 1, -0.46745744340113016], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 27.38303130443394], [-2, 0, 0, -0.10821085510488573], [434, 911, 1, -0.09469099380246289]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 441, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 22.186802843492266], [-861, 467, 1, 0.26849754982043583], [1, -5, -1, 24.343583520905625], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [28, -32, -1, 0.1404160539533854], [-847, 435, 1, 0.44842123240199283], [-408, -890, -1, 0.2702054817644897], [6, -4, 1, -0.015604390528130075], [-855, 419, -1, 0.46132582382821063], [0, 4, 1, 25.388804835355874], [42, -2, -1, 0.8419595472368717], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -24, -1, 0.03881370344468714], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -1, 1, 25.079622103084112], [4, 0, 0, 2.4156135388573103], [853, -419, 1, -0.4674600929071439], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 27.422020869622624], [-2, 0, 0, -0.10821085510488573], [435, 913, 1, -0.09469769977135256]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 442, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 22.225792408680952], [-863, 468, 1, 0.26850963210299167], [-1, -4, -1, 24.41398956518881], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -31, -1, 0.14374671762212277], [-849, 436, 1, 0.4484252604749781], [-409, -892, -1, 0.27021774035543256], [4, -3, 1, -0.0244372519721974], [-857, 420, -1, 0.46132880125681286], [-2, 3, 1, 25.482388356261374], [43, 0, -1, 0.8343864611426877], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -26, -1, 0.03530091982101072], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -3, 1, 25.15062200633918], [4, 0, 0, 2.4156135388573103], [855, -420, 1, -0.4674627299747806], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 27.46101043481131], [-2, 0, 0, -0.10821085510488573], [436, 915, 1, -0.09470437615705764]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 443, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 22.272813278303584], [-865, 469, 1, 0.2685216595017285], [-3, -5, -1, 24.461010434811442], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [27, -29, -1, 0.13550309188282117], [-851, 437, 1, 0.44842926971857483], [-410, -894, -1, 0.27022994323809363], [6, -4, 1, -0.015604390528130075], [-859, 421, -1, 0.46133176476657395], [-3, 1, 1, 25.58759664418109], [44, -2, -1, 0.841615800594076], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -28, -1, 0.030082343863830324], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -4, 1, 25.224413815164397], [4, 0, 0, 2.4156135388573103], [857, -421, 1, -0.46746535469142353], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 27.473229060797408], [-2, 0, 0, -0.10821085510488573], [437, 917, 1, -0.094711023154882]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 444, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 22.280386364397767], [-867, 470, 1, 0.26853363238962746], [-4, -3, -1, 24.52258361765056], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [25, -30, -1, 0.14425037082406444], [-853, 438, 1, 0.4484332602644981], [-411, -896, -1, 0.27024209079121286], [4, -3, 1, -0.0244372519721974], [-861, 422, -1, 0.4613347144548658], [-4, -1, 1, 25.67779440054456], [42, -3, -1, 0.8457353966426179], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-60, -27, -1, 0.0302956881637819], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -3, 1, 25.298205623989613], [4, 0, 0, 2.4156135388573103], [859, -422, 1, -0.46746796714363936], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 27.504645539891907], [-2, 0, 0, -0.10821085510488573], [438, 919, 1, -0.09471764095841424]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 445, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 22.385594652317483], [-869, 471, 1, 0.26854555113629874], [-5, -1, -1, 24.59358352090563], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -31, -1, 0.15322964891780297], [-855, 439, 1, 0.44843723224323756], [-412, -898, -1, 0.27025418339010615], [6, -4, 1, -0.015604390528130075], [-863, 423, -1, 0.46133765041815394], [-3, -3, 1, 25.763804835355874], [43, -1, -1, 0.8380870718478811], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -26, -1, 0.034397824205911115], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -5, 1, 25.329622103084112], [4, 0, 0, 2.4156135388573103], [861, -423, 1, -0.4674705674171878], [2, -2, 0, 0.5087787822945713], [6, -6, 1, 27.547020869622624], [-2, 0, 0, -0.10821085510488573], [439, 921, 1, -0.09472422975954668]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 446, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -5, -1, 22.436802843492266], [-871, 472, 1, 0.26855741610802003], [-4, 1, -1, 24.663989565188814], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -33, -1, 0.1612378807304128], [-857, 440, 1, 0.4484411857840714], [-413, -900, -1, 0.2702662214067037], [4, -3, 1, -0.0244372519721974], [-865, 424, -1, 0.4613405727520085], [-2, -5, 1, 25.828245364560452], [44, 1, -1, 0.8307699259410797], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -27, -1, 0.03405702185080258], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 25.39178914489511], [4, 0, 0, 2.4156135388573103], [863, -424, 1, -0.4674731555970307], [2, -2, 0, 0.5087787822945713], [5, -4, 1, 27.564632513361264], [-2, 0, 0, -0.10821085510488573], [440, 923, 1, -0.09473078974849372]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 447, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -4, -1, 22.510594652317483], [-873, 473, 1, 0.2685692276677735], [-5, 3, -1, 24.711010434811445], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -31, -1, 0.15322964891780297], [-859, 441, 1, 0.4484451210150805], [-414, -902, -1, 0.27027820520958834], [6, -4, 1, -0.015604390528130075], [-867, 425, -1, 0.4613434815511143], [0, -6, 1, 25.888804835355874], [45, -1, -1, 0.8379226556428452], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -25, -1, 0.03747154976722684], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -4, 1, 25.42320562398961], [4, 0, 0, 2.4156135388573103], [865, -425, 1, -0.4674757317673415], [2, -2, 0, 0.5087787822945713], [7, -3, 1, 27.607580340418046], [-2, 0, 0, -0.10821085510488573], [441, 925, 1, -0.09473732111381022]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 448, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 22.593219322586766], [-875, 474, 1, 0.26858098617528314], [-3, 4, -1, 24.772583617650564], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -30, -1, 0.1576213455288048], [-861, 442, 1, 0.4484490380631623], [-415, -904, -1, 0.2702901351640327], [4, -3, 1, -0.0244372519721974], [-869, 426, -1, 0.46134637690928115], [1, -4, 1, 25.92779440054456], [43, -2, -1, 0.8417836854928742], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -23, -1, 0.04268617883367777], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -3, 1, 25.474413815164393], [4, 0, 0, 2.4156135388573103], [867, -426, 1, -0.46747829601151436], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 27.645736641266996], [-2, 0, 0, -0.10821085510488573], [442, 927, 1, -0.09474382404240957]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 449, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 22.686802843492266], [-877, 475, 1, 0.2685926919870509], [-1, 5, -1, 24.843583520905632], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [19, -29, -1, 0.1625110931137473], [-863, 443, 1, 0.44845293705404404], [-416, -906, -1, 0.270302011632037], [6, -4, 1, -0.015604390528130075], [-871, 427, -1, 0.461349258919454], [3, -3, 1, 26.013804835355874], [44, 0, -1, 0.8343864611426877], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -24, -1, 0.038813703444687146], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -1, 1, 25.525622006339177], [4, 0, 0, 2.4156135388573103], [869, -427, 1, -0.46748084841217313], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 27.703437348717124], [-2, 0, 0, -0.10821085510488573], [443, 929, 1, -0.09475029871958138]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 450, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 22.780386364397767], [-879, 476, 1, 0.26860434545639283], [1, 4, -1, 24.913989565188817], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -28, -1, 0.15240501928634545], [-865, 444, 1, 0.44845681811229704], [-417, -908, -1, 0.27031383497236455], [4, -3, 1, -0.0244372519721974], [-873, 428, -1, 0.4613521276737228], [5, -4, 1, 26.031416479094514], [45, -2, -1, 0.841455362197724], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -23, -1, 0.04268617883367777], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 25.54820562398961], [4, 0, 0, 2.4156135388573103], [871, -428, 1, -0.4674833890511802], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 27.76560439052812], [-2, 0, 0, -0.10821085510488573], [444, 931, 1, -0.09475674532900932]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 451, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 4, -1, 22.86301103466705], [-881, 477, 1, 0.26861594693347474], [3, 5, -1, 24.96101043481145], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -27, -1, 0.14252673846897013], [-867, 445, 1, 0.4484606813613489], [-418, -910, -1, 0.27032560554057894], [6, -4, 1, -0.015604390528130075], [-875, 429, -1, 0.4613549832633322], [3, -3, 1, 26.013804835355874], [43, -3, -1, 0.8454723308605481], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-66, -24, -1, 0.04208635148615467], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 25.621997432814826], [4, 0, 0, 2.4156135388573103], [873, -429, 1, -0.46748591800964523], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 27.870812678447837], [-2, 0, 0, -0.10821085510488573], [445, 933, 1, -0.09476316405278822]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 452, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 22.936802843492266], [-883, 478, 1, 0.26862749676534686], [4, 3, -1, 25.022583617650568], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -25, -1, 0.13306901088009945], [-869, 446, 1, 0.4484645269234976], [-419, -912, -1, 0.2703373236890787], [4, -3, 1, -0.0244372519721974], [-877, 430, -1, 0.4613578257786916], [4, -1, 1, 26.099815270167188], [44, -1, -1, 0.8380029963442955], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -25, -1, 0.041523305687363364], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, 1, 1, 25.574489852345238], [4, 0, 0, 2.4156135388573103], [875, -430, 1, -0.4674884353679338], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 27.961010434811307], [-2, 0, 0, -0.10821085510488573], [446, 935, 1, -0.0947695550714414]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 453, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 22.905386364397767], [-885, 479, 1, 0.26863899529597873], [5, 1, -1, 25.093583520905636], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -27, -1, 0.14252673846897013], [-871, 447, 1, 0.44846835491992365], [-420, -914, -1, 0.2703489897671332], [6, -4, 1, -0.015604390528130075], [-879, 431, -1, 0.46136065530938436], [6, 0, 1, 26.138804835355874], [42, -2, -1, 0.8419595472368716], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-69, -27, -1, 0.038232141076590204], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 3, 1, 25.634216058800927], [4, 0, 0, 2.4156135388573103], [877, -431, 1, -0.46749094120567597], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 28.04702086962262], [-2, 0, 0, -0.10821085510488573], [447, 937, 1, -0.09477591856393744]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 454, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 22.975792408680952], [-887, 480, 1, 0.2686504428662932], [4, -1, -1, 25.16398956518882], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -29, -1, 0.15153055037693128], [-873, 448, 1, 0.4484721654707033], [-421, -916, -1, 0.2703606041209165], [4, -3, 1, -0.0244372519721974], [-881, 432, -1, 0.46136347194417715], [5, 2, 1, 26.199364306151296], [43, 0, -1, 0.8343864611426876], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -25, -1, 0.041523305687363364], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 4, 1, 25.695789241640046], [4, 0, 0, 2.4156135388573103], [879, -432, 1, -0.4674934356017747], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 28.133031304433935], [-2, 0, 0, -0.10821085510488573], [448, 939, 1, -0.09478225470770697]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 455, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 5, -1, 23.022813278303584], [-889, 481, 1, 0.26866183981419983], [5, -3, -1, 25.211010434811453], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [20, -30, -1, 0.16123788073041279], [-875, 449, 1, 0.4484759586948207], [-422, -918, -1, 0.27037216709354234], [6, -4, 1, -0.015604390528130075], [-883, 433, -1, 0.4613662757710296], [4, 4, 1, 26.263804835355874], [44, -2, -1, 0.8416158005940759], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -24, -1, 0.04502652400240118], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 5, 1, 25.766789144895114], [4, 0, 0, 2.4156135388573103], [881, -433, 1, -0.467495918634414], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 28.223229060797404], [-2, 0, 0, -0.10821085510488573], [449, 941, 1, -0.09478856367865918]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 456, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 3, -1, 23.084386461142703], [-891, 482, 1, 0.2686731864746285], [3, -4, -1, 25.27258361765057], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -28, -1, 0.15240501928634545], [-877, 450, 1, 0.44847973471018077], [-423, -920, -1, 0.2703836790250974], [4, -3, 1, -0.0244372519721974], [-885, 434, -1, 0.46136906687710316], [2, 5, 1, 26.328245364560452], [42, -3, -1, 0.8457353966426178], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-72, -23, -1, 0.048384445418163065], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 25.8371951891783], [4, 0, 0, 2.4156135388573103], [883, -434, 1, -0.4674983903810671], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 28.32843734871712], [-2, 0, 0, -0.10821085510488573], [450, 943, 1, -0.09479484565119795]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 457, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 1, -1, 23.135594652317486], [-893, 483, 1, 0.268684483179562], [1, -5, -1, 25.34358352090564], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -26, -1, 0.1430537396657071], [-879, 451, 1, 0.4484834936336209], [-424, -922, -1, 0.2703951402526745], [6, -4, 1, -0.015604390528130075], [-887, 435, -1, 0.46137184534877024], [0, 4, 1, 26.388804835355874], [43, -1, -1, 0.838087071847881], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -22, -1, 0.04913056842675958], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 25.923205623989613], [4, 0, 0, 2.4156135388573103], [885, -435, 1, -0.46750085091850474], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 28.42202086962262], [-2, 0, 0, -0.10821085510488573], [451, 945, 1, -0.09480110079823811]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 458, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 23.225792408680956], [-895, 484, 1, 0.26869573025806814], [-1, -4, -1, 25.413989565188825], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -24, -1, 0.13320716617794356], [-881, 452, 1, 0.4484872355809232], [-425, -924, -1, 0.270406551110406], [4, -3, 1, -0.0244372519721974], [-889, 436, -1, 0.461374611271623], [-2, 3, 1, 26.482388356261374], [44, 1, -1, 0.8307699259410796], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-72, -21, -1, 0.05242774541278806], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 26.009216058800927], [4, 0, 0, 2.4156135388573103], [887, -436, 1, -0.46750330032280285], [2, -2, 0, 0.5087787822945713], [2, -5, 1, 28.482580340418043], [-2, 0, 0, -0.10821085510488573], [452, 947, 1, -0.0948073292912211]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 459, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 23.272813278303587], [-897, 485, 1, 0.26870692803633195], [-3, -5, -1, 25.461010434811456], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -26, -1, 0.1361842073099081], [-883, 453, 1, 0.44849096066682653], [-426, -926, -1, 0.27041791192949555], [6, -4, 1, -0.015604390528130075], [-891, 437, -1, 0.4613773647304822], [-3, 1, 1, 26.58759664418109], [45, -1, -1, 0.8379226556428451], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -20, -1, 0.053302214322202175], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 26.099413815164397], [4, 0, 0, 2.4156135388573103], [889, -437, 1, -0.4675057386693505], [2, -2, 0, 0.5087787822945713], [4, -4, 1, 28.54702086962262], [-2, 0, 0, -0.10821085510488573], [453, 949, 1, -0.09481353130013082]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 460, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -4, -1, 23.334386461142707], [-899, 486, 1, 0.2687180768376872], [-4, -3, -1, 25.522583617650575], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -25, -1, 0.126701116319036], [-885, 454, 1, 0.44849466900503815], [-427, -928, -1, 0.2704292230382505], [4, -3, 1, -0.0244372519721974], [-893, 438, -1, 0.461380105809406], [-4, -1, 1, 26.67779440054456], [43, -2, -1, 0.8417836854928741], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-69, -22, -1, 0.04847166952877195], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -2, 1, 26.108765094785035], [4, 0, 0, 2.4156135388573103], [891, -438, 1, -0.4675081660328578], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 28.598229060797404], [-2, 0, 0, -0.10821085510488573], [454, 951, 1, -0.09481970699350888]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 461, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 23.38559465231749], [-901, 487, 1, 0.26872917698264714], [-5, -1, -1, 25.593583520905643], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -24, -1, 0.1298214016359122], [-887, 455, 1, 0.44849836070824517], [-428, -930, -1, 0.27044048476211363], [6, -4, 1, -0.015604390528130075], [-895, 439, -1, 0.4613828345916985], [-5, -3, 1, 26.72481527016719], [44, 0, -1, 0.8343864611426876], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -20, -1, 0.053302214322202175], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -4, 1, 26.173205623989613], [4, 0, 0, 2.4156135388573103], [893, -439, 1, -0.46751058248736305], [2, -2, 0, 0.5087787822945713], [7, -1, 1, 28.649437251972188], [-2, 0, 0, -0.10821085510488573], [455, 953, 1, -0.09482585653847003]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 462, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 23.47579240868096], [-903, 488, 1, 0.26874022878893566], [-4, 1, -1, 25.663989565188828], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -23, -1, 0.12008936928928869], [-889, 456, 1, 0.448502035888126], [-429, -932, -1, 0.27045169742369385], [4, -3, 1, -0.0244372519721974], [-897, 440, -1, 0.46138555115991786], [-3, -4, 1, 26.78638845300631], [45, -2, -1, 0.8414553621977239], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -21, -1, 0.04992298403902878], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -5, 1, 26.23764615319419], [4, 0, 0, 2.4156135388573103], [895, -440, 1, -0.4675129881062408], [2, -2, 0, 0.5087787822945713], [5, 0, 1, 28.67202086962262], [-2, 0, 0, -0.10821085510488573], [456, 955, 1, -0.09483198010071715]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 463, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -5, -1, 23.52281327830359], [-905, 489, 1, 0.268751232571517], [-5, 3, -1, 25.71101043481146], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [25, -21, -1, 0.11601656628005023], [-891, 457, 1, 0.4485056946553617], [-430, -934, -1, 0.2704628613427973], [6, -4, 1, -0.015604390528130075], [-899, 441, -1, 0.46138825559588503], [-1, -5, 1, 26.857388356261378], [43, -3, -1, 0.845472330860548], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-67, -19, -1, 0.053616128990259554], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 26.298205623989613], [4, 0, 0, 2.4156135388573103], [897, -441, 1, -0.467515382962209], [2, -2, 0, 0.5087787822945713], [3, 1, 1, 28.723229060797404], [-2, 0, 0, -0.10821085510488573], [457, 957, 1, -0.09483807784455614]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 464, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -3, -1, 23.58438646114271], [-907, 490, 1, 0.2687621886426262], [-3, 4, -1, 25.77258361765058], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -19, -1, 0.11139774992719426], [-893, 458, 1, 0.4485093371196472], [-431, -936, -1, 0.2704739768364575], [4, -3, 1, -0.0244372519721974], [-901, 442, -1, 0.46139094798069163], [0, -3, 1, 26.888804835355877], [44, -1, -1, 0.8380029963442954], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -21, -1, 0.04992298403902878], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 26.391789144895114], [4, 0, 0, 2.4156135388573103], [899, -442, 1, -0.46751776712733645], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 28.82843734871712], [-2, 0, 0, -0.10821085510488573], [458, 959, 1, -0.09484414993291067]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 465, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 23.635594652317494], [-909, 491, 1, 0.26877309731179805], [-1, 5, -1, 25.843583520905646], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -21, -1, 0.12259206218452386], [-895, 459, 1, 0.4485129633897018], [-432, -938, -1, 0.2704850442189656], [6, -4, 1, -0.015604390528130075], [-903, 443, -1, 0.4613936283947085], [-1, -5, 1, 26.857388356261378], [42, -2, -1, 0.8419595472368715], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -22, -1, 0.04913056842675958], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -2, 1, 26.474413815164397], [4, 0, 0, 2.4156135388573103], [901, -443, 1, -0.46752014067304976], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 28.92202086962262], [-2, 0, 0, -0.10821085510488573], [459, 961, 1, -0.0948501965273365]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 466, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 23.725792408680963], [-911, 492, 1, 0.2687839588858967], [1, 4, -1, 25.91398956518883], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -22, -1, 0.13352201234110564], [-897, 460, 1, 0.4485165735732804], [-433, -940, -1, 0.27049606380189967], [4, -3, 1, -0.0244372519721974], [-905, 444, -1, 0.46139629691759304], [0, -3, 1, 26.888804835355877], [43, 0, -1, 0.8343864611426874], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-69, -24, -1, 0.044319958419735926], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 0, 1, 26.548205623989613], [4, 0, 0, 2.4156135388573103], [903, -444, 1, -0.4675225036701409], [2, -2, 0, 0.5087787822945713], [-2, 5, 1, 28.982580340418043], [-2, 0, 0, -0.10821085510488573], [460, 963, 1, -0.09485621778803605]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 467, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 3, -1, 23.772813278303595], [-913, 493, 1, 0.26879477366914406], [3, 5, -1, 25.961010434811463], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -20, -1, 0.12224831554172814], [-899, 461, 1, 0.44852016777718423], [-434, -942, -1, 0.27050703589415415], [6, -4, 1, -0.015604390528130075], [-907, 445, -1, 0.46139895362829775], [1, -5, 1, 26.920221314450377], [44, -2, -1, 0.8416158005940758], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-71, -23, -1, 0.047735527955560506], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 26.62199743281483], [4, 0, 0, 2.4156135388573103], [905, -445, 1, -0.46752485618877393], [2, -2, 0, 0.5087787822945713], [-4, 4, 1, 29.04702086962262], [-2, 0, 0, -0.10821085510488573], [461, 965, 1, -0.09486221387387238]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 468, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 4, -1, 23.834386461142714], [-915, 494, 1, 0.2688055419631482], [4, 3, -1, 26.022583617650582], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -21, -1, 0.119226749318439], [-901, 462, 1, 0.44852374610727097], [-435, -944, -1, 0.2705179608019685], [4, -3, 1, -0.0244372519721974], [-909, 446, -1, 0.46140159860507757], [2, -3, 1, 26.982388356261374], [42, -3, -1, 0.8457353966426177], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-72, -25, -1, 0.04440570999715571], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 4, 1, 26.695789241640046], [4, 0, 0, 2.4156135388573103], [907, -446, 1, -0.46752719829849204], [2, -2, 0, 0.5087787822945713], [-5, 2, 1, 29.1114613988272], [-2, 0, 0, -0.10821085510488573], [462, 967, 1, -0.09486818494238317]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 469, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 23.885594652317497], [-917, 495, 1, 0.26881626406693165], [5, 1, -1, 26.09358352090565], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -20, -1, 0.10917860171598857], [-903, 463, 1, 0.44852730866846563], [-436, -946, -1, 0.27052883882895556], [6, -4, 1, -0.015604390528130075], [-911, 447, -1, 0.4614042319254978], [4, -2, 1, 27.065013026530657], [43, -1, -1, 0.8380870718478809], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -26, -1, 0.04099377178633128], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 5, 1, 26.766789144895114], [4, 0, 0, 2.4156135388573103], [909, -447, 1, -0.4675295300682244], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 29.120812678447837], [-2, 0, 0, -0.10821085510488573], [463, 969, 1, -0.09487413114979451]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 470, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 23.975792408680967], [-919, 496, 1, 0.2688269402769585], [4, -1, -1, 26.163989565188835], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [25, -18, -1, 0.10413775512045872], [-905, 464, 1, 0.44853085556477024], [-437, -948, -1, 0.2705396702761299], [4, -3, 1, -0.0244372519721974], [-913, 448, -1, 0.46140685366644163], [5, 0, 1, 27.138804835355874], [44, 1, -1, 0.8307699259410795], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -25, -1, 0.04152330568736336], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 26.8371951891783], [4, 0, 0, 2.4156135388573103], [911, -448, 1, -0.4675318515662929], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 29.211010434811307], [-2, 0, 0, -0.10821085510488573], [464, 971, 1, -0.09488005265103469]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 471, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 24.06180284349228], [-921, 497, 1, 0.26883757088716237], [5, -3, -1, 26.211010434811467], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -17, -1, 0.10612483049716738], [-907, 465, 1, 0.44853438689927455], [-438, -950, -1, 0.2705504554419356], [6, -4, 1, -0.015604390528130075], [-915, 449, -1, 0.4614094639041176], [4, 2, 1, 27.21259664418109], [45, -1, -1, 0.837922655642845], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-66, -24, -1, 0.042086351486154666], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 26.923205623989613], [4, 0, 0, 2.4156135388573103], [913, -449, 1, -0.4675341628604188], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 29.29702086962262], [-2, 0, 0, -0.10821085510488573], [465, 973, 1, -0.09488594959974733]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 472, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 24.147813278303595], [-923, 498, 1, 0.2688481561889726], [3, -4, -1, 26.272583617650586], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -19, -1, 0.11819663462169437], [-909, 466, 1, 0.4485379027741657], [-439, -952, -1, 0.2705611946222731], [4, -3, 1, -0.0244372519721974], [-917, 450, -1, 0.461412062714067], [2, 3, 1, 27.295221314450373], [43, -2, -1, 0.841783685492874], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -25, -1, 0.03832592712530551], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 27.009216058800927], [4, 0, 0, 2.4156135388573103], [915, -450, 1, -0.4675364640177295], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 29.383031304433935], [-2, 0, 0, -0.10821085510488573], [466, 975, 1, -0.09489182214830497]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 473, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 24.18680284349228], [-925, 499, 1, 0.26885869647134153], [1, -5, -1, 26.343583520905653], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -17, -1, 0.11312971842064963], [-911, 467, 1, 0.44854140329073805], [-440, -954, -1, 0.27057188811052685], [6, -4, 1, -0.015604390528130075], [-919, 451, -1, 0.461414650171171], [0, 4, 1, 27.388804835355874], [44, 0, -1, 0.8343864611426874], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -26, -1, 0.03439782420591111], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 27.099413815164397], [4, 0, 0, 2.4156135388573103], [917, -451, 1, -0.46753875510476484], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 29.42202086962262], [-2, 0, 0, -0.10821085510488573], [467, 977, 1, -0.09489767044782192]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 474, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 24.225792408680967], [-927, 500, 1, 0.26886919202077025], [-1, -4, -1, 26.41398956518884], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [19, -18, -1, 0.12552096358319562], [-913, 468, 1, 0.448544888549403], [-441, -956, -1, 0.2705825361975917], [4, -3, 1, -0.0244372519721974], [-921, 452, -1, 0.4614172263496581], [-2, 3, 1, 27.482388356261374], [45, -2, -1, 0.8414553621977238], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -28, -1, 0.029106373091205624], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 27.204622103084112], [4, 0, 0, 2.4156135388573103], [919, -452, 1, -0.46754103618748344], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 29.461010434811307], [-2, 0, 0, -0.10821085510488573], [468, 979, 1, -0.09490349464816752]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 475, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 24.272813278303598], [-929, 501, 1, 0.2688796431213349], [-3, -5, -1, 26.46101043481147], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [17, -19, -1, 0.13865426307997952], [-915, 469, 1, 0.4485483586496986], [-442, -958, -1, 0.27059313917189903], [6, -4, 1, -0.015604390528130075], [-923, 453, -1, 0.46141979132311123], [-3, 1, 1, 27.58759664418109], [43, -3, -1, 0.8454723308605478], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -29, -1, 0.02488584187543253], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 27.298205623989613], [4, 0, 0, 2.4156135388573103], [921, -453, 1, -0.4675433073312693], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 29.473229060797404], [-2, 0, 0, -0.10821085510488573], [469, 981, 1, -0.09490929489797868]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 476, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 24.28038636439778], [-931, 502, 1, 0.26889005005471195], [-4, -3, -1, 26.52258361765059], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [18, -21, -1, 0.1420400276220109], [-917, 470, 1, 0.448551813690299], [-443, -960, -1, 0.2706036973194433], [4, -3, 1, -0.0244372519721974], [-925, 454, -1, 0.46142234516447445], [-4, -1, 1, 27.67779440054456], [44, -1, -1, 0.8380029963442953], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -30, -1, 0.02048792348848786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 27.391789144895114], [4, 0, 0, 2.4156135388573103], [923, -454, 1, -0.4675455686009378], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 29.504645539891904], [-2, 0, 0, -0.10821085510488573], [470, 983, 1, -0.09491507134467261]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 477, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 24.385594652317497], [-933, 503, 1, 0.2689004131002039], [-5, -1, -1, 26.593583520905657], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [19, -23, -1, 0.14493343505537193], [-919, 471, 1, 0.4485552537690239], [-444, -962, -1, 0.27061421092380716], [6, -4, 1, -0.015604390528130075], [-927, 455, -1, 0.4614248879460601], [-3, -3, 1, 27.763804835355874], [42, -2, -1, 0.8419595472368714], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-56, -28, -1, 0.023803171888437905], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -2, 1, 27.474413815164397], [4, 0, 0, 2.4156135388573103], [925, -455, 1, -0.46754782006074214], [2, -2, 0, 0.5087787822945713], [6, -6, 1, 29.54702086962262], [-2, 0, 0, -0.10821085510488573], [471, 985, 1, -0.09492082413445926]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 478, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -5, -1, 24.43680284349228], [-935, 504, 1, 0.2689107325347636], [-4, 1, -1, 26.663989565188842], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [18, -25, -1, 0.15550504815136565], [-921, 472, 1, 0.4485586789828474], [-445, -964, -1, 0.27062468026618725], [4, -3, 1, -0.0244372519721974], [-929, 456, -1, 0.46142741973955576], [-2, -5, 1, 27.828245364560452], [43, 0, -1, 0.8343864611426873], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -27, -1, 0.028253897850301777], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 0, 1, 27.548205623989613], [4, 0, 0, 2.4156135388573103], [927, -456, 1, -0.4675500617743791], [2, -2, 0, 0.5087787822945713], [7, -4, 1, 29.589396199353338], [-2, 0, 0, -0.10821085510488573], [472, 987, 1, -0.09492655341235381]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 479, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -4, -1, 24.510594652317497], [-937, 505, 1, 0.26892100863301943], [-5, 3, -1, 26.711010434811474], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [19, -27, -1, 0.15722642092225764], [-923, 473, 1, 0.44856208942790765], [-446, -966, -1, 0.27063510562541904], [6, -4, 1, -0.015604390528130075], [-931, 457, -1, 0.4614299406160304], [0, -4, 1, 27.888804835355874], [44, -2, -1, 0.8416158005940757], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -25, -1, 0.03181140370104779], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 27.62199743281483], [4, 0, 0, 2.4156135388573103], [929, -457, 1, -0.4675522938049952], [2, -2, 0, 0.5087787822945713], [8, -2, 1, 29.63303130443394], [-2, 0, 0, -0.10821085510488573], [473, 989, 1, -0.09493225932218868]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 480, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 24.59321932258678], [-939, 506, 1, 0.26893124166729954], [-3, 4, -1, 26.772583617650593], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [20, -25, -1, 0.1474330453745508], [-925, 474, 1, 0.44856548519951556], [-447, -968, -1, 0.27064548727800136], [4, -3, 1, -0.0244372519721974], [-933, 458, -1, 0.46143245064594174], [2, -3, 1, 27.982388356261374], [42, -3, -1, 0.8457353966426175], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -23, -1, 0.037509183945549245], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 27.704622103084112], [4, 0, 0, 2.4156135388573103], [931, -458, 1, -0.46755451621519273], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 29.645736641266996], [-2, 0, 0, -0.10821085510488573], [474, 991, 1, -0.09493794200662556]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 481, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 24.68680284349228], [-941, 507, 1, 0.2689414319076557], [-1, 5, -1, 26.84358352090566], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -26, -1, 0.14305373966570709], [-927, 475, 1, 0.4485688663921636], [-448, -970, -1, 0.2706558254981214], [6, -4, 1, -0.015604390528130075], [-935, 459, -1, 0.4614349498991425], [4, -4, 1, 28.013804835355874], [43, -1, -1, 0.8380870718478808], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -21, -1, 0.043171975460733675], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 27.798205623989613], [4, 0, 0, 2.4156135388573103], [933, -459, 1, -0.46755672906703544], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 29.703437348717124], [-2, 0, 0, -0.10821085510488573], [475, 993, 1, -0.09494360160716747]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 482, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 24.78038636439778], [-943, 508, 1, 0.2689515796218869], [1, 4, -1, 26.913989565188846], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [20, -27, -1, 0.15335235894984223], [-929, 476, 1, 0.44857223309953465], [-449, -972, -1, 0.270666120557678], [4, -3, 1, -0.0244372519721974], [-937, 460, -1, 0.4614374384448868], [2, -3, 1, 27.982388356261374], [44, 1, -1, 0.8307699259410793], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -22, -1, 0.03897042908885002], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 27.858765094785035], [4, 0, 0, 2.4156135388573103], [935, -460, 1, -0.4675589324220544], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 29.76560439052812], [-2, 0, 0, -0.10821085510488573], [476, 995, 1, -0.09494923826417027]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 483, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 4, -1, 24.863011034667064], [-945, 509, 1, 0.26896168507556345], [3, 5, -1, 26.961010434811477], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -25, -1, 0.1436262369917741], [-931, 477, 1, 0.44857558541451087], [-450, -974, -1, 0.2706763727263064], [6, -4, 1, -0.015604390528130075], [-939, 461, -1, 0.4614399163518368], [4, -2, 1, 28.065013026530657], [45, -1, -1, 0.8379226556428448], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-56, -20, -1, 0.043001024996839846], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 27.923205623989613], [4, 0, 0, 2.4156135388573103], [937, -461, 1, -0.4675611263412536], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 29.870812678447837], [-2, 0, 0, -0.10821085510488573], [477, 997, 1, -0.09495485211685442]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 484, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 24.93680284349228], [-947, 510, 1, 0.26897174853204936], [4, 3, -1, 27.022583617650596], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -23, -1, 0.13335759613606968], [-933, 478, 1, 0.4485789234291818], [-451, -976, -1, 0.2706865822714007], [4, -3, 1, -0.0244372519721974], [-941, 462, -1, 0.4614423836880685], [3, 0, 1, 28.138804835355874], [43, -2, -1, 0.8417836854928739], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -19, -1, 0.04721141917032871], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 28.009216058800927], [4, 0, 0, 2.4156135388573103], [939, -462, 1, -0.46756331088511577], [2, -2, 0, 0.5087787822945713], [3, 4, 1, 29.819604487273054], [-2, 0, 0, -0.10821085510488573], [478, 999, 1, -0.0949604433033164]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 485, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 24.90538636439778], [-949, 511, 1, 0.2689817702525255], [5, 1, -1, 27.093583520905664], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -24, -1, 0.12982140163591216], [-935, 479, 1, 0.4485822472348531], [-452, -978, -1, 0.27069674945813804], [6, -4, 1, -0.015604390528130075], [-943, 463, -1, 0.46144484052107876], [4, -2, 1, 28.065013026530657], [44, 0, -1, 0.8343864611426873], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-60, -18, -1, 0.05120819117478343], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 28.099413815164397], [4, 0, 0, 2.4156135388573103], [941, -463, 1, -0.4675654861136079], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 29.870812678447837], [-2, 0, 0, -0.10821085510488573], [479, 1001, 1, -0.09496601196053997]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 486, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 24.975792408680967], [-951, 512, 1, 0.26899175049601226], [4, -1, -1, 27.16398956518885], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -23, -1, 0.12008936928928866], [-937, 480, 1, 0.44858555692205504], [-453, -980, -1, 0.2707068745495009], [4, -3, 1, -0.0244372519721974], [-945, 464, -1, 0.4614472869177907], [5, 0, 1, 28.138804835355874], [45, -2, -1, 0.8414553621977237], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -19, -1, 0.05026784794802779], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 28.204622103084112], [4, 0, 0, 2.4156135388573103], [943, -464, 1, -0.46756765208618645], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 29.961010434811307], [-2, 0, 0, -0.10821085510488573], [480, 1003, 1, -0.09497155822440748]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 487, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 25.06180284349228], [-953, 513, 1, 0.2690016895193917], [5, -3, -1, 27.21101043481148], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [27, -25, -1, 0.12370307340878492], [-939, 481, 1, 0.4485888525805501], [-454, -982, -1, 0.2707169578063], [6, -4, 1, -0.015604390528130075], [-947, 465, -1, 0.46144972294456027], [4, 2, 1, 28.21259664418109], [43, -3, -1, 0.8454723308605477], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -21, -1, 0.0463867895388712], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 28.298205623989613], [4, 0, 0, 2.4156135388573103], [945, -465, 1, -0.4675698088618031], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 30.04702086962262], [-2, 0, 0, -0.10821085510488573], [481, 1005, 1, -0.09497708222971077]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 488, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 25.147813278303595], [-955, 514, 1, 0.2690115875774296], [3, -4, -1, 27.2725836176506], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -23, -1, 0.12008936928928866], [-941, 482, 1, 0.4485921342993417], [-455, -984, -1, 0.27072699948719675], [4, -3, 1, -0.0244372519721974], [-949, 466, -1, 0.46145214866718215], [2, 3, 1, 28.295221314450373], [44, -1, -1, 0.8380029963442952], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -23, -1, 0.04105823308013007], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 28.391789144895114], [4, 0, 0, 2.4156135388573103], [947, -466, 1, -0.46757195649891004], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 30.133031304433935], [-2, 0, 0, -0.10821085510488573], [482, 1007, 1, -0.09498258411016214]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 489, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 25.18680284349228], [-957, 515, 1, 0.2690214449227972], [1, -5, -1, 27.343583520905668], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -24, -1, 0.12982140163591216], [-943, 483, 1, 0.44859540216668187], [-456, -986, -1, 0.270736999848725], [6, -4, 1, -0.015604390528130075], [-951, 467, -1, 0.46145456415089536], [0, 4, 1, 28.388804835355874], [42, -2, -1, 0.8419595472368713], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -25, -1, 0.03569057058356356], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -4, 1, 28.423205623989613], [4, 0, 0, 2.4156135388573103], [949, -467, 1, -0.467574095055465], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 30.223229060797404], [-2, 0, 0, -0.10821085510488573], [483, 1009, 1, -0.0949880639984052]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 490, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 25.225792408680967], [-959, 516, 1, 0.2690312618060928], [-1, -4, -1, 27.413989565188853], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -22, -1, 0.12628520713575464], [-945, 484, 1, 0.44859865627007944], [-457, -988, -1, 0.2707469591453133], [4, -3, 1, -0.0244372519721974], [-953, 468, -1, 0.4614569694603896], [-2, 3, 1, 28.482388356261374], [43, 0, -1, 0.8343864611426872], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -27, -1, 0.03222734582226287], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -3, 1, 28.474413815164397], [4, 0, 0, 2.4156135388573103], [951, -468, 1, -0.4675762245889368], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 30.32843734871712], [-2, 0, 0, -0.10821085510488573], [484, 1011, 1, -0.09499352202602548]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 491, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -3, -1, 25.31180284349228], [-961, 517, 1, 0.2690410384758627], [-3, -5, -1, 27.461010434811485], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -24, -1, 0.13673682641924317], [-947, 485, 1, 0.44860189669630746], [-458, -990, -1, 0.2707568776293061], [6, -4, 1, -0.015604390528130075], [-955, 469, -1, 0.4614593646598106], [-3, 1, 1, 28.58759664418109], [44, -2, -1, 0.8416158005940756], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -25, -1, 0.03747154976722683], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -1, 1, 28.52562200633918], [4, 0, 0, 2.4156135388573103], [953, -469, 1, -0.46757834515631025], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 30.42202086962262], [-2, 0, 0, -0.10821085510488573], [485, 1013, 1, -0.09499895832356092]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 492, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -4, -1, 25.397813278303595], [-963, 518, 1, 0.2690507751786223], [-4, -3, -1, 27.522583617650604], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -26, -1, 0.13955343398253567], [-949, 486, 1, 0.4486051235314112], [-459, -992, -1, 0.2707667555509851], [4, -3, 1, -0.0244372519721974], [-957, 470, -1, 0.4614617498127661], [-4, -1, 1, 28.67779440054456], [42, -3, -1, 0.8457353966426174], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-65, -24, -1, 0.041301376627689276], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 28.548205623989613], [4, 0, 0, 2.4156135388573103], [955, -470, 1, -0.46758045681409144], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 30.51560439052812], [-2, 0, 0, -0.10821085510488573], [486, 1015, 1, -0.09500437302051226]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 493, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 25.488011034667064], [-965, 519, 1, 0.26906047215887696], [-5, -1, -1, 27.59358352090567], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [25, -25, -1, 0.12982140163591216], [-951, 487, 1, 0.4486083368607159], [-460, -994, -1, 0.27077659315859043], [6, -4, 1, -0.015604390528130075], [-959, 471, -1, 0.4614641249823313], [-3, -3, 1, 28.763804835355874], [43, -1, -1, 0.8380870718478807], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-67, -23, -1, 0.044965801020573855], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 28.62199743281483], [4, 0, 0, 2.4156135388573103], [957, -471, 1, -0.4675825596183125], [2, -2, 0, 0.5087787822945713], [4, -4, 1, 30.54702086962262], [-2, 0, 0, -0.10821085510488573], [487, 1017, 1, -0.0950097662453535]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 494, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 25.539219225841848], [-967, 520, 1, 0.2690701296591421], [-4, 1, -1, 27.663989565188857], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [27, -26, -1, 0.1268188344507436], [-953, 488, 1, 0.44861153676883375], [-461, -996, -1, 0.2707863906983414], [4, -3, 1, -0.0244372519721974], [-961, 472, -1, 0.4614664902310547], [-1, -4, 1, 28.849815270167188], [44, 1, -1, 0.8307699259410792], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -25, -1, 0.04152330568736334], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 28.704622103084112], [4, 0, 0, 2.4156135388573103], [959, -472, 1, -0.4675846536245369], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 30.57843734871712], [-2, 0, 0, -0.10821085510488573], [488, 1019, 1, -0.09501513812554173]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 495, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 25.613011034667064], [-969, 521, 1, 0.26907974791996364], [-5, 3, -1, 27.711010434811488], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [28, -24, -1, 0.11760277564981347], [-955, 489, 1, 0.44861472333967195], [-462, -998, -1, 0.2707961484144567], [6, -4, 1, -0.015604390528130075], [-963, 473, -1, 0.461468845620963], [1, -5, 1, 28.920221314450373], [45, -1, -1, 0.8379226556428447], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-69, -23, -1, 0.046386789538871195], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 28.798205623989613], [4, 0, 0, 2.4156135388573103], [961, -473, 1, -0.4675867388878639], [2, -2, 0, 0.5087787822945713], [5, -3, 1, 30.586010434811303], [-2, 0, 0, -0.10821085510488573], [489, 1021, 1, -0.09502048878752756]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 496, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 0, -1, 25.68680284349228], [-971, 522, 1, 0.2690893271799379], [-3, 4, -1, 27.772583617650607], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [29, -22, -1, 0.10811225289489307], [-957, 490, 1, 0.4486178966564395], [-463, -1000, -1, 0.2708058665491752], [4, -3, 1, -0.0244372519721974], [-965, 474, -1, 0.46147119121356733], [2, -3, 1, 28.98238835626137], [43, -2, -1, 0.8417836854928737], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -21, -1, 0.04992298403902876], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 28.891789144895114], [4, 0, 0, 2.4156135388573103], [963, -474, 1, -0.4675888154629338], [2, -2, 0, 0.5087787822945713], [4, -1, 1, 30.633031304433935], [-2, 0, 0, -0.10821085510488573], [490, 1023, 1, -0.09502581835676467]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 497, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 25.71821932258678], [-973, 523, 1, 0.2690988676757313], [-1, 5, -1, 27.843583520905675], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [27, -23, -1, 0.11711606480285422], [-959, 491, 1, 0.44862105680165487], [-464, -1002, -1, 0.2708155453427755], [6, -4, 1, -0.015604390528130075], [-967, 475, -1, 0.46147352706986805], [4, -2, 1, 29.065013026530654], [44, 0, -1, 0.8343864611426872], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-67, -19, -1, 0.05361612899025954], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 28.99699743281483], [4, 0, 0, 2.4156135388573103], [965, -475, 1, -0.4675908834039325], [2, -2, 0, 0.5087787822945713], [3, 1, 1, 30.723229060797404], [-2, 0, 0, -0.10821085510488573], [491, 1025, 1, -0.09503112695771987]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 498, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 25.760594652317497], [-975, 524, 1, 0.2691083696420999], [1, 4, -1, 27.91398956518886], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [29, -22, -1, 0.10811225289489307], [-961, 492, 1, 0.44862420385715285], [-465, -1004, -1, 0.27082518503359604], [4, -3, 1, -0.0244372519721974], [-969, 476, -1, 0.46147585325035995], [3, 0, 1, 29.13880483535587], [45, -2, -1, 0.8414553621977235], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-69, -20, -1, 0.05269359417960758], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 0, 1, 29.048205623989613], [4, 0, 0, 2.4156135388573103], [967, -476, 1, -0.46759294276459623], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 30.82843734871712], [-2, 0, 0, -0.10821085510488573], [492, 1027, 1, -0.09503641471388265]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 499, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 4, -1, 25.81180284349228], [-977, 525, 1, 0.26911783331190825], [3, 5, -1, 27.96101043481149], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [30, -24, -1, 0.11220975789727353], [-963, 493, 1, 0.44862733790409176], [-466, -1006, -1, 0.2708347858580543], [6, -4, 1, -0.015604390528130075], [-971, 477, -1, 0.4614781698150381], [5, 1, 1, 29.17022131445037], [43, -3, -1, 0.8454723308605476], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -22, -1, 0.049130568426759565], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -2, 1, 29.12199743281483], [4, 0, 0, 2.4156135388573103], [969, -477, 1, -0.46759499359821627], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 30.92202086962262], [-2, 0, 0, -0.10821085510488573], [493, 1029, 1, -0.09504168174777486]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 500, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 6, -1, 25.863011034667064], [-979, 526, 1, 0.2691272589161491], [4, 3, -1, 28.02258361765061], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [31, -26, -1, 0.1158960856497016], [-965, 494, 1, 0.44863045902296045], [-467, -1008, -1, 0.2708443480506665], [4, -3, 1, -0.0244372519721974], [-973, 478, -1, 0.46148047682340226], [3, 2, 1, 29.232388356261367], [44, -1, -1, 0.8380029963442951], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -21, -1, 0.04992298403902876], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 29.204622103084112], [4, 0, 0, 2.4156135388573103], [971, -478, 1, -0.46759703595764346], [2, -2, 0, 0.5087787822945713], [-1, 6, 1, 30.94830509797825], [-2, 0, 0, -0.10821085510488573], [494, 1031, 1, -0.09504692818095999]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}]}
\ No newline at end of file +{"seat": 16, "gamedata": [{"round": 1, "state": [[3, 33, -1, 0], [9, 33, 1, 0], [16, 30, -1, 0], [20, 26, 1, 0], [24, 22, -1, 0], [28, 18, 1, 0], [32, 12, -1, 0], [33, 7, 1, 0], [33, -1, -1, 0], [33, -7, 1, 0], [31, -13, -1, 0], [28, -18, 1, 0], [26, -22, -1, 0], [21, -27, 1, 0], [16, -30, -1, 0], [9, -31, 1, 0], [3, -33, -1, 0], [-3, -33, 1, 0], [-8, -32, -1, 0], [-14, -30, 1, 0], [-21, -27, -1, 0], [-25, -23, 1, 0], [-28, -18, -1, 0], [-31, -11, 1, 0], [-34, -6, -1, 0], [-33, -1, 1, 0], [-32, 6, -1, 0], [-32, 12, 1, 0], [-28, 16, -1, 0], [-25, 21, 1, 0], [-21, 27, -1, 0], [-15, 29, 1, 0], [-9, 33, -1, 0], [-3, 33, 1, 0]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [1, 2], "using": [1, 2]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": [-2, 1], "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [33, 7, 1, 0], "error": "invalid coords", "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, 1], "using": [-2, 1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": [1, 2], "using": [1, 2]}, {"seat": 13, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process returned empty string (might have exited and is lingering)", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 20, "got": [-1, 2], "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [1, 2]}]}, {"round": 2, "state": [[2, 31, -1, -0.004175119225787615], [10, 35, 1, -0.0019174366607363237], [17, 28, -1, 0.00886456877367908], [18, 27, 1, 0.010773679174576951], [22, 21, -1, -0.0032148140781375445], [26, 17, 1, 0.0012313482980143033], [31, 10, -1, 0.007437079510394798], [32, 5, 1, -0.008598536926897528], [32, -3, -1, 0.010055890149796671], [31, -6, 1, 0.002839082780013944], [29, -12, -1, -0.0007542831824570049], [29, -16, 1, 0.010690679181102477], [25, -20, -1, -0.004379305708843697], [23, -28, 1, 0.0042379917010589565], [17, -28, -1, -0.00886456877367908], [11, -30, 1, 0.010964158808947772], [2, -31, -1, 0.004175119225787615], [-5, -34, 1, -0.008809603378604959], [-9, -30, -1, 0.007397224350186516], [-15, -28, 1, -0.008782490644053169], [-20, -25, -1, 0.0021800683416441386], [-23, -22, 1, 0.0030914278064780513], [-30, -17, -1, 0.00887901114597088], [-29, -10, 1, -0.001419580279332493], [-32, -5, -1, 0.0031314462525585955], [-32, -3, 1, 0.010055890149796666], [-33, 4, -1, -0.01030118932536239], [-33, 10, 1, 0.010271240144014442], [-26, 17, -1, 0.009537862117918077], [-23, 20, 1, -0.002718965638001457], [-19, 26, -1, 0.004768883920249656], [-17, 30, 1, 0.006080295776356185], [-11, 32, -1, -0.01032024751507991], [-2, 35, 1, -0.005344280512642326]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": [-2, 1], "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, 1], "using": [-2, 1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 20, "got": [1, 2], "using": [1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process exited", "using": [1, 2]}]}, {"round": 3, "state": [[1, 29, -1, -0.008943041380146762], [9, 37, 1, 0.004399476585727618], [18, 26, -1, 0.018396296098280585], [16, 28, 1, 0.021732529810792423], [21, 19, -1, 0.0010357008447571992], [24, 16, 1, 0.002652336816311626], [30, 8, -1, 0.015623966781794198], [33, 3, 1, -0.018838065379079304], [31, -5, -1, 0.020629562379981446], [29, -5, 1, 0.006093681701100189], [27, -11, -1, -0.0016239736686254895], [30, -14, 1, 0.021439813316687713], [24, -18, -1, -0.009351279620638333], [24, -30, 1, 0.002180068341644138], [18, -30, -1, -0.008031304433946009], [13, -29, 1, 0.022100932509429773], [1, -29, -1, 0.008943041380146762], [-7, -35, 1, -0.01698750990634837], [-10, -28, -1, 0.01560439052813007], [-14, -26, 1, -0.009121839688628699], [-19, -23, -1, 0.004679678660823005], [-21, -21, 1, 0.0066276223066356185], [-32, -16, -1, 0.017139375263971135], [-27, -9, 1, -0.0030602947644621323], [-31, -3, -1, 0.012445665693847682], [-30, -2, 1, 0.005773250681561036], [-31, 5, -1, -0.004048078417870634], [-34, 8, 1, 0.020320903623322988], [-24, 18, -1, 0.019791712080282742], [-21, 19, 1, -0.005853709727773724], [-17, 25, -1, 0.010164670885168946], [-18, 32, 1, 0.0055774382297816465], [-10, 30, -1, -0.008832861444067324], [-1, 37, 1, -0.01012853113543567]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": [-2, 1], "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [32, 5, 1, -0.008598536926897528], "error": "invalid coords", "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, 1], "using": [-2, 1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 20, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 4, "state": [[0, 27, -1, -0.014428969188152244], [7, 36, 1, 0.01180993847585632], [19, 24, -1, 0.028597217913912724], [14, 29, 1, 0.03277573445691327], [23, 18, -1, 0.012398345961596561], [22, 15, 1, 0.004310140847503785], [29, 6, -1, 0.024629655678178538], [34, 1, 1, -0.028587355906408513], [30, -7, -1, 0.03166199365963315], [27, -4, 1, 0.009858787285340783], [25, -10, -1, -0.002637685712321725], [31, -12, 1, 0.03214990682022034], [23, -16, -1, -0.015032969867547288], [25, -32, 1, 0.00034374664279571707], [16, -29, -1, -0.0022613745307159695], [15, -28, 1, 0.03330384403592287], [0, -27, -1, 0.014428969188152244], [-9, -36, 1, -0.024560596000532432], [-11, -26, -1, 0.0247107138046203], [-12, -25, 1, -0.001733645406125684], [-18, -21, -1, 0.007573086094184062], [-19, -20, 1, 0.010707624291040645], [-33, -14, -1, 0.02707363741674158], [-25, -8, 1, -0.004977731425198492], [-29, -2, -1, 0.01684109325667714], [-28, -1, 1, 0.0008602886109967756], [-30, 7, -1, 0.006984352861781068], [-35, 6, 1, 0.030079074078282978], [-22, 19, -1, 0.03075056271649823], [-19, 18, 1, -0.009504397303145331], [-15, 24, -1, 0.016304445675040878], [-17, 30, 1, 0.006080295776356185], [-12, 31, -1, -0.016405947538251385], [0, 39, 1, -0.014428969188152242]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": [-2, 1], "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, 1], "using": [-2, 1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 20, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 5, "state": [[-1, 25, -1, -0.02079177486214817], [5, 35, 1, 0.019791712080282776], [20, 22, -1, 0.039447783528446606], [12, 30, 1, 0.04379772928465465], [24, 16, -1, 0.024501054311169612], [20, 14, 1, 0.006268872017919612], [28, 4, -1, 0.0345165079595208], [35, -1, 1, -0.037813081905055765], [29, -9, -1, 0.043071541138921074], [25, -3, 1, 0.014259330643256707], [23, -9, -1, -0.003834316870679027], [32, -10, 1, 0.04272556009957299], [22, -14, -1, -0.02156990560673703], [26, -34, 1, -0.001304519499137909], [14, -30, -1, 0.008487759604869279], [16, -26, 1, 0.04282859997006101], [-1, -25, -1, 0.02079177486214817], [-11, -37, 1, -0.03156289574417181], [-12, -24, -1, 0.03480224363653197], [-10, -24, 1, 0.0066584125834989166], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-34, -12, -1, 0.036931087344253946], [-24, -10, 1, 0.00856447224975567], [-27, -1, -1, 0.021908009457721846], [-29, -3, 1, 0.011584545902339222], [-31, 9, -1, 0.01547097494686612], [-36, 4, 1, 0.03948848187131546], [-20, 20, -1, 0.04237532973071603], [-17, 17, 1, -0.013804835355861939], [-13, 23, -1, 0.023330818466256856], [-19, 31, 1, 0.011539974830928654], [-10, 32, -1, -0.00583029425889872], [1, 41, 1, -0.018310027597308834]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 8, "got": [33, 3, 1, -0.018838065379079304], "error": "invalid coords", "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 20, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 6, "state": [[1, 24, -1, -0.007801346881516661], [3, 34, 1, 0.028368521205241286], [21, 20, -1, 0.05090192803178728], [10, 31, 1, 0.05469415398051708], [25, 14, -1, 0.036837835392927426], [18, 13, 1, 0.008617851894918585], [26, 3, -1, 0.038816946012237376], [36, -3, 1, -0.04649937259702649], [28, -11, -1, 0.05475564371715823], [23, -4, 1, 0.005862015280886075], [21, -8, -1, -0.005268106397803578], [33, -8, 1, 0.053078420589489056], [21, -12, -1, -0.02914299170092111], [27, -36, 1, -0.002791905570150496], [13, -28, -1, 0.008799217021549363], [18, -25, 1, 0.054346336103916135], [-2, -23, -1, 0.02823380454401422], [-13, -38, 1, -0.038032384616595805], [-13, -22, -1, 0.045952731679340386], [-9, -22, 1, 0.00768852728024352], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-35, -10, -1, 0.046638417697735385], [-22, -9, 1, 0.007534357553011066], [-25, 0, -1, 0.027799943892892556], [-27, -2, 1, 0.006946361694806796], [-32, 11, -1, 0.02319653481203169], [-37, 2, 1, 0.04850551989073988], [-18, 19, -1, 0.04667576778343257], [-15, 16, 1, -0.018937086094735826], [-11, 22, -1, 0.03141647909450061], [-17, 32, 1, 0.001748885023361844], [-11, 34, -1, -0.007424447385970694], [2, 43, 1, -0.02182619353833876]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, 1], "using": [-2, 1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 20, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 7, "state": [[0, 22, -1, -0.014428969188152244], [1, 33, 1, 0.03755392809480383], [22, 18, -1, 0.06288362833790746], [8, 32, 1, 0.06536763489139172], [24, 16, -1, 0.024501054311169612], [16, 12, 1, 0.01148519826037895], [24, 4, -1, 0.03081589725432736], [37, -5, 1, -0.05464495601727758], [27, -13, -1, 0.0665951366441191], [21, -3, 1, 0.010683416916798263], [19, -7, -1, -0.007016991421165431], [34, -6, 1, 0.06313124019629518], [20, -10, -1, -0.03797585314498843], [28, -38, 1, -0.0041406439868397595], [15, -29, -1, 0.0020072532105085677], [20, -24, 1, 0.06560101343121738], [-3, -21, -1, 0.037012586838585534], [-15, -39, 1, -0.04400856143801949], [-14, -20, -1, 0.05821049091842277], [-7, -21, 1, 0.01828317959771672], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-37, -9, -1, 0.05295533094419936], [-20, -8, 1, 0.006290984856176217], [-23, 1, -1, 0.03471536867622352], [-25, -1, 1, 0.0015414040380837286], [-33, 9, -1, 0.01287628729695178], [-38, 0, 1, 0.05710012560995406], [-16, 20, -1, 0.05998697346935464], [-16, 14, 1, -0.003210183038388742], [-10, 20, -1, 0.03141647909450061], [-19, 33, 1, 0.007171211278994211], [-10, 36, -1, -0.0007472008158235632], [3, 45, 1, -0.02502362150562544]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 8, "got": [34, 1, 1, -0.028587355906408513], "error": "invalid coords", "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 20, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 8, "state": [[-1, 20, -1, -0.022380094816240426], [-1, 32, 1, 0.047347303642510684], [23, 16, -1, 0.07528617751997291], [6, 33, 1, 0.0757326265557263], [25, 18, -1, 0.018768221732122486], [14, 11, 1, 0.01506111198683739], [22, 3, -1, 0.03553022000321704], [38, -7, 1, -0.06226002165367094], [26, -15, -1, 0.07846092994422486], [19, -4, 1, 0.00024298445715383206], [17, -6, -1, -0.00919705976280956], [35, -4, 1, 0.07282062366791839], [19, -8, -1, -0.04834084480932299], [29, -40, 1, -0.0053690882769885], [14, -27, -1, 0.0018469763834292985], [22, -23, 1, 0.07649378811921209], [-4, -19, -1, 0.04745301929822996], [-17, -40, 1, -0.04953073083553675], [-15, -18, -1, 0.07158146562316312], [-6, -19, 1, 0.020809236401047693], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-39, -8, -1, 0.05873069683837927], [-19, -10, 1, 0.022838571285921205], [-21, 2, -1, 0.04291197731235229], [-24, -3, 1, 0.014970310444370577], [-31, 10, -1, 0.020164003665795023], [-36, -1, 1, 0.061519959696605675], [-14, 21, -1, 0.07379180882521665], [-14, 13, 1, -0.00791290092069123], [-9, 18, -1, 0.03141647909450061], [-17, 32, 1, 0.001748885023361844], [-8, 35, -1, 0.006611436509570285], [4, 47, 1, -0.027941509293042573]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, 1], "using": [-2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 20, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 9, "state": [[1, 19, -1, -0.006060115009865186], [-3, 31, 1, 0.05772960792976098], [24, 14, -1, 0.08797521083504939], [4, 34, 1, 0.08571876450297379], [24, 16, -1, 0.024501054311169612], [12, 10, 1, 0.01963984672265998], [20, 4, -1, 0.025683646515453483], [40, -8, 1, -0.06468351366173214], [25, -17, -1, 0.09022221539863615], [17, -3, 1, 0.005467090674338935], [15, -7, -1, 0.006294214264756634], [36, -2, 1, 0.08209832264512047], [18, -6, -1, -0.0605594707954217], [30, -42, 1, -0.006492516275343951], [13, -29, -1, 0.010908180487309169], [23, -21, 1, 0.08725932207075797], [-5, -17, -1, 0.05995547011602666], [-19, -41, 1, -0.05463685462226961], [-16, -16, -1, 0.08601043481131532], [-7, -17, 1, 0.007324328961501267], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-40, -6, -1, 0.06723461295044297], [-17, -9, 1, 0.023223933591164595], [-19, 3, -1, 0.05272390671204918], [-22, -2, 1, 0.009607567552240043], [-33, 9, -1, 0.01287628729695178], [-34, -2, 1, 0.06645140523059241], [-12, 20, -1, 0.0813648949194007], [-12, 12, 1, -0.01380483535586194], [-8, 16, -1, 0.03141647909450061], [-15, 33, 1, -0.008072002776814849], [-9, 33, -1, 0.0], [5, 49, 1, -0.03061325260358494]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 8, "got": [35, -1, 1, -0.037813081905055765], "error": "invalid coords", "using": [2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 20, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 10, "state": [[0, 17, -1, -0.014428969188152244], [-5, 30, 1, 0.06865955808634276], [25, 12, -1, 0.10079585344400488], [2, 35, 1, 0.09527251140456648], [22, 15, -1, 0.022843250279977453], [10, 9, 1, 0.025699961732525166], [18, 3, -1, 0.03081589725432736], [42, -9, 1, -0.06686358200337628], [24, -19, -1, 0.10175494665536987], [15, -4, 1, -0.008209124260928333], [13, -6, -1, 0.005622678405678573], [37, 0, 1, 0.0909311840891878], [17, -4, -1, -0.07498843998357393], [32, -43, 1, -0.0033857645420313914], [11, -28, -1, 0.018402085024298905], [25, -20, 1, 0.09764162635800826], [-6, -15, 0, 0.07498843998357395], [-21, -42, 1, -0.0593628396370644], [-17, -14, -1, 0.10136471301036026], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-41, -4, -1, 0.07545285685595503], [-15, -8, 1, 0.023710644438123794], [-17, 4, -1, 0.06457916587952363], [-20, -1, 1, 0.0031297239921759803], [-32, 11, -1, 0.02319653481203169], [-32, -3, 1, 0.0719774173956629], [-10, 21, -1, 0.09664381566996151], [-10, 11, 1, -0.021377921450046], [-7, 14, -1, 0.03141647909450061], [-14, 31, 1, -0.008459240317036551], [-10, 35, -1, -0.0019174366607363237], [6, 51, 1, -0.03306740476525482]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, 1], "using": [-2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 11, "state": [[-1, 15, -1, -0.025023621505625475], [-7, 29, 1, 0.08007098080060907], [26, 10, -1, 0.11358333899645895], [0, 36, 1, 0.10435720008007636], [24, 14, -1, 0.034038916429087726], [8, 8, 1, 0.03406881591081222], [16, 4, -1, 0.018110560421269413], [41, -7, 1, -0.060180330568250444], [23, -21, -1, 0.11294925891269947], [13, -3, 1, -0.002829123188092081], [11, -7, -1, 0.027000599855724602], [38, 2, 1, 0.09930003826747485], [16, -2, -1, -0.09197594988992229], [34, -42, 1, 0.0031000288650201964], [9, -29, -1, 0.030086187602536042], [27, -19, 1, 0.10743500190571507], [-6, -15, 0, 0.07498843998357395], [-23, -43, 1, -0.06374214534590814], [-18, -12, -1, 0.11742691390581593], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-42, -2, -1, 0.08335809799500371], [-14, -10, 1, 0.044447285705127786], [-15, 5, -1, 0.0790081350676759], [-19, -3, 1, 0.020102561183244463], [-31, 9, -1, 0.015470974946866122], [-30, -4, 1, 0.07819635718937469], [-8, 22, -1, 0.11186670050321607], [-11, 9, 1, 0.00205792335941489], [-6, 12, -1, 0.03141647909450061], [-12, 32, 1, -0.01887175155690672], [-11, 37, -1, -0.003616535201607986], [7, 53, 1, -0.035328470406592864]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 8, "got": [36, -3, 1, -0.04649937259702649], "error": "invalid coords", "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 12, "state": [[1, 14, -1, -0.0030800336882220378], [-9, 28, 1, 0.0918722433821682], [27, 8, -1, 0.12617542133997783], [-2, 37, 1, 0.11295180579929058], [26, 15, -1, 0.03480224363653197], [6, 7, 1, 0.04628744189691093], [14, 3, -1, 0.02350357817380935], [40, -5, 1, -0.053058746647514324], [22, -23, -1, 0.12371479286424535], [11, -4, 1, -0.022241594660268406], [9, -6, -1, 0.030386364397755977], [39, 4, 1, 0.10719788849315713], [15, 0, -1, -0.11176766197020506], [36, -43, 1, 0.005726109710754764], [7, -28, -1, 0.038989565188684676], [28, -17, 1, 0.1181862834683212], [-6, -15, 0, 0.07498843998357395], [-25, -44, 1, -0.06780561621741694], [-19, -10, -1, 0.13390337758614862], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-43, 0, -1, 0.0909311840891877], [-12, -9, 1, 0.048147896410321224], [-13, 6, -1, 0.0966197788063145], [-17, -2, 1, 0.013817033941190406], [-32, 7, -1, 0.004776200006030724], [-28, -5, 1, 0.08522421354161461], [-6, 23, -1, 0.12676179087340586], [-9, 8, 1, -0.00445355573522359], [-5, 10, -1, 0.03141647909450061], [-13, 34, 1, -0.01784826120874643], [-13, 36, -1, -0.012778043517398006], [8, 55, 1, -0.037417560374472254]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, 1], "using": [-2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 13, "state": [[0, 12, -1, -0.01442896918815224], [-11, 27, 1, 0.103948512569834], [28, 6, -1, 0.13842432218648593], [-4, 38, 1, 0.12104888329533894], [25, 17, -1, 0.023040958182120687], [5, 5, 1, 0.03406881591081222], [12, 4, -1, 0.00589193443517071], [38, -4, 1, -0.04995871778249412], [21, -25, -1, 0.13398343371994978], [9, -3, 1, -0.017941156607551825], [7, -7, -1, 0.06180284349225658], [40, 6, 1, 0.11462775522793262], [14, 2, -1, -0.13435127962063834], [38, -42, 1, 0.011840586452194579], [6, -30, -1, 0.04656265128286874], [29, -15, 1, 0.12905810545250884], [-6, -15, 0, 0.07498843998357395], [-27, -45, 1, -0.07158146562316309], [-20, -8, -1, 0.1504509640158936], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-44, 2, -1, 0.09816052354057604], [-10, -8, 1, 0.05311987032211584], [-12, 8, -1, 0.12138346479839193], [-15, -1, 1, 0.005773250681561032], [-33, 9, -1, 0.01287628729695178], [-26, -6, 1, 0.09319628336527767], [-4, 24, -1, 0.1410911013750893], [-7, 7, 1, -0.013804835355861939], [-4, 8, -1, 0.03141647909450061], [-11, 33, 1, -0.024763685992077393], [-11, 35, -1, -0.006089082556178955], [9, 57, 1, -0.039352932007308876]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 8, "got": [37, -5, 1, -0.05464495601727758], "error": "invalid coords", "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 14, "state": [[-1, 10, -1, -0.030291727903429034], [-13, 26, 1, 0.11616713855593269], [29, 4, -1, 0.15020611045046894], [-6, 39, 1, 0.12865209525384086], [24, 19, -1, 0.01150822692538696], [3, 4, 1, 0.0566524335612455], [10, 3, -1, 0.010713336071082899], [36, -3, 1, -0.04649937259702649], [20, -27, -1, 0.1437095556780179], [7, -4, 1, -0.04935763570205241], [5, -6, -1, 0.07623181268040882], [41, 8, 1, 0.12160046236786483], [13, 4, -1, -0.159275242439795], [40, -43, 1, 0.014041626932946385], [8, -31, -1, 0.03778386898829742], [30, -13, 1, 0.13995028037285462], [-6, -15, 0, 0.07498843998357395], [-29, -46, 1, -0.07509535702045488], [-21, -6, -1, 0.16671766841986294], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-43, 4, -1, 0.10569381095014532], [-9, -10, 1, 0.07910036823904154], [-10, 9, -1, 0.14443108971460544], [-14, -3, 1, 0.028775145800232514], [-34, 7, -1, 0.0028166075632924826], [-24, -7, 1, 0.10226736091082056], [-2, 25, -1, 0.15466999289765807], [-6, 5, 1, 0.0006241338322903398], [-3, 6, -1, 0.03141647909450061], [-9, 32, 1, -0.03233677208626149], [-12, 37, -1, -0.007538947325275673], [10, 59, 1, -0.04115043529842683]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, 1], "using": [-2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 15, "state": [[1, 9, -1, 0.0031826745504863994], [-15, 25, 1, 0.12838576454203138], [30, 2, -1, 0.16142621730515747], [-8, 40, 1, 0.135773679174577], [23, 21, -1, 0.0003139146680573614], [1, 5, 1, 0.12765233681631166], [8, 4, -1, -0.016691683215262564], [34, -2, 1, -0.042618314187869884], [19, -29, -1, 0.15286828984192294], [5, -3, 1, -0.052743400244083805], [3, -7, -1, 0.12236231428767828], [42, 10, 1, 0.1281325667384964], [12, 6, -1, -0.1855594707954217], [42, -42, 1, 0.019791712080282776], [7, -33, -1, 0.04471209581013777], [31, -11, 1, 0.15076149668012412], [-6, -15, 0, 0.07498843998357395], [-31, -47, 1, -0.07837054356103926], [-22, -4, -1, 0.18238586128696527], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-42, 6, -1, 0.11351480173962099], [-7, -11, 1, 0.10553375769728648], [-8, 10, -1, 0.17041158763153114], [-12, -2, 1, 0.02146282671971456], [-35, 9, -1, 0.010558660698210688], [-23, -9, 1, 0.11646296524701842], [0, 26, -1, 0.167375329730716], [-5, 3, 1, 0.025184729832822737], [-2, 4, -1, 0.03141647909450061], [-8, 30, 1, -0.03449571833870091], [-10, 36, -1, -0.0007472008158235632], [11, 61, 1, -0.04282388205936369]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 8, "got": [38, -7, 1, -0.06226002165367094], "error": "invalid coords", "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 16, "state": [[2, 7, -1, 0.029863797203300117], [-17, 24, 1, 0.14046203372969715], [31, 0, -1, 0.17202086962263066], [-10, 41, 1, 0.1424320917580759], [25, 22, -1, 0.0032296384952977242], [-1, 4, 1, 0.19805838109949692], [6, 3, -1, -0.016691683215262564], [32, -1, 1, -0.038239008479026185], [18, -31, -1, 0.16145252738610075], [3, -4, 1, -0.11431658308320174], [1, -6, -1, 0.16051861513662988], [43, 12, 1, 0.1342445478093721], [11, 8, -1, -0.21184369915104842], [43, -40, 1, 0.02554179722761915], [5, -32, -1, 0.05331063273703532], [32, -9, 1, 0.16139487753877035], [-6, -15, 0, 0.07498843998357395], [-33, -48, 1, -0.08142803911092668], [-23, -2, -1, 0.1972055994554534], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-41, 8, -1, 0.12160046236786475], [-5, -10, 1, 0.12193970523553788], [-6, 11, -1, 0.19832644482076695], [-10, -1, 1, 0.011041357079364591], [-36, 11, -1, 0.017697688932863942], [-21, -10, 1, 0.12783163967070849], [-2, 27, -1, 0.155607566399997], [-4, 1, 1, 0.07220559945545338], [0, 5, -1, 0.10520828791971726], [-9, 32, 1, -0.03233677208626149], [-9, 38, -1, 0.005362742892130534], [12, 63, 1, -0.044385352153603896]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 17, "state": [[3, 5, -1, 0.07158146562316309], [-19, 23, 1, 0.15226329631125632], [29, -1, -1, 0.17750679743063616], [-12, 42, 1, 0.14864996647152878], [26, 24, -1, -0.0005526191093350743], [-3, 5, 1, 0.24507925072212755], [4, 4, -1, -0.06789987439004593], [31, -3, 1, -0.04862131276627647], [17, -33, -1, 0.16946935287813483], [5, -3, 1, -0.052743400244083805], [-1, -7, -1, 0.20938646114268986], [44, 14, 1, 0.13995930692232703], [10, 10, -1, -0.23676766197020507], [44, -38, 1, 0.03141647909450059], [4, -34, -1, 0.05934069480026674], [33, -7, 1, 0.1717629480521381], [-6, -15, 0, 0.07498843998357395], [-35, -49, 1, -0.08428680245622104], [-24, 0, -1, 0.21101043481131543], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-40, 10, -1, 0.12992074927787237], [-3, -11, 1, 0.15335618433003845], [-4, 12, -1, 0.22659175271810914], [-9, -3, 1, 0.04638678953887119], [-38, 12, -1, 0.019183091937688166], [-19, -11, 1, 0.14062396678179412], [0, 28, -1, 0.167375329730716], [-3, -1, 1, 0.1624033558189214], [2, 4, -1, 0.1790000967449339], [-8, 34, 1, -0.03919265518022964], [-8, 36, -1, 0.007573086094184098], [13, 65, 1, -0.04584544828265282]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 8, "got": [40, -8, 1, -0.06468351366173214], "error": "invalid coords", "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 18, "state": [[4, 3, -1, 0.13315464846228103], [-21, 22, 1, 0.1636747190255226], [27, -2, -1, 0.18378863295334968], [-14, 43, 1, 0.15445243776654824], [25, 22, -1, 0.0032296384952977242], [-4, 3, 1, 0.3066524335612455], [6, 3, -1, -0.016691683215262564], [30, -5, 1, -0.05955126292285826], [16, -35, -1, 0.17693645580686196], [3, -4, 1, -0.11431658308320174], [-3, -6, -1, 0.2605946523174732], [45, 16, 1, 0.14530097806254944], [9, 12, -1, -0.25935127962063836], [45, -36, 1, 0.03740335581892141], [6, -35, -1, 0.050958078845698196], [34, -5, 1, 0.18179141005261246], [-6, -15, 0, 0.07498843998357395], [-37, -50, 1, -0.08696392281325423], [-25, 2, -1, 0.22371577164437337], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-38, 11, -1, 0.13577656958997517], [-1, -10, 1, 0.17986875534547772], [-2, 11, -1, 0.24917537036854243], [-7, -2, 1, 0.03947136475554022], [-39, 14, -1, 0.025353281470197185], [-17, -12, 1, 0.1549267727438227], [2, 29, -1, 0.17833418036693147], [-2, -3, 1, 0.26761164373863866], [4, 5, -1, 0.2125966441810786], [-9, 32, 1, -0.03233677208626149], [-10, 37, -1, 0.0003641983187422553], [14, 67, 1, -0.047213508654217654]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 19, "state": [[5, 1, -1, 0.20415455171734717], [-23, 21, 1, 0.17460466918210438], [25, -3, -1, 0.19102857354660552], [-16, 44, 1, 0.15986582930757637], [23, 21, -1, 0.0003139146680573614], [-5, 1, 1, 0.37765233681631166], [4, 4, -1, -0.06789987439004593], [29, -7, 1, -0.07096268563712457], [15, -37, -1, 0.18387887735739278], [5, -3, 1, -0.052743400244083805], [-5, -7, -1, 0.28551861513662985], [46, 18, 1, 0.1502940237262522], [8, 14, -1, -0.27914299170092116], [46, -34, 1, 0.04348828321902758], [5, -33, -1, 0.0540467743102468], [35, -3, 1, 0.1914213924699592], [-6, -15, 0, 0.07498843998357395], [-39, -51, 1, -0.08947479923242714], [-26, 4, -1, 0.23530532998507986], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-37, 13, -1, 0.1447061679105619], [1, -11, 1, 0.21016048324890677], [0, 10, -1, 0.27779994389289253], [-5, -1, 1, 0.026595077458588374], [-40, 16, -1, 0.031060428361657455], [-15, -13, 1, 0.17075119011002382], [4, 28, -1, 0.18995894738114927], [0, -4, 1, 0.36119516464413803], [3, 3, -1, 0.23020828791971723], [-8, 30, 1, -0.03449571833870091], [-8, 38, -1, 0.00935127962063835], [15, 69, 1, -0.04849778509896446]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 8, "got": [42, -9, 1, -0.06686358200337628], "error": "invalid coords", "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 20, "state": [[6, -1, -1, 0.2618552591674745], [-25, 20, 1, 0.1849869734693547], [23, -4, -1, 0.19942588890897614], [-18, 45, 1, 0.1649166708754981], [24, 19, -1, 0.01150822692538696], [-4, -1, 1, 0.44805838109949686], [3, 6, -1, -0.11910806556482928], [28, -9, 1, -0.08276394821868373], [14, -39, -1, 0.19032627446012637], [3, -4, 1, -0.11431658308320174], [-6, -5, -1, 0.32623181268040885], [47, 20, 1, 0.15496257552383508], [7, 16, -1, -0.2961305016072695], [47, -32, 1, 0.0496555092835829], [3, -32, -1, 0.06310183859166045], [36, -1, 1, 0.20061014853271802], [-6, -15, 0, 0.07498843998357395], [-41, -52, 1, -0.09183330956883998], [-24, 5, -1, 0.24370012628915053], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-35, 14, -1, 0.1514906548846094], [3, -10, 1, 0.2421183035996257], [2, 9, -1, 0.3126021875294245], [-4, -3, 1, 0.09759498071365454], [-38, 15, -1, 0.03033700178439808], [-13, -14, 1, 0.18799206004512473], [6, 27, -1, 0.20217757336724798], [2, -3, 1, 0.4547786855496374], [4, 1, -1, 0.3162187227310326], [-6, 29, 1, -0.04350140723508522], [-9, 40, -1, 0.007152042253438792], [16, 71, 1, -0.049705592770367124]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 8, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 21, "state": [[4, 0, -1, 0.23557103081184777], [-27, 19, 1, 0.19478034901706148], [21, -5, -1, 0.20922225227193927], [-20, 46, 1, 0.1696309936243878], [23, 21, -1, 0.0003139146680573614], [-3, -3, 1, 0.5340688159108122], [4, 4, -1, -0.06789987439004593], [27, -11, 1, -0.0948402174063495], [13, -41, -1, 0.19631075235802783], [5, -3, 1, -0.052743400244083805], [-7, -3, -1, 0.3723623142876783], [48, 22, 1, 0.15932997516186448], [6, 18, -1, -0.31055947079542173], [48, -30, 1, 0.05588786983560639], [5, -31, -1, 0.0525281663614757], [35, 1, 1, 0.20957602995719388], [-6, -15, 0, 0.07498843998357395], [-43, -53, 1, -0.09405196677303249], [-22, 6, -1, 0.25338576454203143], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-34, 16, -1, 0.16093430532661845], [5, -11, 1, 0.2636313884508005], [3, 7, -1, 0.3422404730974708], [-2, -4, 1, 0.17138678953887118], [-37, 13, -1, 0.02427594138760996], [-11, -15, 1, 0.20639502078371846], [8, 26, -1, 0.21488291020030592], [4, -4, 1, 0.48619516464413803], [5, -1, -1, 0.38662476701421783], [-4, 28, 1, -0.05338825951642749], [-11, 41, -1, 0.0006576613108530988], [17, 73, 1, -0.050843436405247494]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 8, "got": [41, -7, 1, -0.060180330568250444], "error": "invalid coords", "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 22, "state": [[5, -2, -1, 0.2961305016072695], [-29, 18, 1, 0.2039657559066241], [19, -6, -1, 0.22070300399408307], [-22, 47, 1, 0.17403385009727337], [24, 19, -1, 0.01150822692538696], [-1, -4, 1, 0.6200792507221276], [6, 3, -1, -0.016691683215262564], [26, -13, 1, -0.1070588433924482], [12, -43, -1, 0.20186523464390352], [3, -4, 1, -0.11431658308320174], [-6, -1, -1, 0.41051861513662985], [49, 24, 1, 0.1634184734152665], [5, 20, -1, -0.3227780967815205], [49, -28, 1, 0.062167041810998816], [4, -33, -1, 0.05878127726896742], [34, 3, 1, 0.21903679114484442], [-6, -15, 0, 0.07498843998357395], [-45, -54, 1, -0.09614206162369557], [-20, 7, -1, 0.2645938965312841], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-33, 18, -1, 0.17040468316131327], [7, -10, 1, 0.2929315701678619], [4, 5, -1, 0.38518830015425387], [0, -3, 1, 0.24517859836408784], [-39, 12, -1, 0.01800853803582567], [-9, -16, 1, 0.22555081021331158], [10, 25, -1, 0.2279348005261377], [2, -3, 1, 0.4547786855496374], [4, -3, -1, 0.457624670269284], [-3, 26, 1, -0.05768869756914406], [-9, 42, -1, 0.008778782294571316], [18, 75, 1, -0.051917117190362835]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 23, "state": [[6, -4, -1, 0.3291545517173472], [-31, 17, 1, 0.21254256503158261], [17, -7, -1, 0.23418791143362946], [-24, 48, 1, 0.17814900890529303], [23, 21, -1, 0.0003139146680573614], [0, -6, 1, 0.6590688159108122], [4, 4, -1, -0.06789987439004593], [25, -15, 1, -0.1192774693785469], [11, -45, -1, 0.20702229751513623], [5, -3, 1, -0.052743400244083805], [-7, 1, -1, 0.4593864611426899], [50, 26, 1, 0.16724904971773535], [4, 22, -1, -0.33314308844585505], [50, -26, 1, 0.06847384645173518], [6, -34, -1, 0.05017918648447672], [33, 5, 1, 0.2289623386864922], [-6, -15, 0, 0.07498843998357395], [-47, -55, 1, -0.09811379189644608], [-18, 8, -1, 0.2775729041851437], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-32, 20, -1, 0.17983502633386406], [9, -11, 1, 0.30486875534547775], [5, 3, -1, 0.44178950908157716], [-1, -5, 1, 0.21376211926958721], [-37, 11, -1, 0.01649282249855977], [-7, -17, 1, 0.24493308379895518], [12, 24, -1, 0.24116713855593264], [0, -4, 1, 0.36119516464413803], [6, -2, -1, 0.4064164790945006], [-5, 27, 1, -0.046828885465939656], [-7, 41, -1, 0.01546203372969716], [19, 77, 1, -0.052931823529877645]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 8, "got": [40, -5, 1, -0.053058746647514324], "error": "invalid coords", "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 24, "state": [[4, -3, -1, 0.3379874131614145], [-33, 16, 1, 0.22052433863600904], [15, -8, -1, 0.24999999999999997], [-26, 49, 1, 0.18199878071310469], [21, 20, -1, -0.0030343663741743917], [2, -7, 1, 0.7033615823022645], [6, 3, -1, -0.016691683215262564], [24, -17, 1, -0.13135373856621266], [10, -47, -1, 0.2118133806241838], [3, -4, 1, -0.11431658308320174], [-6, 3, -1, 0.5105946523174733], [51, 28, 1, 0.17084132114153164], [3, 24, -1, -0.34197594988992236], [51, -24, 1, 0.07478859084285201], [7, -32, -1, 0.04370388793757434], [32, 7, 1, 0.23930522505916466], [-6, -15, 0, 0.07498843998357395], [-49, -56, 1, -0.09997637849437457], [-16, 9, -1, 0.2925597502079578], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-31, 22, -1, 0.18916024488660169], [10, -9, 1, 0.3291003682390416], [6, 1, -1, 0.5015157155372658], [0, -3, 1, 0.24517859836408784], [-39, 10, -1, 0.010449275874820764], [-5, -18, 1, 0.2639775950634144], [14, 23, -1, 0.25439947658572754], [2, -3, 1, 0.4547786855496374], [5, -4, -1, 0.4625966441810786], [-3, 28, 1, -0.05898436726051241], [-5, 42, -1, 0.023517067023941633], [20, 79, 1, -0.05389220840415324]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 25, "state": [[5, -5, -1, 0.36057103081184777], [-35, 15, 1, 0.22793480052613774], [13, -9, -1, 0.2683962960982806], [-28, 50, 1, 0.18560393990381802], [22, 18, -1, 0.008947333931945793], [0, -6, 1, 0.6590688159108122], [4, 4, -1, -0.06789987439004593], [23, -15, 1, -0.12524298445715384], [9, -49, -1, 0.21626828916272653], [5, -3, 1, -0.052743400244083805], [-7, 5, -1, 0.5355186151366299], [52, 30, 1, 0.1742135156693248], [2, 26, -1, -0.34954903598410647], [52, -22, 1, 0.0810914330869778], [5, -33, -1, 0.0540467743102468], [31, 9, 1, 0.25000000000000006], [-6, -15, 0, 0.07498843998357395], [-51, -57, 1, -0.10173816936778045], [-14, 10, -1, 0.30972620645568866], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-29, 23, -1, 0.197648004491471], [11, -7, 1, 0.3555337576972865], [7, -1, -1, 0.5503835615433258], [-1, -5, 1, 0.21376211926958721], [-40, 12, -1, 0.016887747105106876], [-3, -19, 1, 0.2821761627907974], [16, 22, -1, 0.26745136691155935], [4, -4, 1, 0.48619516464413803], [3, -3, -1, 0.48020828791971726], [-4, 26, 1, -0.0516769819930963], [-4, 44, -1, 0.027946360542563824], [21, 81, 1, -0.054802455522985884]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 8, "got": [38, -4, 1, -0.04995871778249412], "error": "invalid coords", "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 26, "state": [[3, -6, -1, 0.41177922198663114], [-37, 14, 1, 0.23480433288193678], [11, -10, -1, 0.2894477835284466], [-30, 51, 1, 0.18898371374524275], [20, 17, -1, 0.005960862513620794], [2, -7, 1, 0.7033615823022645], [6, 3, -1, -0.016691683215262564], [22, -13, 1, -0.11820933143525658], [8, -51, -1, 0.22041491237201039], [3, -4, 1, -0.11431658308320174], [-5, 6, -1, 0.5762318126804088], [53, 32, 1, 0.17738249019138774], [1, 28, -1, -0.3560859717232962], [53, -20, 1, 0.08736275441118863], [6, -31, -1, 0.04755117859015172], [30, 11, 1, 0.2609641588089478], [-6, -15, 0, 0.07498843998357395], [-53, -58, 1, -0.10340673219994939], [-12, 11, -1, 0.32909501002798436], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-27, 24, -1, 0.20657990446854932], [10, -5, 1, 0.37193970523553793], [8, -3, -1, 0.5849000695028466], [1, -6, 1, 0.2714628267197145], [-38, 11, -1, 0.015346343067023217], [-1, -20, 1, 0.29914899998186584], [18, 21, -1, 0.28015670374461726], [2, -3, 1, 0.4547786855496374], [5, -4, -1, 0.4625966441810786], [-5, 24, 1, -0.04328218568902564], [-6, 43, -1, 0.020310130256853805], [22, 83, 1, -0.05566633608282951]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 27, "state": [[1, -7, -1, 0.4629874131614145], [-39, 13, 1, 0.24116713855593266], [9, -11, -1, 0.31288362833790745], [-32, 52, 1, 0.19215581743076782], [21, 15, -1, 0.01936880357229573], [0, -6, 1, 0.6590688159108122], [4, 4, -1, -0.06789987439004593], [20, -12, 1, -0.11927746937854689], [7, -53, -1, 0.22427909714564717], [5, -3, 1, -0.052743400244083805], [-3, 7, -1, 0.6223623142876783], [54, 34, 1, 0.18036377835228012], [0, 30, -1, -0.36176766197020516], [54, -18, 1, 0.0935835209054994], [8, -32, -1, 0.03898956518868468], [29, 13, 1, 0.2721009325094298], [-6, -15, 0, 0.07498843998357395], [-55, -59, 1, -0.10498893688678906], [-10, 12, -1, 0.3504394039994676], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-26, 26, -1, 0.21593118408918766], [11, -3, 1, 0.4033561843300385], [6, -4, -1, 0.6213834647983919], [3, -7, 1, 0.3096191275686661], [-40, 10, -1, 0.00949052275492043], [1, -21, 1, 0.3146732117041381], [20, 20, -1, 0.292375329730716], [3, -1, 1, 0.5599869734693547], [3, -3, -1, 0.48020828791971726], [-6, 22, 1, -0.03359654743614472], [-4, 42, -1, 0.027263296311256333], [23, 85, 1, -0.05648725761892141]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 8, "got": [36, -3, 1, -0.04649937259702649], "error": "invalid coords", "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 28, "state": [[-1, -6, -1, 0.5118552591674745], [-41, 12, 1, 0.24705907299110338], [7, -12, -1, 0.3379752108350494], [-34, 53, 1, 0.19513651881164137], [20, 17, -1, 0.005960862513620796], [2, -7, 1, 0.7033615823022645], [6, 3, -1, -0.016691683215262564], [18, -11, 1, -0.12057138349733854], [6, -55, -1, 0.22788462874068288], [3, -4, 1, -0.11431658308320174], [-1, 6, -1, 0.6605186151366299], [55, 36, 1, 0.18317165718665865], [-1, 32, -1, -0.3667396358819998], [55, -16, 1, 0.09973561848138614], [10, -33, -1, 0.031150244911429665], [28, 15, 1, 0.2833038440359229], [-6, -15, 0, 0.07498843998357395], [-57, -60, 1, -0.10649102882744275], [-8, 13, -1, 0.373211817460624], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-24, 27, -1, 0.225282463709826], [10, -1, 1, 0.42986875534547775], [7, -6, -1, 0.6405813179067938], [1, -6, 1, 0.2714628267197145], [-39, 8, -1, 0.0027014448170442585], [2, -19, 1, 0.3237918088252166], [22, 19, -1, 0.30400009674493383], [4, 1, 1, 0.6501847298328227], [5, -4, -1, 0.4625966441810786], [-5, 24, 1, -0.04328218568902564], [-6, 43, -1, 0.020310130256853805], [24, 87, 1, -0.05726830618464854]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 29, "state": [[-2, -4, -1, 0.5593628396370645], [-43, 11, 1, 0.2525160740558629], [5, -13, -1, 0.36358333899645895], [-36, 54, 1, 0.19794072098557577], [18, 18, -1, -0.0069154247833309816], [0, -6, 1, 0.6590688159108122], [4, 4, -1, -0.06789987439004593], [17, -9, 1, -0.11075945409764162], [5, -57, -1, 0.2312532823778772], [5, -3, 1, -0.052743400244083805], [1, 7, -1, 0.7093864611426899], [56, 38, 1, 0.18581922449382507], [-2, 34, -1, -0.3711189415908435], [56, -14, 1, 0.10580214689159811], [8, -32, -1, 0.03898956518868468], [27, 17, 1, 0.294462576882462], [-6, -15, 0, 0.07498843998357395], [-59, -61, 1, -0.10791869399553618], [-6, 14, -1, 0.3965699056067371], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-23, 29, -1, 0.23421436368690432], [11, 1, 1, 0.4601604832489068], [5, -7, -1, 0.6790841722485192], [-1, -7, 1, 0.22259498071365452], [-40, 10, -1, 0.00949052275492043], [3, -17, 1, 0.3349000695028466], [23, 17, -1, 0.31607190086946085], [3, 3, 1, 0.736195164644138], [3, -3, -1, 0.48020828791971726], [-6, 26, 1, -0.03987571941153717], [-4, 42, -1, 0.027263296311256333], [25, 89, 1, -0.05801228288005189]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 8, "got": [34, -2, 1, -0.042618314187869884], "error": "invalid coords", "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 30, "state": [[-4, -3, -1, 0.6331546484622811], [-45, 10, 1, 0.2575730860941841], [3, -14, -1, 0.3884243221864859], [-38, 55, 1, 0.20058205427984388], [19, 20, -1, -0.010995426767736061], [2, -7, 1, 0.7033615823022645], [6, 3, -1, -0.016691683215262564], [16, -7, 1, -0.09890419493016715], [4, -59, -1, 0.23440491918951084], [3, -4, 1, -0.11431658308320174], [3, 6, -1, 0.7605946523174733], [57, 40, 1, 0.18831848121942937], [-3, 36, -1, -0.3750000000000001], [57, -12, 1, 0.11176766197020507], [10, -31, -1, 0.028316084277810048], [26, 19, 1, 0.3054693866188372], [-6, -15, 0, 0.07498843998357395], [-61, -62, 1, -0.10927711669305613], [-4, 15, -1, 0.4195342759831555], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-21, 30, -1, 0.2437311279820802], [10, 3, 1, 0.4921183035996257], [3, -8, -1, 0.7206998182829385], [1, -6, 1, 0.2714628267197145], [-42, 9, -1, 0.004097505002380435], [5, -16, 1, 0.35530574959956884], [22, 15, -1, 0.3221340047940245], [1, 4, 1, 0.8222055994554534], [5, -2, -1, 0.41576775871513894], [-7, 24, 1, -0.030804641865994242], [-5, 40, -1, 0.02258361765043329], [26, 91, 1, -0.0587217355796046]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 8, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 31, "state": [[-5, -1, -1, 0.7041545517173473], [-47, 9, 1, 0.26226337013535345], [1, -15, -1, 0.41142621730515744], [-40, 56, 1, 0.20307297172444966], [17, 21, -1, -0.02360710799859356], [0, -6, 1, 0.6590688159108122], [7, 5, -1, -0.04161564603441922], [15, -5, 1, -0.08447522574201491], [3, -61, -1, 0.23735760757461213], [5, -3, 1, -0.052743400244083805], [5, 7, -1, 0.7855186151366299], [58, 42, 1, 0.19068041486468132], [-4, 38, -1, -0.37845934518546775], [58, -10, 1, 0.11761835921415142], [9, -29, -1, 0.03008618760253605], [25, 21, 1, 0.31622514726350764], [-6, -15, 0, 0.07498843998357395], [-63, -63, 1, -0.11057103081184778], [-2, 16, -1, 0.44121872273103263], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-20, 32, -1, 0.25202734184451125], [11, 5, 1, 0.5136313884508005], [1, -7, -1, 0.7552163262424593], [3, -7, 1, 0.3096191275686661], [-43, 7, -1, -0.0038153959183107955], [6, -14, 1, 0.37154065481453236], [21, 13, -1, 0.3291545517173472], [-1, 3, 1, 0.9124033558189214], [3, -3, -1, 0.48020828791971726], [-5, 25, 1, -0.044555398072360176], [-6, 38, -1, 0.017451366911559404], [27, 93, 1, -0.05939898656878262]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [32, -1, 1, -0.038239008479026185], "error": "invalid coords", "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 32, "state": [[-4, 1, -1, 0.7745605960005325], [-49, 8, 1, 0.2666181025718264], [-1, -16, -1, 0.43195513177540107], [-42, 57, 1, 0.20542484401295386], [16, 19, -1, -0.020524014932741447], [2, -7, 1, 0.7033615823022645], [6, 3, -1, -0.016691683215262564], [14, -3, 1, -0.06686358200337628], [2, -63, -1, 0.24012775679616602], [3, -4, 1, -0.11431658308320174], [6, 5, -1, 0.8262318126804089], [59, 44, 1, 0.1929150812448718], [-5, 40, -1, -0.38155937405048795], [59, -8, 1, 0.12334219596880784], [7, -28, -1, 0.03898956518868468], [24, 23, 1, 0.32664421807733823], [-6, -15, 0, 0.07498843998357395], [-65, -64, 1, -0.11180476534826982], [0, 17, -1, 0.46101043481131543], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-19, 34, -1, 0.259827056183453], [10, 7, 1, 0.542931570167862], [-1, -6, -1, 0.8040841722485192], [1, -6, 1, 0.2714628267197145], [-44, 5, -1, -0.011490504397938583], [7, -12, 1, 0.39114578439753533], [20, 11, -1, 0.33734534711134645], [-3, 2, 1, 1.0176116437386387], [5, -4, -1, 0.4625966441810786], [-7, 26, 1, -0.03411496561271575], [-7, 40, -1, 0.014802425545572442], [28, 95, 1, -0.060046156683472504]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 8, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 33, "state": [[-5, 3, -1, 0.8215814656231631], [-51, 7, 1, 0.270666180989697], [-2, -14, -1, 0.4446044872730639], [-44, 58, 1, 0.20764805133905728], [15, 21, -1, -0.03319965313895771], [0, -6, 1, 0.6590688159108122], [5, 5, -1, -0.06789987439004593], [12, -2, 1, -0.05955126292285826], [1, -65, -1, 0.24273025392913739], [5, -3, 1, -0.052743400244083805], [7, 3, -1, 0.8723623142876784], [60, 46, 1, 0.19503168287074713], [-6, 42, -1, -0.3843512796206385], [60, -6, 1, 0.12892895336500598], [9, -27, -1, 0.02677093920258597], [22, 24, 1, 0.3369454074027006], [-6, -15, 0, 0.07498843998357395], [-67, -65, 1, -0.11298228483891876], [2, 18, -1, 0.4786220785499541], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-18, 36, -1, 0.267139375263971], [11, 9, 1, 0.5548687553454779], [-3, -5, -1, 0.8638103787042078], [3, -7, 1, 0.3096191275686661], [-43, 3, -1, -0.018413172715903765], [8, -10, 1, 0.41448848187131543], [19, 9, -1, 0.3469692854475308], [-4, 0, 1, 1.111195164644138], [3, -3, -1, 0.48020828791971726], [-9, 25, 1, -0.020974998404291546], [-5, 39, -1, 0.02208155324929709], [29, 97, 1, -0.06066518645114095]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [31, -3, 1, -0.04862131276627647], "error": "invalid coords", "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 34, "state": [[-3, 4, -1, 0.8831546484622811], [-53, 6, 1, 0.2744341731231643], [-3, -12, -1, 0.46101043481131526], [-46, 59, 1, 0.20975207049707345], [13, 22, -1, -0.04697312791530596], [2, -7, 1, 0.7033615823022645], [4, 3, -1, -0.04531625673961265], [10, -1, 1, -0.049129793282508334], [0, -67, -1, 0.24517859836408776], [3, -4, 1, -0.11431658308320174], [6, 1, -1, 0.91051861513663], [61, 48, 1, 0.19703864291146117], [-7, 44, -1, -0.38687733642396943], [61, -4, 1, 0.13437024243993284], [10, -25, -1, 0.01741965958194762], [20, 25, 1, 0.34764162635800827], [-6, -15, 0, 0.07498843998357395], [-69, -66, 1, -0.11410722531200536], [4, 19, -1, 0.4940344849213932], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-17, 38, -1, 0.27398053269707334], [9, 10, 1, 0.5791003682390417], [-4, -3, -1, 0.9253835615433258], [1, -6, 1, 0.2714628267197145], [-44, 5, -1, -0.011490504397938585], [9, -8, 1, 0.4414514052305924], [18, 7, -1, 0.35834614776645707], [-3, -2, 1, 1.2047786855496374], [5, -2, -1, 0.41576775871513894], [-10, 23, 1, -0.010698083622549388], [-6, 37, -1, 0.016789144895114207], [30, 99, 1, -0.0612578546540919]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 8, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 35, "state": [[-1, 5, -1, 0.9541545517173472], [-55, 5, 1, 0.27794636054256394], [-4, -10, -1, 0.4825803404180523], [-48, 60, 1, 0.2117455563414378], [12, 24, -1, -0.05812361595811434], [0, -6, 1, 0.6590688159108122], [6, 4, -1, -0.036483395295545326], [8, 0, 1, -0.033267034567231554], [-1, -69, -1, 0.24748503027036003], [5, -3, 1, -0.052743400244083805], [7, -1, -1, 0.95938646114269], [62, 50, 1, 0.1989436741828394], [-8, 46, -1, -0.3891726812565507], [62, -2, 1, 0.13965946134140889], [12, -24, -1, 0.0041873215521526785], [18, 26, 1, 0.3586545561437197], [-6, -15, 0, 0.07498843998357395], [-71, -67, 1, -0.11518292628124448], [5, 17, -1, 0.5065369357391899], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-16, 40, -1, 0.280371713293766], [7, 11, 1, 0.6055337576972866], [-3, -1, -1, 0.9765917527181092], [-1, -7, 1, 0.22259498071365452], [-45, 7, -1, -0.004938446433231851], [10, -6, 1, 0.4710896907986387], [19, 5, -1, 0.37642098851829736], [-1, -3, 1, 1.3099869734693546], [3, -3, -1, 0.48020828791971726], [-9, 25, 1, -0.020974998404291546], [-4, 38, -1, 0.025683646515453483], [31, 101, 1, -0.061825794669989435]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 8, "got": [30, -5, 1, -0.05955126292285826], "error": "invalid coords", "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 36, "state": [[1, 4, -1, 1.0245605960005324], [-57, 4, 1, 0.28122484168790773], [-5, -8, -1, 0.510924711867307], [-50, 61, 1, 0.21363641719073623], [13, 22, -1, -0.04697312791530596], [2, -7, 1, 0.7033615823022645], [4, 3, -1, -0.04531625673961265], [6, 1, 1, -0.006982806211604839], [-2, -71, -1, 0.2496606509554244], [3, -4, 1, -0.11431658308320174], [6, -3, -1, 1.0105946523174734], [63, 52, 1, 0.2007538429413082], [-9, 48, -1, -0.3912667044039695], [63, 0, 1, 0.14479171208028277], [11, -22, -1, 0.0041873215521526785], [16, 27, 1, 0.36988923829422277], [-6, -15, 0, 0.07498843998357395], [-73, -68, 1, -0.11621245924755087], [6, 15, -1, 0.5215699056067372], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-14, 41, -1, 0.28856129863246793], [5, 10, 1, 0.621939705235538], [-4, 1, -1, 1.066789509081577], [1, -6, 1, 0.2714628267197145], [-47, 6, -1, -0.009290695328516327], [11, -4, 1, 0.5015914963824541], [20, 3, -1, 0.39367875859197127], [-3, -4, 1, 1.2587787822945713], [5, -4, -1, 0.4625966441810786], [-11, 24, 1, -0.007573086094184068], [-6, 39, -1, 0.01808043455695158], [32, 103, 1, -0.06237050889066354]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 8, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 37, "state": [[3, 5, -1, 1.071581465623163], [-59, 3, 1, 0.2842896691024724], [-6, -6, -1, 0.5470208696226306], [-52, 62, 1, 0.21543188409386582], [14, 24, -1, -0.047869765995749713], [0, -6, 1, 0.6590688159108122], [6, 4, -1, -0.036483395295545326], [5, 3, 1, 0.05274340024408379], [-3, -73, -1, 0.2517155341032775], [5, -3, 1, -0.052743400244083805], [7, -5, -1, 1.03551861513663], [64, 54, 1, 0.20247562749174144], [-10, 50, -1, -0.39318414106470584], [61, 1, 1, 0.14740057581843716], [12, -24, -1, 0.0041873215521526785], [14, 28, 1, 0.381238173794153], [-6, -15, 0, 0.07498843998357395], [-75, -69, 1, -0.1171986531184834], [7, 13, -1, 0.5396236452724443], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-13, 43, -1, 0.29420504550574095], [3, 11, 1, 0.6533561843300386], [-3, 3, -1, 1.1527999438928924], [3, -7, 1, 0.3096191275686661], [-46, 4, -1, -0.01569420707790231], [12, -2, 1, 0.5308158972543274], [21, 1, -1, 0.409802243636532], [-1, -3, 1, 1.3099869734693546], [3, -3, -1, 0.48020828791971726], [-12, 26, 1, -0.007152042253438761], [-8, 40, -1, 0.010958850636215451], [33, 105, 1, -0.06289338147504722]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 8, "got": [29, -7, 1, -0.07096268563712457], "error": "invalid coords", "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 38, "state": [[4, 3, -1, 1.133154648462281], [-61, 2, 1, 0.2871590034882568], [-7, -4, -1, 0.5893961993533466], [-54, 63, 1, 0.21713857409397772], [16, 25, -1, -0.041306416252239804], [2, -7, 1, 0.7033615823022645], [8, 3, -1, 6.938893903907228e-18], [4, 5, 1, 0.10934460917140709], [-4, -75, -1, 0.25365882757184455], [3, -4, 1, -0.11431658308320174], [5, -6, -1, 1.076231812680409], [65, 56, 1, 0.20411497176663446], [-11, 52, -1, -0.3949459319381117], [59, 2, 1, 0.15018472983282272], [13, -26, -1, 0.0041873215521526785], [12, 29, 1, 0.3925871092940832], [-6, -15, 0, 0.07498843998357395], [-77, -70, 1, -0.11814411690603185], [8, 11, -1, 0.5610864719921589], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-11, 44, -1, 0.30194161890050303], [1, 10, 1, 0.6798687553454779], [-1, 4, -1, 1.2388103787042077], [1, -6, 1, 0.2714628267197145], [-48, 3, -1, -0.019564780280993878], [13, 0, 1, 0.5571001256099541], [20, -1, -1, 0.42532645535880426], [0, -5, 1, 1.361195164644138], [5, -2, -1, 0.41576775871513894], [-10, 27, 1, -0.019518719306685937], [-7, 38, -1, 0.013382342644276651], [34, 107, 1, -0.0633956896543179]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 8, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 39, "state": [[5, 1, -1, 1.204154551717347], [-63, 1, 1, 0.2898492729273852], [-8, -2, -1, 0.633031304433946], [-56, 64, 1, 0.2187625477626032], [17, 23, -1, -0.030611995922075804], [0, -6, 1, 0.6590688159108122], [7, 5, -1, -0.04161564603441921], [3, 3, 1, 0.09173296543276846], [-5, -77, -1, 0.2554988458791677], [5, -3, 1, -0.052743400244083805], [3, -7, -1, 1.1223623142876784], [66, 58, 1, 0.20567733412682312], [-12, 54, -1, -0.3965699056067372], [57, 3, 1, 0.15316056625856983], [15, -27, -1, -0.0027281032311782857], [10, 30, 1, 0.40382179144458624], [-6, -15, 0, 0.07498843998357395], [-79, -71, 1, -0.11905126001960453], [9, 9, -1, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-10, 46, -1, 0.3068623681783755], [-1, 11, 1, 0.7101604832489069], [1, 3, -1, 1.3290081350676757], [2, -8, 1, 0.28416816355277247], [-46, 2, -1, -0.022583617650433287], [14, 2, 1, 0.5796837432603874], [21, -3, -1, 0.4399589473811493], [1, -7, 1, 1.3837787822945713], [3, -3, -1, 0.48020828791971726], [-12, 26, 1, -0.00715204225343876], [-6, 40, -1, 0.018678758591971233], [35, 109, 1, -0.0638786137756269]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 8, "got": [28, -9, 1, -0.08276394821868373], "error": "invalid coords", "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 40, "state": [[6, -1, -1, 1.2618552591674743], [-65, 0, 1, 0.29237532973071617], [-9, 0, -1, 0.6720208696226306], [-58, 65, 1, 0.22030936135600157], [16, 21, -1, -0.028293346233377027], [2, -7, 1, 0.7033615823022645], [8, 3, -1, 6.938893903907228e-18], [2, 1, 0, 0.09173296543276846], [-6, -79, -1, 0.2572431537854472], [3, -4, 1, -0.11431658308320174], [1, -6, -1, 1.16051861513663], [67, 60, 1, 0.20716773168698782], [-13, 56, -1, -0.3980713227932113], [55, 4, 1, 0.15634627400726234], [16, -25, -1, -0.012629878153721862], [8, 31, 1, 0.4148347212302977], [-6, -15, 0, 0.07498843998357395], [-81, -72, 1, -0.11992231043248613], [10, 7, -1, 0.6138103787042082], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-8, 47, -1, 0.31409814776018125], [-3, 10, 1, 0.7421183035996258], [3, 4, -1, 1.3802163262424592], [0, -7, 1, 0.24517859836408784], [-44, 1, -1, -0.025882507232156265], [12, 3, 1, 0.5960896907986388], [22, -5, -1, 0.4529427354676237], [3, -8, 1, 1.4182952902540922], [5, -4, -1, 0.4625966441810786], [-11, 28, 1, -0.01639483181379034], [-4, 41, -1, 0.026897002497483283], [36, 111, 1, -0.06434324624414395]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 41, "state": [[7, -3, -1, 1.300011560016426], [-63, -1, 1, 0.2949013865340471], [-7, 1, -1, 0.6946044872730639], [-60, 66, 1, 0.22178411398589234], [17, 19, -1, -0.015748286227398312], [0, -6, 1, 0.6590688159108122], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-7, -81, -1, 0.2588986415366606], [5, -3, 1, -0.052743400244083805], [-1, -7, -1, 1.20938646114269], [68, 62, 1, 0.20859078049456353], [-14, 58, -1, -0.39946331304009824], [53, 5, 1, 0.15976202252465335], [18, -24, -1, -0.024437251972197406], [6, 32, 1, 0.42553094018560533], [-6, -15, 0, 0.07498843998357395], [-83, -73, 1, -0.12075933096610174], [8, 8, -1, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-6, 48, -1, 0.32113947200890497], [-5, 11, 1, 0.7636313884508006], [5, 3, -1, 1.441789509081577], [-1, -9, 1, 0.2275669546254492], [-45, -1, -1, -0.03303523693392168], [13, 5, 1, 0.6155376562361259], [21, -7, -1, 0.46858352090549943], [5, -7, 1, 1.4599109362885114], [3, -3, -1, 0.48020828791971726], [-13, 29, 1, -0.008900927276800637], [-5, 43, -1, 0.023951678021998084], [37, 113, 1, -0.06479059950065484]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 42, "state": [[5, -2, -1, 1.2961305016072693], [-61, -2, 1, 0.29759165597317555], [-6, 3, -1, 0.7458126784478473], [-62, 67, 1, 0.22319149021008225], [18, 17, -1, -0.002369377445506785], [2, -7, 1, 0.7033615823022645], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-8, -83, -1, 0.2604715924140276], [3, -4, 1, -0.11431658308320174], [-3, -6, -1, 1.2605946523174734], [69, 64, 1, 0.20995073189724206], [-15, 60, -1, -0.4007572271588899], [51, 6, 1, 0.16343014765738537], [17, -22, -1, -0.02672709314121172], [4, 33, 1, 0.43583212951096767], [-6, -15, 0, 0.07498843998357395], [-85, -74, 1, -0.12156423390664743], [9, 6, -1, 0.6174269139058162], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-5, 50, -1, 0.32506842537391095], [-4, 9, 1, 0.762293983434583], [6, 1, -1, 1.5015157155372658], [1, -10, 1, 0.2610413570793646], [-44, 1, -1, -0.025882507232156265], [11, 6, 1, 0.6365736246820798], [20, -9, -1, 0.4846746222805888], [7, -6, 1, 1.4984137906302368], [2, -5, -1, 0.5446488171242956], [-11, 28, 1, -0.01639483181379034], [-3, 44, -1, 0.03154062489076635], [38, 115, 1, -0.06522161315292864]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 43, "state": [[4, -4, -1, 1.3605710308118475], [-59, -3, 1, 0.30046099035895996], [-7, 5, -1, 0.7707366412670039], [-64, 68, 1, 0.22453579844416424], [16, 16, -1, -0.006915424783330989], [3, -5, 1, 0.7450792507221276], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-9, -85, -1, 0.26196774325920197], [5, -3, 1, -0.052743400244083805], [-5, -7, -1, 1.28551861513663], [70, 66, 1, 0.21125150542836477], [-16, 62, -1, -0.40196292335927714], [49, 7, 1, 0.16737532973071606], [18, -24, -1, -0.024437251972197406], [2, 34, 1, 0.44567870299873125], [-6, -15, 0, 0.07498843998357395], [-87, -75, 1, -0.12233879414256682], [8, 4, -1, 0.6372186259860989], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-4, 52, -1, 0.328712558103089], [-6, 10, 1, 0.78174194887207], [5, -1, -1, 1.559216422987393], [3, -11, 1, 0.28755392809480385], [-42, 2, -1, -0.02192595633958019], [9, 7, 1, 0.6623084135296714], [21, -11, -1, 0.4941697057411013], [8, -4, 1, 1.5374033558189215], [0, -4, -1, 0.6052082879197173], [-12, 26, 1, -0.007152042253438759], [-4, 46, -1, 0.028570494374854087], [39, 117, 1, -0.06563716036293558]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, -1], "using": [-2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 44, "state": [[2, -5, -1, 1.4250115600164257], [-57, -4, 1, 0.3035258177735246], [-5, 6, -1, 0.8114498388107828], [-66, 69, 1, 0.2258210055799189], [14, 15, -1, -0.012401352591336488], [5, -4, 1, 0.8016804596494509], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-10, -87, -1, 0.26339233863676387], [3, -4, 1, -0.11431658308320174], [-6, -5, -1, 1.3262318126804091], [71, 68, 1, 0.2124967185256985], [-17, 64, -1, -0.40308900086364635], [47, 8, 1, 0.17162474840928926], [16, -25, -1, -0.012629878153721864], [0, 33, 1, 0.45502998261936956], [-6, -15, 0, 0.07498843998357395], [-89, -76, 1, -0.12308466098853395], [9, 2, -1, 0.6762081911747836], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-2, 53, -1, 0.33492818551078113], [-8, 11, 1, 0.7958075512415981], [7, 0, -1, 1.5277999438928924], [2, -9, 1, 0.2799808420006198], [-40, 1, -1, -0.02552099747775139], [7, 8, 1, 0.6926947779274274], [22, -13, -1, 0.5023176265987411], [9, -2, 1, 1.5763929210076062], [-2, -3, -1, 0.6987918088252166], [-10, 27, 1, -0.019518719306685937], [-3, 48, -1, 0.03244106757794562], [40, 119, 1, -0.06603805357827632]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, -1], "using": [-2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 45, "state": [[0, -4, -1, 1.4855710308118475], [-55, -5, 1, 0.3068042989188684], [-3, 7, -1, 0.8575803404180523], [-68, 70, 1, 0.22705076817380418], [16, 16, -1, -0.006915424783330989], [7, -5, 1, 0.810353044266439], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-11, -89, -1, 0.26475017926649747], [5, -3, 1, -0.052743400244083805], [-7, -3, -1, 1.3723623142876786], [72, 70, 1, 0.2136897133805701], [-18, 66, -1, -0.4041429917009213], [45, 9, 1, 0.17620819117478337], [18, -24, -1, -0.024437251972197406], [-2, 32, 1, 0.46496424477214], [-6, -15, 0, 0.07498843998357395], [-91, -77, 1, -0.12380336884164274], [7, 3, -1, 0.6465699056067372], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-1, 55, -1, 0.3380377766558267], [-10, 10, 1, 0.8207315140607547], [8, -2, -1, 1.566789509081577], [4, -8, 1, 0.3189704071893045], [-42, 2, -1, -0.02192595633958019], [5, 9, 1, 0.7263928920014066], [21, -15, -1, 0.5160911013750894], [7, -1, 1, 1.588611546993705], [-3, -1, -1, 0.8040000967449339], [-8, 28, 1, -0.0316791107754084], [-1, 49, -1, 0.03912772048652878], [41, 121, 1, -0.06642504968448507]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, -1], "using": [-2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 46, "state": [[-2, -5, -1, 1.5461305016072693], [-53, -6, 1, 0.310316486338268], [-1, 8, -1, 0.9022291575423478], [-70, 71, 1, 0.2282284605431069], [14, 15, -1, -0.012401352591336488], [5, -4, 1, 0.8016804596494509], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-12, -91, -1, 0.26604566531701207], [3, -4, 1, -0.11431658308320174], [-6, -1, -1, 1.4105186151366302], [73, 72, 1, 0.21483358119333368], [-19, 68, -1, -0.40513151900820427], [43, 10, 1, 0.18115808170346845], [19, -26, -1, -0.022460273622098247], [-4, 31, 1, 0.47545325861907056], [-6, -15, 0, 0.07498843998357395], [-93, -78, 1, -0.12449634679805838], [5, 4, -1, 0.6036220785499542], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [0, 57, -1, 0.34093118408918777], [-9, 8, 1, 0.830082793681393], [10, -3, -1, 1.5741867334317636], [3, -6, 1, 0.3189704071893045], [-44, 1, -1, -0.025882507232156265], [3, 10, 1, 0.760713336071083], [22, -17, -1, 0.5220815532492972], [5, 0, 1, 1.6111951646441383], [-4, 1, -1, 0.8941978531084019], [-10, 29, 1, -0.02312297150694776], [-2, 47, -1, 0.035606862378465706], [42, 123, 1, -0.06679885464487197]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, -1], "using": [-2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 47, "state": [[-4, -4, -1, 1.6105710308118475], [-51, -7, 1, 0.3140844784717353], [1, 9, -1, 0.9396325133612692], [-72, 72, 1, 0.22935720008007643], [16, 16, -1, -0.006915424783330989], [7, -3, 1, 0.8446282867062339], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-13, -93, -1, 0.26728283510552425], [5, -3, 1, -0.052743400244083805], [-7, 1, -1, 1.4593864611426903], [74, 74, 1, 0.2159311840891878], [-20, 70, -1, -0.4060604283616576], [42, 12, 1, 0.18908447847173515], [20, -24, -1, -0.03259190043447843], [-6, 30, 1, 0.4864464617138702], [-6, -15, 0, 0.07498843998357395], [-95, -79, 1, -0.12516492734313184], [3, 3, -1, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [2, 58, -1, 0.34641711189719326], [-10, 6, 1, 0.8597210792494394], [9, -5, -1, 1.6085071775014401], [2, -4, 1, 0.3189704071893045], [-45, 3, -1, -0.018904390116291053], [1, 11, 1, 0.792671156421802], [21, -19, -1, 0.5344242041026279], [7, 1, 1, 1.6337787822945715], [-3, 3, -1, 0.9802082879197173], [-11, 31, 1, -0.02170339122761527], [-1, 45, -1, 0.03883913523055854], [43, 125, 1, -0.06716012768600278]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, -1], "using": [-2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 19, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 48, "state": [[-5, -2, -1, 1.6750115600164257], [-49, -8, 1, 0.31813255688960596], [2, 7, -1, 0.9663136360140829], [-74, 73, 1, 0.23043987006707106], [14, 15, -1, -0.012401352591336488], [5, -2, 1, 0.8485093451153906], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-14, -95, -1, 0.2684653997000026], [3, -4, 1, -0.11431658308320174], [-6, 3, -1, 1.5105946523174736], [75, 76, 1, 0.21698517492646274], [-21, 72, -1, -0.4069348972710718], [43, 14, 1, 0.1948869497667546], [19, -26, -1, -0.022460273622098244], [-8, 29, 1, 0.4978693196158659], [-6, -15, 0, 0.07498843998357395], [-97, -80, 1, -0.12581035421463757], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [4, 57, -1, 0.35208167213199615], [-11, 4, 1, 0.8902228848332548], [7, -6, -1, 1.6405813179067938], [0, -3, 1, 0.24517859836408784], [-44, 5, -1, -0.011490504397938587], [-1, 12, 1, 0.8203324636397491], [20, -21, -1, 0.5462563881398728], [6, 3, 1, 1.6849869734693548], [-1, 4, -1, 1.0662187227310327], [-12, 33, 1, -0.02046324793936083], [-2, 43, -1, 0.034978105380529555], [44, 127, 1, -0.06750948507955919]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, -1], "using": [-2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 49, "state": [[-4, 0, -1, 1.7355710308118475], [-47, -9, 1, 0.3224872893260789], [4, 6, -1, 1.01560439052813], [-76, 74, 1, 0.23147914024932645], [15, 17, -1, -0.016849686936101414], [4, 0, 1, 0.9090688159108122], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-15, -97, -1, 0.2695967738719043], [5, -3, 1, -0.052743400244083805], [-7, 5, -1, 1.5355186151366302], [76, 78, 1, 0.21799801520832313], [-22, 74, -1, -0.4077595269025293], [42, 16, 1, 0.20272076219022264], [20, -24, -1, -0.03259190043447843], [-10, 28, 1, 0.5096239383361844], [-6, -15, 0, 0.07498843998357395], [-99, -81, 1, -0.1264337895271246], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [6, 56, -1, 0.3579186939955361], [-10, 2, 1, 0.9143150349662542], [5, -7, -1, 1.6790841722485192], [2, -4, 1, 0.3189704071893045], [-43, 3, -1, -0.018413172715903765], [-2, 10, 1, 0.8385166047044548], [18, -22, -1, 0.558238088445993], [4, 4, 1, 1.736195164644138], [1, 3, -1, 1.1564164790945006], [-13, 31, 1, -0.012774720659117344], [-4, 42, -1, 0.027263296311256336], [45, 129, 1, -0.0678475035649891]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, -1], "using": [-2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 50, "state": [[-5, 2, -1, 1.7961305016072693], [-45, -10, 1, 0.32717757336724823], [6, 5, -1, 1.061449838810783], [-78, 75, 1, 0.23247748539695262], [13, 18, -1, -0.03236638879922463], [6, 1, 1, 0.935353044266439], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-16, -99, -1, 0.2706801038019382], [3, -4, 1, -0.11431658308320174], [-5, 6, -1, 1.5762318126804091], [77, 80, 1, 0.21897199128877956], [-23, 76, -1, -0.4085384192637508], [43, 18, 1, 0.20788730195019178], [18, -23, -1, -0.027707098877703132], [-12, 27, 1, 0.5215924519931979], [-6, -15, 0, 0.07498843998357395], [-101, -82, 1, -0.12703632023515388], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [7, 54, -1, 0.3614479706204857], [-11, 0, 1, 0.9457315140607547], [3, -8, -1, 1.7206998182829385], [0, -3, 1, 0.24517859836408784], [-41, 2, -1, -0.021741535862338464], [-3, 8, 1, 0.8642002512199082], [16, -23, -1, 0.5706406376280584], [3, 6, 1, 1.7874033558189213], [-1, 4, -1, 1.0662187227310327], [-14, 29, 1, -0.004390411543697674], [-6, 43, -1, 0.020310130256853808], [46, 131, 1, -0.06817472345189511]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, -1], "using": [-2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 51, "state": [[-4, 4, -1, 1.8605710308118475], [-43, -11, 1, 0.33223458540556944], [7, 3, -1, 1.1075803404180524], [-80, 76, 1, 0.23343720206448154], [15, 17, -1, -0.016849686936101414], [4, 2, 1, 0.9828606247360289], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-17, -101, -1, 0.27171829189853713], [5, -3, 1, -0.052743400244083805], [-3, 7, -1, 1.6223623142876786], [78, 82, 1, 0.21990922904520072], [-24, 78, -1, -0.4092752424397952], [42, 20, 1, 0.21552322614103728], [19, -21, -1, -0.03906974399454248], [-14, 26, 1, 0.5336431930804985], [-6, -15, 0, 0.07498843998357395], [-103, -83, 1, -0.12761896400424225], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [8, 52, -1, 0.3652260792629522], [-10, -2, 1, 0.9771479931552552], [1, -9, -1, 1.760188300154254], [-2, -4, 1, 0.1713867895388712], [-40, 0, -1, -0.02949904243376425], [-4, 6, 1, 0.9006836465154535], [14, -24, -1, 0.5833296709431348], [1, 7, 1, 1.8386115469937048], [1, 3, -1, 1.1564164790945006], [-15, 27, 1, 0.004735356441686819], [-8, 42, -1, 0.012418946765264385], [47, 133, 1, -0.06849165143638467]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-1, -2], "using": [-1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 52, "state": [[-3, 6, -1, 1.9117792219866308], [-41, -12, 1, 0.33769158647032893], [8, 1, -1, 1.152229157542348], [-82, 77, 1, 0.23436042373486085], [13, 18, -1, -0.03236638879922463], [2, 3, 1, 1.0654852950053129], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-18, -103, -1, 0.27271401904943177], [3, -4, 1, -0.11431658308320174], [-1, 6, -1, 1.6605186151366302], [79, 84, 1, 0.22081170717226614], [-25, 80, -1, -0.4099732859598201], [43, 22, 1, 0.22005713567403778], [20, -23, -1, -0.03593499990477018], [-15, 24, 1, 0.5439338248640461], [-6, -15, 0, 0.07498843998357395], [-105, -84, 1, -0.1281826745504865], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [10, 51, -1, 0.3717470813435151], [-11, -4, 1, 1.0012401432882545], [-1, -8, -1, 1.7975916559731755], [0, -3, 1, 0.24517859836408784], [-39, -2, -1, -0.03765369089604526], [-6, 7, 1, 0.9198814996238555], [12, -25, -1, 0.5961503135520902], [0, 9, 1, 1.861195164644138], [3, 2, -1, 1.2616247670142178], [-13, 26, 1, -0.0021800683416441455], [-10, 41, -1, 0.004300438052716578], [48, 135, 1, -0.06879876316151386]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, -1], "using": [-2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 53, "state": [[-1, 5, -1, 1.9541545517173469], [-39, -13, 1, 0.34358352090549965], [9, -1, -1, 1.1896325133612695], [-84, 78, 1, 0.23524913451524715], [14, 20, -1, -0.0347153686762236], [4, 2, 1, 0.9828606247360289], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-19, -105, -1, 0.2736697645910222], [5, -3, 1, -0.052743400244083805], [1, 7, -1, 1.7093864611426903], [80, 86, 1, 0.2216812692365242], [-26, 82, -1, -0.4106355079762653], [42, 24, 1, 0.22741638234956674], [21, -25, -1, -0.033216034266768724], [-17, 23, 1, 0.5563334114806249], [-6, -15, 0, 0.07498843998357395], [-107, -85, 1, -0.12872834650295079], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [11, 49, -1, 0.37607717436851545], [-10, -6, 1, 1.03174194887207], [-3, -7, -1, 1.842240473097471], [2, -4, 1, 0.3189704071893045], [-41, -3, -1, -0.04112380944798205], [-7, 5, 1, 0.9583843539655809], [10, -26, -1, 0.6089377991045444], [-2, 10, 1, 1.8926116437386387], [4, 0, -1, 1.3552082879197171], [-11, 27, 1, -0.014398694327742824], [-9, 39, -1, 0.006279171975392453], [49, 137, 1, -0.06909650554840321]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, -1], "using": [-2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 54, "state": [[1, 4, -1, 2.024560596000532], [-37, -14, 1, 0.34994632657949554], [7, -2, -1, 1.2163136360140832], [-86, 79, 1, 0.236105181534243], [12, 19, -1, -0.04226085724283759], [2, 3, 1, 1.0654852950053129], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-20, -107, -1, 0.2745878242480798], [3, -4, 1, -0.11431658308320174], [3, 6, -1, 1.7605946523174738], [81, 88, 1, 0.22251963461638008], [-27, 84, -1, -0.41126457562165747], [43, 26, 1, 0.23134533571457275], [20, -27, -1, -0.023489912308700588], [-19, 22, 1, 0.5684052156051519], [-6, -15, 0, 0.07498843998357395], [-109, -86, 1, -0.12925681983685153], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [13, 48, -1, 0.3830258175622783], [-11, -8, 1, 1.045807551241598], [-5, -6, -1, 1.8883709747047406], [0, -3, 1, 0.24517859836408784], [-43, -4, -1, -0.04426166929472187], [-8, 3, 1, 1.0], [8, -27, -1, 0.6215298814480632], [-3, 8, 1, 1.9182952902540922], [5, -2, -1, 1.415767758715139], [-9, 26, 1, -0.022934399387734068], [-7, 40, -1, 0.014802425545572448], [50, 139, 1, -0.06938529892151171]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-1, -2], "using": [-1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 55, "state": [[3, 5, -1, 2.071581465623163], [-35, -15, 1, 0.3568158589352946], [6, -4, -1, 1.2656043905281302], [-88, 80, 1, 0.23693028617426048], [11, 17, -1, -0.04051197221947573], [0, 4, 1, 1.1590688159108122], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-21, -109, -1, 0.27547032626751683], [5, -3, 1, -0.052743400244083805], [5, 7, -1, 1.7855186151366305], [82, 90, 1, 0.22332840843937432], [-28, 86, -1, -0.41186289965667716], [42, 28, 1, 0.2383752329857822], [18, -26, -1, -0.01839629609828058], [-20, 20, 1, 0.5800299826193697], [-6, -15, 0, 0.07498843998357395], [-111, -87, 1, -0.12976888392024974], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [14, 46, -1, 0.38795205371181846], [-10, -10, 1, 1.0707315140607547], [-6, -4, -1, 1.9342164229873935], [2, -4, 1, 0.3189704071893045], [-45, -5, -1, -0.047110686172402855], [-9, 1, 1, 1.0394884818713155], [6, -28, -1, 0.6337787822945713], [-4, 6, 1, 1.9547786855496374], [3, -3, -1, 1.4802082879197171], [-7, 25, 1, -0.032521192563503186], [-9, 39, -1, 0.006279171975392453], [51, 141, 1, -0.06966553894886177]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-1, -2], "using": [-1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 56, "state": [[4, 3, -1, 2.1331546484622805], [-33, -16, 1, 0.36422632082542333], [5, -6, -1, 1.3114498388107831], [-90, 81, 1, 0.23772605425836352], [9, 16, -1, -0.05036610938668856], [-2, 3, 1, 1.2526523368163116], [8, 3, -1, 6.938893903907228e-18], [2, 1, 0, 0.09173296543276846], [-22, -111, -1, 0.2763192459443008], [3, -4, 1, -0.11431658308320174], [6, 5, -1, 1.8262318126804093], [83, 92, 1, 0.2241090906169312], [-29, 88, -1, -0.4124326643220141], [43, 30, 1, 0.24174308879118478], [17, -24, -1, -0.020107573621611773], [-21, 18, 1, 0.5922486086054685], [-6, -15, 0, 0.07498843998357395], [-113, -88, 1, -0.13026528121227898], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [16, 45, -1, 0.39530097806254944], [-8, -11, 1, 1.0956554768799114], [-7, -2, -1, 1.9835071775014406], [0, -3, 1, 0.24517859836408784], [-44, -7, -1, -0.05460871688752848], [-10, -1, 1, 1.072962884325231], [4, -29, -1, 0.6455605705585543], [-5, 4, 1, 2.0038068083827767], [1, -4, -1, 1.5662187227310325], [-5, 26, 1, -0.04573430201503095], [-11, 40, -1, -0.00033647929380111515], [52, 143, 1, -0.06993759841565216]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-1, -2], "using": [-1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 57, "state": [[5, 1, -1, 2.204154551717347], [-31, -17, 1, 0.37220809442984976], [3, -7, -1, 1.3575803404180526], [-92, 82, 1, 0.23849398529810928], [10, 14, -1, -0.033199653138957716], [-3, 1, 1, 1.3578606247360288], [7, 5, -1, -0.04161564603441921], [2, 1, 0, 0.09173296543276846], [-23, -113, -1, 0.27713641871480676], [5, -3, 1, -0.052743400244083805], [7, 3, -1, 1.8723623142876789], [84, 94, 1, 0.22486308406626618], [-30, 90, -1, -0.4129758531449887], [42, 32, 1, 0.24841379063023677], [16, -22, -1, -0.022096906803474037], [-22, 16, 1, 0.6049539454385264], [-6, -15, 0, 0.07498843998357395], [-115, -89, 1, -0.1307467106468049], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [18, 44, -1, 0.40273402758144433], [-6, -10, 1, 1.1097210792494394], [-6, 0, -1, 2.027799943892893], [-2, -4, 1, 0.1713867895388712], [-43, -5, -1, -0.04792269414248216], [-8, -2, 1, 1.0960896907986388], [2, -30, -1, 0.6567806774132429], [-3, 3, 1, 1.986195164644138], [-1, -3, -1, 1.6564164790945004], [-4, 24, 1, -0.04968764881123407], [-13, 39, -1, -0.008832861444067319], [53, 145, 1, -0.07020182884763775]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-1, -2], "using": [-1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 58, "state": [[6, -1, -1, 2.2618552591674743], [-29, -18, 1, 0.38078490355480826], [1, -8, -1, 1.4022291575423482], [-94, 83, 1, 0.23923548089745175], [11, 16, -1, -0.0360584164842521], [-5, 0, 1, 1.409068815910812], [8, 3, -1, 6.938893903907228e-18], [2, 1, 0, 0.09173296543276846], [-24, -115, -1, 0.2779235519727201], [3, -4, 1, -0.11431658308320174], [6, 1, -1, 1.9105186151366305], [85, 96, 1, 0.22559170219973826], [-31, 92, -1, -0.4134942713215597], [43, 34, 1, 0.25127321238333455], [15, -24, -1, -0.010924711867307063], [-23, 14, 1, 0.6180058357643582], [-6, -15, 0, 0.07498843998357395], [-117, -90, 1, -0.13121383073177145], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [20, 43, -1, 0.4102198098209227], [-4, -11, 1, 1.1402228848332547], [-7, 2, -1, 2.0720927102843456], [0, -3, 1, 0.24517859836408784], [-45, -6, -1, -0.050595274013184886], [-6, -3, 1, 1.1308919344351709], [0, -31, -1, 0.6673753297307161], [-2, 5, 1, 1.9217546354395598], [-3, -4, -1, 1.7076246702692837], [-3, 26, 1, -0.057688697569144076], [-15, 40, -1, -0.014724795879237994], [54, 147, 1, -0.07045856199884779]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-1, -2], "using": [-1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 59, "state": [[7, -3, -1, 2.3000115600164257], [-27, -19, 1, 0.38997031044437086], [-1, -9, -1, 1.4396325133612697], [-96, 84, 1, 0.2399518523975496], [9, 17, -1, -0.05442300525292091], [-3, -1, 1, 1.4602770070855953], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-25, -117, -1, 0.278682235744767], [5, -3, 1, -0.052743400244083805], [7, -1, -1, 1.9593864611426905], [86, 98, 1, 0.22629617575352237], [-32, 94, -1, -0.4139895651886849], [42, 36, 1, 0.2575730860941841], [14, -22, -1, -0.012218625986098713], [-24, 12, 1, 0.6312381737941531], [-6, -15, 0, 0.07498843998357395], [-119, -91, 1, -0.13166726239126852], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [22, 42, -1, 0.41772556009957296], [-2, -10, 1, 1.164315034966254], [-6, 4, -1, 2.1213834647983925], [2, -4, 1, 0.3189704071893045], [-43, -7, -1, -0.055182688949217705], [-7, -5, 1, 1.1558158972543275], [-2, -32, -1, 0.6773095918834866], [-3, 3, 1, 1.986195164644138], [-5, -3, -1, 1.7691978531084016], [-1, 27, 1, -0.07007994273169009], [-16, 42, -1, -0.015553720379223781], [55, 149, 1, -0.07070811121662966]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-1, -2], "using": [-1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 60, "state": [[5, -2, -1, 2.2961305016072693], [-25, -20, 1, 0.3997636859920776], [-2, -7, -1, 1.4663136360140836], [-98, 85, 1, 0.24064432783822373], [8, 19, -1, -0.06848860762244892], [-2, -3, 1, 1.5654852950053124], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-26, -119, -1, 0.27941395234780275], [3, -4, 1, -0.11431658308320174], [6, -3, -1, 2.010594652317474], [87, 100, 1, 0.2269776590199588], [-33, 96, -1, -0.41446323921600126], [43, 38, 1, 0.2599797826805859], [15, -20, -1, -0.02443725197219741], [-25, 10, 1, 0.6444705118239481], [-6, -15, 0, 0.07498843998357395], [-121, -92, 1, -0.13210759157451132], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [24, 41, -1, 0.42521798654540877], [-1, -12, 1, 1.1824991760309598], [-5, 6, -1, 2.167228913081045], [0, -3, 1, 0.24517859836408784], [-44, -9, -1, -0.061610516862146913], [-5, -6, 1, 1.1965290947981064], [-4, -31, -1, 0.6877986057304172], [-2, 5, 1, 1.9217546354395598], [-4, -1, -1, 1.8162187227310322], [1, 28, 1, -0.08165356741376978], [-17, 44, -1, -0.01630444567504084], [56, 151, 1, -0.07095077269560876]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-1, -2], "using": [-1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 61, "state": [[6, -4, -1, 2.329154551717347], [-23, -21, 1, 0.41014599027932797], [-4, -6, -1, 1.5156043905281307], [-100, 86, 1, 0.24131405830370972], [7, 21, -1, -0.08070723360854763], [0, -4, 1, 1.6590688159108118], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-27, -121, -1, 0.2801200851349019], [5, -3, 1, -0.052743400244083805], [7, -5, -1, 2.0355186151366307], [88, 102, 1, 0.2276372355412268], [-34, 98, -1, -0.4149166708754983], [42, 40, 1, 0.2659106536711262], [14, -22, -1, -0.012218625986098713], [-26, 8, 1, 0.6575224021497799], [-6, -15, 0, 0.07498843998357395], [-123, -93, 1, -0.1325353716533991], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [25, 39, -1, 0.43165594164939275], [1, -11, 1, 1.210160483248907], [-4, 8, -1, 2.204008135067676], [2, -4, 1, 0.3189704071893045], [-42, -8, -1, -0.05945542539921587], [-3, -7, 1, 1.242659596405376], [-6, -30, -1, 0.6987918088252167], [-3, 3, 1, 1.986195164644138], [-3, 1, -1, 1.9064164790945002], [2, 26, 1, -0.08819050315295948], [-16, 46, -1, -0.010899692563202602], [57, 153, 1, -0.07118682663092633]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-1, -2], "using": [-1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 62, "state": [[7, -6, -1, 2.3483524048257487], [-21, -22, 1, 0.42107594043590973], [-6, -5, -1, 1.5614498388107836], [-102, 87, 1, 0.24196212371315046], [5, 20, -1, -0.09292585959464635], [2, -3, 1, 1.7526523368163112], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-28, -123, -1, 0.28080192642585217], [3, -4, 1, -0.11431658308320174], [5, -6, -1, 2.0762318126804096], [89, 104, 1, 0.22827592331600083], [-35, 100, -1, -0.415351123690174], [43, 42, 1, 0.26791938736365917], [16, -21, -1, -0.025642948172584647], [-27, 6, 1, 0.6702277389828378], [-6, -15, 0, 0.07498843998357395], [-125, -94, 1, -0.13295112562808828], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [26, 37, -1, 0.4384195640531492], [3, -10, 1, 1.242118303599626], [-2, 9, -1, 2.242997700256361], [0, -3, 1, 0.24517859836408784], [-41, -6, -1, -0.0526258489071721], [-1, -8, 1, 1.2873084135296715], [-8, -29, -1, 0.7102146667272125], [-4, 1, 1, 2.0722055994554536], [-2, 3, -1, 2.0116247670142173], [0, 25, 1, -0.0759718771668608], [-18, 45, -1, -0.018184141064705634], [58, 155, 1, -0.07141653828003125]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-1, -2], "using": [-1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 63, "state": [[5, -7, -1, 2.3868552591674743], [-19, -23, 1, 0.43248736315017605], [-7, -3, -1, 1.607580340418053], [-104, 88, 1, 0.24258953810987133], [4, 18, -1, -0.09711318114679901], [3, -1, 1, 1.8578606247360283], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-29, -125, -1, 0.28146068470666596], [5, -3, 1, -0.052743400244083805], [3, -7, -1, 2.122362314287679], [90, 106, 1, 0.22889467956540724], [-36, 102, -1, -0.41576775871513916], [41, 43, 1, 0.2735803996680687], [14, -22, -1, -0.012218625986098715], [-28, 4, 1, 0.6824463649689365], [-6, -15, 0, 0.07498843998357395], [-127, -95, 1, -0.13335534815803005], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [27, 35, -1, 0.44550790808948676], [5, -11, 1, 1.2636313884508008], [0, 8, -1, 2.2777999438928926], [-2, -4, 1, 0.1713867895388712], [-42, -8, -1, -0.05945542539921587], [1, -9, 1, 1.324711769348593], [-10, -28, -1, 0.7219692854475309], [-3, -1, 1, 2.1624033558189217], [0, 4, -1, 2.1052082879197167], [-2, 26, 1, -0.06375325118076208], [-16, 44, -1, -0.013133299496783893], [59, 157, 1, -0.07164015894134217]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-1, -2], "using": [-1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 64, "state": [[3, -6, -1, 2.411779221986631], [-17, -24, 1, 0.4442886257317352], [-8, -1, -1, 1.6522291575423487], [-106, 89, 1, 0.243197254497787], [6, 19, -1, -0.08323329041187856], [4, 1, 1, 1.9480583810994963], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-30, -127, -1, 0.2820974911732153], [3, -4, 1, -0.11431658308320174], [1, -6, -1, 2.1605186151366302], [91, 108, 1, 0.22949440509983518], [-37, 104, -1, -0.4161676446653392], [39, 44, 1, 0.27936778666879725], [15, -24, -1, -0.010924711867307065], [-29, 2, 1, 0.6940711319831544], [-6, -15, 0, 0.07498843998357395], [-129, -96, 1, -0.13374850743416203], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [28, 33, -1, 0.4529147956461247], [7, -10, 1, 1.2929315701678623], [2, 7, -1, 2.322092710284345], [0, -3, 1, 0.24517859836408784], [-44, -7, -1, -0.05460871688752848], [2, -7, 1, 1.3513928920014067], [-12, -27, -1, 0.7339377991045445], [-2, -3, 1, 2.267611643738639], [2, 3, -1, 2.198791808825216], [-1, 24, 1, -0.06934425486022518], [-15, 42, -1, -0.012218625986098675], [60, 159, 1, -0.07185792685724636]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [1, -2], "using": [1, -2]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 65, "state": [[1, -7, -1, 2.4629874131614145], [-15, -25, 1, 0.45636489491940097], [-9, 1, -1, 1.68963251336127], [-108, 90, 1, 0.24378616926822866], [7, 17, -1, -0.06974838297233217], [3, 3, 1, 2.034068815910812], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-31, -129, -1, 0.2827134056857157], [5, -3, 1, -0.052743400244083805], [-1, -7, -1, 2.20938646114269], [92, 110, 1, 0.23007594832390713], [-38, 106, -1, -0.4165517668714471], [37, 45, 1, 0.2852700393135156], [17, -23, -1, -0.02332429848388587], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-131, -97, 1, -0.13413104690637379], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [30, 32, -1, 0.46079893335031386], [9, -11, 1, 1.304868755345478], [4, 6, -1, 2.371383464798392], [-2, -4, 1, 0.1713867895388712], [-45, -5, -1, -0.047110686172402855], [4, -6, 1, 1.4006836465154537], [-14, -26, -1, 0.745988540191845], [-3, -5, 1, 2.275184729832823], [4, 2, -1, 2.2814164790945], [1, 23, 1, -0.08288730195019176], [-17, 43, -1, -0.017544968022768927], [61, 161, 1, -0.07207006804814836]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 66, "state": [[-1, -8, -1, 2.5053627428921303], [-13, -26, 1, 0.46858352090549965], [-7, 2, -1, 1.7163136360140838], [-110, 91, 1, 0.24435712625597936], [8, 19, -1, -0.0684886076224489], [1, 4, 1, 2.120079250722127], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-32, -131, -1, 0.2833094221933928], [3, -4, 1, -0.11431658308320174], [-3, -6, -1, 2.2605946523174736], [93, 112, 1, 0.23064010891312423], [-39, 108, -1, -0.41692103521831936], [35, 46, 1, 0.291273929022013], [15, -24, -1, -0.010924711867307065], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-133, -98, 1, -0.13450338687897037], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [31, 30, -1, 0.4685400478273421], [10, -9, 1, 1.3291003682390419], [6, 5, -1, 2.4172289130810447], [0, -3, 1, 0.24517859836408784], [-43, -6, -1, -0.05156424190762651], [6, -5, 1, 1.4465290947981067], [-16, -25, -1, 0.7579843382618074], [-2, -3, 1, 2.267611643738639], [3, 0, -1, 2.3552082879197167], [2, 25, 1, -0.08867721399991874], [-19, 42, -1, -0.025238808982318704], [62, 163, 1, -0.07227679708361129]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 67, "state": [[0, -6, -1, 2.4855710308118475], [-11, -27, 1, 0.48080214689159834], [-6, 4, -1, 1.765604390528131], [-112, 92, 1, 0.2449109204593002], [9, 21, -1, -0.06747489557875268], [-1, 3, 1, 2.2102770070855953], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-33, -133, -1, 0.28388647368214714], [5, -3, 1, -0.052743400244083805], [-5, -7, -1, 2.2855186151366302], [94, 114, 1, 0.23118764119231958], [-40, 110, -1, -0.41727629119770526], [33, 47, 1, 0.29736461626542643], [16, -22, -1, -0.022096906803474037], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-135, -99, 1, -0.13486592598561237], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [33, 29, -1, 0.4761850340515524], [11, -7, 1, 1.3555337576972868], [7, 3, -1, 2.463359414688314], [2, -4, 1, 0.3189704071893045], [-42, -4, -1, -0.044611075853223985], [7, -3, 1, 1.4926595964053762], [-18, -24, -1, 0.769791712080283], [0, -4, 1, 2.3611951646441383], [5, -1, -1, 2.3866247670142173], [0, 26, 1, -0.07597187716686078], [-17, 41, -1, -0.02018179694399752], [63, 165, 1, -0.07247831779603793]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 68, "state": [[1, -4, -1, 2.446581465623163], [-9, -28, 1, 0.49287841607926414], [-5, 6, -1, 1.8114498388107838], [-114, 93, 1, 0.24544830145516575], [11, 20, -1, -0.05188544216396138], [-3, 2, 1, 2.3154852950053124], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-34, -135, -1, 0.2844454366922741], [3, -4, 1, -0.11431658308320174], [-6, -5, -1, 2.326231812680409], [95, 116, 1, 0.23171925724303358], [-41, 112, -1, -0.41761831418787015], [31, 48, 1, 0.3035258177735245], [18, -23, -1, -0.02770709887770314], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-137, -100, 1, -0.1352190425540981], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [34, 27, -1, 0.4841153251538934], [10, -5, 1, 1.3719397052355382], [8, 1, -1, 2.5080082318126093], [0, -3, 1, 0.24517859836408784], [-43, -6, -1, -0.05156424190762651], [8, -1, 1, 1.5373084135296717], [-20, -23, -1, 0.7812894600128558], [2, -3, 1, 2.4547786855496376], [6, -3, -1, 2.4290000967449332], [2, 25, 1, -0.08867721399991874], [-16, 43, -1, -0.014318789252072799], [64, 167, 1, -0.07267482394180938]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 69, "state": [[-1, -5, -1, 2.516987509906348], [-7, -29, 1, 0.5046796786608233], [-3, 7, -1, 1.8575803404180533], [-116, 94, 1, 0.2459699765377526], [10, 18, -1, -0.05120819117478336], [-4, 0, 1, 2.409068815910812], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-35, -137, -1, 0.284987135448213], [5, -3, 1, -0.052743400244083805], [-7, -3, -1, 2.3723623142876784], [96, 118, 1, 0.23223562976422865], [-42, 114, -1, -0.41794782705678335], [29, 49, 1, 0.3097400303888678], [19, -21, -1, -0.03906974399454248], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-139, -101, 1, -0.13556309587036192], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [36, 26, -1, 0.49138214810508135], [11, -3, 1, 1.4033561843300388], [9, -1, -1, 2.5454115876315306], [-2, -4, 1, 0.1713867895388712], [-44, -4, -1, -0.04392801162191646], [9, 1, 1, 1.5747117693485932], [-22, -22, -1, 0.7923753297307163], [3, -1, 1, 2.5599869734693548], [7, -5, -1, 2.45392405956409], [0, 24, 1, -0.07597187716686078], [-15, 45, -1, -0.008832861444067319], [65, 169, 1, -0.0728664998143239]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 70, "state": [[-3, -4, -1, 2.587987413161414], [-5, -30, 1, 0.5160911013750896], [-1, 8, -1, 1.902229157542349], [-118, 95, 1, 0.2464766136053974], [9, 16, -1, -0.05036610938668854], [-6, 1, 1, 2.382784587555185], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-36, -139, -1, 0.28551234563780176], [3, -4, 1, -0.11431658308320174], [-6, -1, -1, 2.41051861513663], [97, 120, 1, 0.2327373947083511], [-43, 116, -1, -0.4182655011720171], [27, 50, 1, 0.31598880571006455], [21, -20, -1, -0.050901928031787266], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-141, -102, 1, -0.13589842735016952], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [37, 24, -1, 0.49934950657957067], [10, -1, 1, 1.429868755345478], [10, -3, -1, 2.574186733431763], [0, -5, 1, 0.24517859836408784], [-43, -6, -1, -0.05156424190762651], [10, 3, 1, 1.6034869151488258], [-23, -20, -1, 0.8034611994485769], [4, 1, 1, 2.650184729832823], [5, -4, -1, 2.462596644181078], [-2, 25, 1, -0.06326654033380283], [-13, 44, -1, -0.003346933636061802], [66, 171, 1, -0.07305352081295674]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 71, "state": [[-4, -2, -1, 2.6617792219866305], [-3, -31, 1, 0.5270210515316714], [1, 9, -1, 1.9396325133612704], [-120, 96, 1, 0.24696884381871503], [11, 15, -1, -0.031210319957095455], [-5, -1, 1, 2.4404852950053124], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-37, -141, -1, 0.28602179787453663], [5, -3, 1, -0.052743400244083805], [-7, 1, -1, 2.4593864611426897], [98, 122, 1, 0.2332251537125927], [-44, 118, -1, -0.41857196088907367], [25, 51, 1, 0.3222530658850309], [23, -21, -1, -0.05425020907401902], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-143, -103, 1, -0.1362253616261977], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [39, 23, -1, 0.5061264454782596], [12, 0, 1, 1.445731514060755], [9, -5, -1, 2.6085071775014392], [2, -4, 1, 0.3189704071893045], [-41, -7, -1, -0.05641233843478315], [8, 4, 1, 1.6308919344351713], [-24, -18, -1, 0.8149589473811497], [3, 3, 1, 2.7361951646441383], [3, -3, -1, 2.4802082879197163], [-4, 26, 1, -0.051676981993096296], [-14, 42, -1, -0.008832861444067319], [67, 173, 1, -0.07323605397158323]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 72, "state": [[-5, 0, -1, 2.735571030811847], [-1, -32, 1, 0.5374033558189217], [2, 7, -1, 1.966313636014084], [-122, 97, 1, 0.24744726405032041], [13, 14, -1, -0.012807359218501683], [-4, -3, 1, 2.5114851982603787], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-38, -143, -1, 0.28651618087281155], [3, -4, 1, -0.11431658308320174], [-6, 3, -1, 2.510594652317473], [99, 124, 1, 0.23369947634327726], [-45, 120, -1, -0.4188677875801594], [23, 52, 1, 0.3285134476598875], [25, -20, -1, -0.06463251336126931], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-145, -104, 1, -0.1365442075574695], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [40, 21, -1, 0.5139882040668127], [11, 2, 1, 1.474356087585105], [7, -6, -1, 2.640581317906793], [0, -3, 1, 0.24517859836408784], [-39, -8, -1, -0.06169952968457275], [6, 5, 1, 1.6676711564218025], [-25, -16, -1, 0.8267663211996252], [1, 4, 1, 2.8222055994554536], [1, -4, -1, 2.5662187227310316], [-3, 28, 1, -0.058984367260512406], [-16, 43, -1, -0.014318789252072799], [68, 175, 1, -0.07341425844996859]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 73, "state": [[-4, 2, -1, 2.8093628396370636], [1, -33, 1, 0.5471967313666286], [4, 6, -1, 2.015604390528131], [-124, 98, 1, 0.24791243914458347], [14, 12, -1, 0.005303201202767723], [-3, -5, 1, 2.573058381099497], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-39, -145, -1, 0.2869961443629901], [5, -3, 1, -0.052743400244083805], [-7, 5, -1, 2.53551861513663], [100, 126, 1, 0.23416090216956964], [-46, 122, -1, -0.4191535232571706], [21, 53, 1, 0.3347506594614322], [27, -19, -1, -0.07442588890897613], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-147, -105, 1, -0.13685525916747462], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [41, 19, -1, 0.5218653602787658], [10, 4, 1, 1.5062909848561765], [5, -7, -1, 2.6790841722485186], [2, -4, 1, 0.3189704071893045], [-40, -6, -1, -0.05319561357250904], [5, 7, 1, 1.7083843539655814], [-24, -14, -1, 0.833329670943135], [-1, 3, 1, 2.9124033558189217], [-1, -3, -1, 2.6564164790944997], [-5, 27, 1, -0.04682888546593965], [-15, 41, -1, -0.013444756913463973], [69, 177, 1, -0.07358828599102374]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 74, "state": [[-5, 4, -1, 2.842959387073208], [3, -32, 1, 0.5572526215164253], [6, 5, -1, 2.0614498388107836], [-126, 99, 1, 0.24836490400405123], [15, 10, -1, 0.024501054311169623], [-1, -6, 1, 2.6327845875551854], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-40, -147, -1, 0.28746230177038895], [3, -4, 1, -0.11431658308320174], [-5, 6, -1, 2.5762318126804087], [101, 128, 1, 0.234609942681159], [-47, 124, -1, -0.419429673835612], [19, 54, 1, 0.3409458351931778], [26, -21, -1, -0.06388880408709649], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-149, -106, 1, -0.13715879651672752], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [42, 17, -1, 0.5297194425887837], [11, 6, 1, 1.5252050131328805], [3, -8, -1, 2.7206998182829376], [0, -3, 1, 0.24517859836408784], [-42, -7, -1, -0.05578327078939097], [4, 9, 1, 1.7405376562361263], [-25, -12, -1, 0.8461503135520906], [-3, 2, 1, 3.017611643738639], [-3, -2, -1, 2.761624767014217], [-4, 25, 1, -0.050721107942354314], [-13, 42, -1, -0.005398395880578001], [70, 179, 1, -0.07375828134665381]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 75, "state": [[-3, 5, -1, 2.8995605960005317], [5, -31, 1, 0.5678262937466101], [7, 3, -1, 2.107580340418053], [-128, 100, 1, 0.2488051655175635], [16, 12, -1, 0.015668192867102297], [0, -4, 1, 2.6590688159108122], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-41, -149, -1, 0.2879152326797922], [5, -3, 1, -0.052743400244083805], [-3, 7, -1, 2.622362314287678], [102, 130, 1, 0.2350470830631793], [-48, 126, -1, -0.4196967120801452], [17, 55, 1, 0.3470808687032086], [25, -19, -1, -0.0685907752293677], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-151, -107, 1, -0.1374550865149978], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [44, 16, -1, 0.5354225548616878], [10, 8, 1, 1.5531198703221163], [1, -9, -1, 2.760188300154253], [2, -4, 1, 0.3189704071893045], [-43, -9, -1, -0.06233651004656213], [2, 10, 1, 1.775683646515454], [-26, -10, -1, 0.8589377991045447], [-5, 1, 1, 3.0797786855496376], [-5, -1, -1, 2.8237918088252156], [-3, 27, 1, -0.058360233428222136], [-12, 40, -1, -0.004011459808155119], [71, 181, 1, -0.0739243826746803]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 76, "state": [[-1, 4, -1, 2.9465814656231624], [7, -30, 1, 0.5788587250262618], [8, 1, -1, 2.1522291575423482], [-130, 101, 1, 0.24923370434364836], [15, 14, -1, -0.0014294969753254963], [2, -3, 1, 2.7526523368163116], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-42, -151, -1, 0.28835548510492515], [3, -4, 1, -0.11431658308320174], [-1, 6, -1, 2.6605186151366294], [103, 132, 1, 0.2354727838403854], [-49, 128, -1, -0.4199550802672919], [15, 56, 1, 0.3531387144992385], [23, -20, -1, -0.05810673934049117], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-153, -108, 1, -0.13774438367797923], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [46, 15, -1, 0.5407632064886344], [9, 10, 1, 1.579100368239042], [-1, -8, -1, 2.797591655973174], [0, -5, 1, 0.24517859836408784], [-44, -7, -1, -0.05460871688752847], [0, 11, 1, 1.8071001256099546], [-27, -8, -1, 0.8715298814480635], [-4, -1, 1, 3.150184729832823], [-4, 1, -1, 2.894197853108401], [-1, 26, 1, -0.06985354893973353], [-11, 42, -1, 0.001607571015577145], [72, 183, 1, -0.0740867219090977]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 77, "state": [[1, 5, -1, 3.0169875099063477], [9, -29, 1, 0.5902682725055497], [9, -1, -1, 2.1896325133612695], [-132, 102, 1, 0.24965097656149537], [17, 15, -1, 0.003018837369439432], [3, -1, 1, 2.8578606247360288], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-43, -153, -1, 0.28878357758036927], [5, -3, 1, -0.052743400244083805], [1, 7, -1, 2.709386461142689], [104, 134, 1, 0.2358874824014846], [-50, 130, -1, -0.42020519259637706], [13, 57, 1, 0.3591036430282894], [24, -18, -1, -0.06960448727306394], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-155, -109, 1, -0.13802693083274256], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [48, 14, -1, 0.5457639487883211], [7, 11, 1, 1.605533757697287], [-3, -7, -1, 2.8422404730974695], [2, -4, 1, 0.3189704071893045], [-45, -9, -1, -0.060915521528264786], [-2, 12, 1, 1.8333843539655814], [-26, -6, -1, 0.8812791719753927], [-3, -3, 1, 3.2361951646441383], [-5, 3, -1, 2.9412187227310316], [0, 24, 1, -0.07597187716686077], [-10, 44, -1, 0.006807923993808425], [73, 185, 1, -0.07424542510572521]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 78, "state": [[3, 4, -1, 3.087987413161414], [11, -28, 1, 0.6019523750837869], [7, -2, -1, 2.216313636014083], [-134, 103, 1, 0.25005741520064495], [18, 13, -1, 0.01853553923256266], [4, 1, 1, 2.948058381099497], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-44, -155, -1, 0.28920000109166244], [3, -4, 1, -0.11431658308320174], [3, 6, -1, 2.7605946523174727], [105, 136, 1, 0.2362915944135176], [-51, 132, -1, -0.42044743737596224], [11, 58, 1, 0.36496144235554556], [26, -17, -1, -0.07985833723542858], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-157, -110, 1, -0.1383029597759357], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [50, 13, -1, 0.5504472502057467], [5, 10, 1, 1.6219397052355384], [-5, -6, -1, 2.888370974704739], [0, -3, 1, 0.24517859836408784], [-43, -10, -1, -0.06586541205694993], [-3, 10, 1, 1.8534869151488258], [-25, -4, -1, 0.8921245605062099], [-1, -4, 1, 3.3222055994554536], [-3, 2, -1, 2.9487918088252156], [2, 25, 1, -0.08867721399991872], [-9, 42, -1, 0.008778782294571321], [74, 187, 1, -0.07440061276513547]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 79, "state": [[4, 2, -1, 3.1617792219866305], [13, -27, 1, 0.6137918680107477], [6, -4, -1, 2.26560439052813], [-136, 104, 1, 0.2504534316594971], [17, 15, -1, 0.003018837369439432], [3, 3, 1, 3.0340688159108122], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-45, -157, -1, 0.2896052208577821], [5, -3, 1, -0.052743400244083805], [5, 7, -1, 2.7855186151366294], [106, 138, 1, 0.23668551513527772], [-52, 134, -1, -0.4206821790097131], [9, 59, 1, 0.37069956194728354], [28, -16, -1, -0.08939619935334671], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-159, -111, 1, -0.13857269188835436], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [52, 12, -1, 0.5548350263338641], [3, 11, 1, 1.653356184330039], [-6, -4, -1, 2.9342164229873915], [2, -4, 1, 0.3189704071893045], [-41, -9, -1, -0.06389003390267302], [-4, 8, 1, 1.8808919344351713], [-24, -2, -1, 0.9041429917009214], [0, -6, 1, 3.3611951646441383], [-1, 3, -1, 3.054000096744933], [1, 27, 1, -0.08186381160203149], [-10, 44, -1, 0.006807923993808425], [75, 189, 1, -0.07455240013457996]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 80, "state": [[5, 0, -1, 3.235571030811847], [15, -26, 1, 0.6256576613108534], [5, -6, -1, 2.3114498388107827], [-138, 105, 1, 0.2508394170218066], [18, 17, -1, -0.0023693774455067727], [2, 5, 1, 3.0985093451153904], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-46, -159, -1, 0.28999967797882537], [3, -4, 1, -0.11431658308320174], [6, 5, -1, 2.8262318126804082], [107, 140, 1, 0.23706962063794318], [-53, 136, -1, -0.42090975980277817], [7, 60, 1, 0.3763071980635979], [26, -17, -1, -0.07985833723542858], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-161, -112, 1, -0.1388363387091901], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [53, 10, -1, 0.5612508718669579], [1, 10, 1, 1.6798687553454783], [-7, -2, -1, 2.9835071775014383], [0, -3, 1, 0.24517859836408784], [-43, -10, -1, -0.06586541205694993], [-5, 6, 1, 1.9176711564218025], [-25, 0, -1, 0.9173753297307163], [1, -4, 1, 3.400184729832823], [0, 5, -1, 3.1052082879197163], [0, 25, 1, -0.07597187716686078], [-8, 45, -1, 0.014373668654209623], [76, 191, 1, -0.07470089749048293]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 81, "state": [[6, -2, -1, 3.2867792219866305], [17, -25, 1, 0.6374189467652648], [3, -7, -1, 2.357580340418052], [-140, 106, 1, 0.25121574327949453], [19, 19, -1, -0.006915424783330977], [0, 4, 1, 3.1590688159108122], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-47, -161, -1, 0.29038379096046457], [5, -3, 1, -0.052743400244083805], [7, 3, -1, 2.8723623142876775], [108, 142, 1, 0.23744426894036252], [-54, 138, -1, -0.4211305016072697], [5, 61, 1, 0.38177532363721983], [28, -18, -1, -0.08108968553344288], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-163, -113, 1, -0.13909410247298742], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [54, 8, -1, 0.5675229368072969], [-1, 11, 1, 1.7101604832489072], [-6, 0, -1, 3.027799943892891], [2, -4, 1, 0.3189704071893045], [-42, -8, -1, -0.059455425399215854], [-6, 4, 1, 1.9635166047044554], [-23, -1, -1, 0.9104599049473854], [3, -3, 1, 3.4861951646441383], [2, 6, -1, 3.1564164790944997], [1, 23, 1, -0.08288730195019174], [-10, 46, -1, 0.008306513819903851], [77, 193, 1, -0.07484621040294488]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 82, "state": [[7, -4, -1, 3.318195701081131], [19, -24, 1, 0.6489516780219985], [1, -8, -1, 2.4022291575423473], [-142, 107, 1, 0.25158276446934913], [21, 20, -1, -0.0030343663741743856], [-2, 3, 1, 3.2526523368163116], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-48, -163, -1, 0.2907579571256521], [3, -4, 1, -0.11431658308320174], [6, 1, -1, 2.910518615136629], [109, 144, 1, 0.23780980106577024], [-55, 140, -1, -0.4213447073232758], [3, 62, 1, 0.3870966681991712], [27, -20, -1, -0.07055182693656076], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-165, -114, 1, -0.13934617661208037], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [55, 6, -1, 0.5736372144657828], [-3, 10, 1, 1.7421183035996262], [-4, 1, -1, 3.0667895090815755], [0, -5, 1, 0.24517859836408784], [-44, -9, -1, -0.0616105168621469], [-8, 3, 1, 2.000000000000001], [-22, 1, -1, 0.9246046691821047], [5, -2, 1, 3.5506356938487165], [3, 4, -1, 3.207624670269283], [3, 24, 1, -0.09576358924714355], [-8, 47, -1, 0.015542293401709595], [78, 195, 1, -0.0749884399835739]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 83, "state": [[6, -6, -1, 3.360571030811847], [21, -23, 1, 0.6601459902793281], [-1, -9, -1, 2.4396325133612686], [-144, 108, 1, 0.2519408177305097], [20, 22, -1, -0.014488510877515058], [-3, 1, 1, 3.3578606247360288], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-49, -165, -1, 0.2911225539230571], [5, -3, 1, -0.052743400244083805], [7, -1, -1, 2.9593864611426888], [110, 146, 1, 0.23816654202611237], [-56, 142, -1, -0.42155266226994725], [1, 63, 1, 0.39226565527695195], [25, -21, -1, -0.06082570497849262], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-167, -115, 1, -0.13959274622705323], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [56, 4, -1, 0.5795822485892574], [-5, 11, 1, 1.7636313884508008], [-3, 3, -1, 3.152799943892891], [2, -4, 1, 0.3189704071893045], [-43, -7, -1, -0.05518268894921769], [-9, 1, 1, 2.039488481871316], [-20, 2, -1, 0.9332380884459931], [3, -1, 1, 3.5599869734693548], [2, 6, -1, 3.1564164790944997], [2, 22, 1, -0.09040084635501301], [-6, 48, -1, 0.022583617650433298], [79, 197, 1, -0.07512768311785595]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 84, "state": [[4, -7, -1, 3.402946360542563], [23, -22, 1, 0.670911524230874], [-2, -7, -1, 2.4663136360140823], [-146, 109, 1, 0.2522902242890118], [22, 21, -1, -0.0032148140781375414], [-4, -1, 1, 3.448058381099497], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-50, -167, -1, 0.29147794014082945], [3, -4, 1, -0.11431658308320174], [6, -3, -1, 3.0105946523174723], [111, 148, 1, 0.23851480173962103], [-57, 144, -1, -0.42175463543956004], [-1, 64, 1, 0.3972783057197581], [26, -23, -1, -0.05675290196925416], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-169, -116, 1, -0.13983398852755516], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [58, 3, -1, 0.5827063614942883], [-7, 10, 1, 1.7929315701678623], [-1, 4, -1, 3.238810378704206], [0, -3, 1, 0.24517859836408784], [-41, -6, -1, -0.05262584890717208], [-10, -1, 1, 2.0729628843252317], [-18, 3, -1, 0.943659558086343], [4, 1, 1, 3.650184729832823], [3, 4, -1, 3.207624670269283], [3, 20, 1, -0.09966844830560556], [-8, 47, -1, 0.015542293401709597], [80, 199, 1, -0.07526403268317522]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 85, "state": [[2, -8, -1, 3.4465814656231624], [25, -21, 1, 0.6811801650865784], [-4, -6, -1, 2.515604390528129], [-148, 110, 1, 0.2526312903751197], [24, 22, -1, 3.0357660829594124e-18], [-3, -3, 1, 3.5340688159108122], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-51, -169, -1, 0.2918244570334898], [5, -3, 1, -0.052743400244083805], [7, -5, -1, 3.035518615136629], [112, 150, 1, 0.238854875886788], [-58, 146, -1, -0.42195088064601155], [-2, 62, 1, 0.39992396281915676], [25, -25, -1, -0.04702086962263066], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-171, -117, 1, -0.1400700732456121], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [59, 1, -1, 0.5882339009473011], [-9, 11, 1, 1.804868755345478], [0, 6, -1, 3.277799943892891], [2, -4, 1, 0.3189704071893045], [-43, -7, -1, -0.05518268894921769], [-8, -2, 1, 2.0960896907986397], [-16, 4, -1, 0.956364894919401], [3, 3, 1, 3.7361951646441383], [4, 2, -1, 3.2814164790944997], [2, 18, 1, -0.0935835209054994], [-10, 48, -1, 0.00968563825288093], [81, 201, 1, -0.07539757775350489]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 86, "state": [[0, -7, -1, 3.485571030811847], [27, -20, 1, 0.6909062870446465], [-6, -5, -1, 2.561449838810782], [-150, 111, 1, 0.25296430807867], [25, 20, -1, 0.01069621895530766], [-1, -4, 1, 3.6200792507221276], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-52, -171, -1, 0.2921624293690274], [3, -4, 1, -0.11431658308320174], [5, -6, -1, 3.076231812680408], [113, 152, 1, 0.2391870467094448], [-59, 148, -1, -0.4221416375779499], [-3, 60, 1, 0.40274283770837105], [26, -27, -1, -0.044018302437462076], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-173, -118, 1, -0.14030116302340134], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [60, -1, -1, 0.5935835209054993], [-10, 9, 1, 1.8291003682390419], [2, 7, -1, 3.3220927102843434], [0, -3, 1, 0.24517859836408784], [-42, -9, -1, -0.06309558986990892], [-6, -3, 1, 2.1308919344351716], [-14, 5, -1, 0.971969285447531], [4, 1, 1, 3.650184729832823], [3, 0, -1, 3.3552082879197163], [4, 17, 1, -0.11275109915349188], [-8, 47, -1, 0.015542293401709597], [82, 203, 1, -0.0755284037917085]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 87, "state": [[-2, -8, -1, 3.5245605960005317], [29, -19, 1, 0.7000650212085515], [-7, -3, -1, 2.607580340418051], [-152, 112, 1, 0.25328955614719895], [26, 18, -1, 0.021709148741019105], [0, -6, 1, 3.6590688159108122], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-53, -173, -1, 0.2924921664026451], [5, -3, 1, -0.052743400244083805], [3, -7, -1, 3.122362314287677], [114, 154, 1, 0.23951158375725645], [-60, 150, -1, -0.42232713276562706], [-4, 58, 1, 0.40575056271649834], [25, -29, -1, -0.03525310629191165], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-175, -119, 1, -0.14052741377729955], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [59, -3, -1, 0.5990168447174314], [-11, 7, 1, 1.8555337576972868], [4, 6, -1, 3.3713834647983902], [2, -4, 1, 0.3189704071893045], [-43, -7, -1, -0.055182688949217684], [-7, -5, 1, 2.155815897254328], [-12, 6, -1, 0.991167138555933], [3, 3, 1, 3.7361951646441383], [4, 2, -1, 3.2814164790944997], [3, 19, 1, -0.1008958399860174], [-9, 45, -1, 0.010958850636215461], [83, 205, 1, -0.07565659283031488]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 88, "state": [[-1, -6, -1, 3.511855259167474], [31, -18, 1, 0.7086492587527293], [-8, -1, -1, 2.6522291575423464], [-154, 113, 1, 0.2536073007312151], [24, 17, -1, 0.019997871217687913], [2, -7, 1, 3.7033615823022648], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-54, -175, -1, 0.2928139627830098], [3, -4, 1, -0.11431658308320174], [1, -6, -1, 3.1605186151366285], [115, 156, 1, 0.2398287445855722], [-61, 152, -1, -0.4225075804695902], [-5, 56, 1, 0.40896439333683343], [24, -27, -1, -0.03766959000199231], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-177, -120, 1, -0.1407489750398693], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [58, -5, -1, 0.6046176006104349], [-12, 5, 1, 1.8828985558717537], [6, 5, -1, 3.417228913081043], [0, -5, 1, 0.24517859836408784], [-45, -8, -1, -0.057500703510270645], [-5, -6, 1, 2.196529094798107], [-10, 7, -1, 1.0145753858378237], [1, 4, 1, 3.8222055994554536], [3, 0, -1, 3.3552082879197163], [5, 18, 1, -0.11909440771340037], [-11, 46, -1, 0.005018065698253527], [84, 207, 1, -0.07578222364156428]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 89, "state": [[0, -4, -1, 3.485571030811847], [33, -17, 1, 0.7166660842447634], [-9, 1, -1, 2.6896325133612677], [-156, 114, 1, 0.2539177960806089], [26, 18, -1, 0.021709148741019105], [0, -6, 1, 3.6590688159108122], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-55, -177, -1, 0.2931280993963455], [5, -3, 1, -0.052743400244083805], [-1, -7, -1, 3.2093864611426883], [116, 158, 1, 0.24013877540824655], [-62, 154, -1, -0.4226831834984702], [-6, 54, 1, 0.4124033558189215], [22, -28, -1, -0.028013165698655827], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-179, -121, 1, -0.14096599028131837], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [56, -6, -1, 0.607918693995536], [-11, 3, 1, 1.9033561843300388], [7, 3, -1, 3.463359414688312], [-1, -3, 1, 0.19397040718930444], [-44, -10, -1, -0.06506644817067188], [-4, -8, 1, 2.233308316784738], [-8, 8, -1, 1.0423753297307163], [-1, 3, 1, 3.9124033558189217], [5, -1, -1, 3.386624767014217], [3, 17, 1, -0.10377182105975337], [-12, 44, -1, 7.806255641895632e-18], [85, 209, 1, -0.07590537189745866]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 90, "state": [[-2, -5, -1, 3.546130501607269], [35, -16, 1, 0.7241331871734905], [-7, 2, -1, 2.7163136360140814], [-158, 115, 1, 0.2542212851958535], [24, 17, -1, 0.019997871217687913], [2, -7, 1, 3.7033615823022648], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-56, -179, -1, 0.2934348441532334], [3, -4, 1, -0.11431658308320174], [-3, -6, -1, 3.260594652317472], [117, 160, 1, 0.24044191170874465], [-63, 156, -1, -0.42285413396236404], [-7, 52, 1, 0.41608839058532227], [21, -30, -1, -0.019220925729738048], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-181, -122, 1, -0.14117859721184495], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [55, -8, -1, 0.6139197752755077], [-10, 1, 1, 1.929868755345478], [8, 1, -1, 3.5080082318126076], [-3, -4, 1, 0.14276221601452113], [-46, -9, -1, -0.06024960515026246], [-3, -10, 1, 2.2607133360710834], [-6, 9, -1, 1.073791808825217], [-3, 2, 1, 4.017611643738639], [4, -3, -1, 3.457624670269283], [4, 19, 1, -0.10899592727693849], [-11, 46, -1, 0.005018065698253527], [86, 211, 1, -0.07602611032049454]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 91, "state": [[-4, -6, -1, 3.5791545517173464], [37, -15, 1, 0.7310756087240213], [-6, 4, -1, 2.7656043905281282], [-160, 116, 1, 0.2545180004373476], [26, 18, -1, 0.021709148741019105], [0, -8, 1, 3.6590688159108122], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-57, -181, -1, 0.29373445272255955], [5, -3, 1, -0.052743400244083805], [-5, -7, -1, 3.2855186151366285], [118, 162, 1, 0.24073837881257387], [-64, 158, -1, -0.4230206139676407], [-8, 50, 1, 0.42004248130478933], [19, -29, -1, -0.01433117814479553], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-183, -123, 1, -0.1413869280661752], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [53, -9, -1, 0.6177021232917737], [-11, -1, 1, 1.960160483248907], [7, -1, -1, 3.5503835615433235], [-2, -6, 1, 0.19397040718930444], [-44, -10, -1, -0.06506644817067188], [-1, -11, 1, 2.2926711564218025], [-4, 10, -1, 1.1068158589352945], [-4, 0, 1, 4.111195164644139], [2, -4, -1, 3.5314164790944997], [5, 21, 1, -0.11317325981616938], [-13, 47, -1, -0.000572497326066991], [87, 213, 1, -0.07614450882570309]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 92, "state": [[-5, -4, -1, 3.6281826745504855], [39, -14, 1, 0.7375230058267549], [-5, 6, -1, 2.811449838810781], [-162, 117, 1, 0.25480816409597], [25, 16, -1, 0.027475566685577837], [-1, -6, 1, 3.6327845875551854], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-58, -183, -1, 0.2940271692166642], [3, -4, 1, -0.11431658308320174], [-6, -5, -1, 3.3262318126804074], [119, 164, 1, 0.24102839242383503], [-65, 160, -1, -0.42318279625840444], [-7, 52, 1, 0.41608839058532227], [21, -28, -1, -0.024437251972197385], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-185, -124, 1, -0.14159110987149617], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [51, -10, -1, 0.6217470813435151], [-10, -3, 1, 1.992118303599626], [6, -3, -1, 3.601591752718107], [0, -7, 1, 0.24517859836408784], [-43, -8, -1, -0.05877455279106483], [1, -12, 1, 2.3203324636397498], [-2, 9, -1, 1.1325730860941843], [-3, -2, 1, 4.204778685549638], [0, -3, -1, 3.6052082879197163], [6, 23, 1, -0.11658541602417093], [-15, 46, -1, -0.007792647869837217], [88, 215, 1, -0.07626063465457612]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 93, "state": [[-4, -2, -1, 3.66177922198663], [41, -13, 1, 0.7435074837246564], [-3, 7, -1, 2.85758034041805], [-164, 118, 1, 0.25509198892766805], [26, 18, -1, 0.021709148741019105], [1, -7, 1, 3.6816524335612453], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-59, -185, -1, 0.2943132268314012], [5, -3, 1, -0.052743400244083805], [-7, -3, -1, 3.3723623142876766], [120, 166, 1, 0.241312159128462], [-66, 162, -1, -0.42334084480932327], [-8, 50, 1, 0.42004248130478933], [22, -26, -1, -0.033788531592835715], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-187, -125, 1, -0.14179126469989695], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [49, -11, -1, 0.6260771743685154], [-11, -5, 1, 2.0136313884508006], [4, -4, -1, 3.6527999438928904], [2, -8, 1, 0.28416816355277247], [-42, -6, -1, -0.05208266008419753], [2, -10, 1, 2.338516604704455], [0, 8, -1, 1.1673753297307163], [-1, -3, 1, 4.309986973469355], [2, -4, -1, 3.5314164790944997], [8, 22, 1, -0.1314805063943607], [-17, 47, -1, -0.012861240029993505], [89, 217, 1, -0.07637455250141265]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 94, "state": [[-5, 0, -1, 3.7355710308118466], [43, -12, 1, 0.7490619660105321], [-1, 8, -1, 2.9022291575423456], [-166, 119, 1, 0.2553696786546699], [27, 20, -1, 0.016615532530599116], [-1, -6, 1, 3.6327845875551854], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-60, -187, -1, 0.29459284844449757], [3, -4, 1, -0.11431658308320174], [-6, -1, -1, 3.410518615136628], [121, 168, 1, 0.24158987686651212], [-67, 164, -1, -0.42349491537406253], [-9, 48, 1, 0.42429075451404713], [23, -24, -1, -0.043635105080599264], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-189, -126, 1, -0.14198750990634848], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [48, -13, -1, 0.6330258175622783], [-10, -7, 1, 2.042931570167862], [2, -3, -1, 3.684216422987391], [0, -7, 1, 0.24517859836408784], [-43, -8, -1, -0.05877455279106483], [3, -8, 1, 2.3642002512199087], [-2, 7, -1, 1.123082563339264], [1, -4, 1, 4.400184729832823], [0, -3, -1, 3.6052082879197163], [9, 20, 1, -0.14327116971673348], [-18, 45, -1, -0.01818414106470563], [90, 219, 1, -0.07648632463258034]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 95, "state": [[-4, 2, -1, 3.809362839637063], [45, -11, 1, 0.7542190288817648], [1, 9, -1, 2.939632513361267], [-168, 120, 1, 0.2556414284357031], [28, 22, -1, 0.012092279140643855], [0, -8, 1, 3.6590688159108122], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-61, -189, -1, 0.2948662471753219], [5, -3, 1, -0.052743400244083805], [-7, 1, -1, 3.459386461142688], [122, 170, 1, 0.2418617353756829], [-68, 166, -1, -0.42364515599314684], [-10, 46, 1, 0.4288605279910951], [24, -22, -1, -0.053936294405961635], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-191, -127, 1, -0.142179958353172], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [47, -15, -1, 0.6400990390577077], [-11, -9, 1, 2.054868755345478], [4, -4, -1, 3.6527999438928904], [2, -8, 1, 0.28416816355277247], [-44, -6, -1, -0.051068948040501265], [4, -6, 1, 2.400683646515454], [0, 6, -1, 1.1673753297307163], [3, -3, 1, 4.486195164644139], [2, -4, -1, 3.5314164790944997], [11, 19, 1, -0.1594957183387009], [-19, 47, -1, -0.018767123596837725], [91, 221, 1, -0.076596010999151]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 96, "state": [[-3, 4, -1, 3.8831546484622796], [47, -10, 1, 0.7590101119908125], [2, 7, -1, 2.9663136360140805], [-170, 121, 1, 0.2559074253074095], [27, 24, -1, 0.002435854837307355], [-1, -6, 1, 3.6327845875551854], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-62, -191, -1, 0.29513362690890654], [3, -4, 1, -0.11431658308320174], [-6, 3, -1, 3.5105946523174714], [123, 172, 1, 0.24212791660805902], [-69, 168, -1, -0.4237917074647029], [-11, 44, 1, 0.43378127726896754], [25, -24, -1, -0.05026847886681792], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-193, -128, 1, -0.14236871862187925], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [45, -16, -1, 0.6453009780625494], [-9, -10, 1, 2.079100368239042], [2, -3, -1, 3.684216422987391], [0, -7, 1, 0.24517859836408784], [-45, -4, -1, -0.04360906426713804], [6, -7, 1, 2.419881499623856], [1, 8, -1, 1.1871670418109992], [1, -4, 1, 4.400184729832823], [0, -3, -1, 3.6052082879197163], [13, 18, 1, -0.17552091315096716], [-17, 48, -1, -0.011798138343345668], [92, 223, 1, -0.076703669343334]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 97, "state": [[-1, 5, -1, 3.9541545517173455], [49, -9, 1, 0.7634650205293552], [4, 6, -1, 3.0156043905281273], [-172, 122, 1, 0.256167848598977], [29, 25, -1, 0.004852338547388018], [1, -7, 1, 3.6816524335612453], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-63, -193, -1, 0.2953951827868371], [5, -3, 1, -0.052743400244083805], [-7, 5, -1, 3.535518615136628], [124, 174, 1, 0.24238859512193778], [-70, 170, -1, -0.4239347037812041], [-12, 42, 1, 0.43908447847173526], [23, -23, -1, -0.047020869622630655], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-195, -129, 1, -0.14255389521320067], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [43, -17, -1, 0.6508514818426727], [-7, -11, 1, 2.105533757697287], [4, -4, -1, 3.6527999438928904], [1, -9, 1, 0.2627902421027265], [-43, -3, -1, -0.040584912151624714], [7, -5, 1, 2.4583843539655814], [3, 7, -1, 1.2318158589352948], [3, -3, 1, 4.486195164644139], [2, -4, -1, 3.5314164790944997], [14, 16, 1, -0.19037722484938757], [-18, 50, -1, -0.012621549031853169], [93, 225, 1, -0.07680935529910254]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 98, "state": [[1, 4, -1, 4.024560596000531], [51, -8, 1, 0.767611643738639], [6, 5, -1, 3.06144983881078], [-174, 123, 1, 0.25642287032184624], [27, 24, -1, 0.002435854837307355], [-1, -6, 1, 3.6327845875551854], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-64, -195, -1, 0.2956511016674063], [3, -4, 1, -0.11431658308320174], [-5, 6, -1, 3.576231812680407], [125, 176, 1, 0.24264393845043764], [-71, 172, -1, -0.424074272535043], [-14, 43, 1, 0.44488694976675475], [22, -25, -1, -0.03687580634400195], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-197, -130, 1, -0.14273558873605807], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [42, -19, -1, 0.6585453228022224], [-5, -10, 1, 2.121939705235538], [2, -3, -1, 3.684216422987391], [3, -10, 1, 0.291565387902959], [-41, -2, -1, -0.037256549005190015], [8, -3, 1, 2.5000000000000004], [5, 6, -1, 1.2779463605425643], [1, -4, 1, 4.400184729832823], [0, -3, -1, 3.6052082879197163], [12, 17, 1, -0.17379852430072942], [-19, 48, -1, -0.01761164373863863], [94, 227, 1, -0.07691312248737792]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 99, "state": [[3, 5, -1, 4.0715814656231615], [53, -7, 1, 0.7714758285122758], [7, 3, -1, 3.1075803404180493], [-176, 124, 1, 0.2566726555362072], [29, 25, -1, 0.004852338547388018], [1, -7, 1, 3.6816524335612453], [5, 5, -1, -0.06789987439004593], [2, 1, 0, 0.09173296543276846], [-65, -197, -1, 0.29590156255723626], [5, -3, 1, -0.052743400244083805], [-3, 7, -1, 3.622362314287676], [126, 178, 1, 0.24289410744846476], [-72, 174, -1, -0.42421053529549174], [-13, 45, 1, 0.4395512071721976], [20, -24, -1, -0.03259190043447841], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-199, -131, 1, -0.14291389608618585], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [41, -21, -1, 0.6662681379896285], [-3, -11, 1, 2.153356184330039], [4, -4, -1, 3.6527999438928904], [2, -8, 1, 0.28416816355277247], [-43, -3, -1, -0.040584912151624714], [9, -1, 1, 2.5394884818713157], [7, 5, -1, 1.3186595580863432], [3, -3, 1, 4.486195164644139], [2, -4, -1, 3.5314164790944997], [10, 18, 1, -0.1566791107754084], [-21, 47, -1, -0.02450105431116957], [95, 229, 1, -0.07701502260611175]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 100, "state": [[4, 3, -1, 4.13315464846228], [55, -6, 1, 0.7750813601073115], [8, 1, -1, 3.1522291575423447], [-178, 125, 1, 0.25691736269586984], [31, 24, -1, 0.013232338029794946], [-1, -6, 1, 3.6327845875551854], [3, 4, -1, -0.0904834920404792], [2, 1, 0, 0.09173296543276846], [-66, -199, -1, 0.2961467370163947], [3, -4, 1, -0.11431658308320174], [-1, 6, -1, 3.6605186151366276], [127, 180, 1, 0.24313925661949173], [-73, 176, -1, -0.42434360795937437], [-14, 43, 1, 0.44488694976675475], [18, -23, -1, -0.02770709887770311], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-201, -132, 1, -0.14308891061505158], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [39, -22, -1, 0.6726741185424926], [-1, -10, 1, 2.179868755345478], [2, -3, -1, 3.684216422987391], [4, -7, 1, 0.3278032686333718], [-42, -1, -1, -0.03328773002155012], [10, 1, 1, 2.5729628843252312], [6, 3, -1, 1.3435835209054998], [5, -4, 1, 4.503806808382778], [0, -3, -1, 3.6052082879197163], [9, 20, 1, -0.14327116971673348], [-22, 49, -1, -0.024788856787864987], [96, 231, 1, -0.07711510551558168]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 101, "state": [[5, 1, -1, 4.2041545517173455], [57, -5, 1, 0.7784500137445058], [9, -1, -1, 3.189632513361266], [-180, 126, 1, 0.25715714397296896], [29, 25, -1, 0.004852338547388018], [1, -7, 1, 3.6816524335612453], [5, 3, -1, -0.02891030920136127], [2, 1, 0, 0.09173296543276846], [-67, -201, -1, 0.2963867895388712], [5, -3, 1, -0.052743400244083805], [1, 7, -1, 3.7093864611426874], [128, 182, 1, 0.24337953442349392], [-74, 178, -1, -0.42447360107756144], [-16, 42, 1, 0.4527207621902227], [17, -21, -1, -0.030329186407368074], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-203, -133, 1, -0.14326072228968295], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [38, -24, -1, 0.6805857516296812], [1, -11, 1, 2.2101604832489072], [4, -4, -1, 3.6527999438928904], [2, -8, 1, 0.28416816355277247], [-41, 1, -1, -0.025617984024607566], [11, 3, 1, 2.5994754553406705], [7, 1, -1, 1.394791712080283], [3, -3, 1, 4.486195164644139], [-1, -5, -1, 3.636624767014217], [10, 18, 1, -0.1566791107754084], [-23, 47, -1, -0.03005621355803054], [97, 233, 1, -0.07721341931919432]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 102, "state": [[6, -1, -1, 4.261855259167473], [59, -4, 1, 0.7816016505561395], [7, -2, -1, 3.2163136360140796], [-182, 127, 1, 0.2573921455638547], [27, 26, -1, -0.003912857598162409], [0, -5, 1, 3.6590688159108122], [3, 4, -1, -0.0904834920404792], [2, 1, 0, 0.09173296543276846], [-68, -203, -1, 0.2966218779101295], [3, -4, 1, -0.11431658308320174], [3, 6, -1, 3.760594652317471], [129, 184, 1, 0.24361508356728773], [-75, 180, -1, -0.42460062015920647], [-18, 43, 1, 0.4578873019501919], [19, -22, -1, -0.03539610260841283], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-205, -134, 1, -0.1434294178439643], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [36, -25, -1, 0.6875362712179762], [3, -12, 1, 2.2347210792494394], [2, -3, -1, 3.684216422987391], [4, -7, 1, 0.3278032686333718], [-40, -1, -1, -0.03347708738977709], [9, 4, 1, 2.6236625949837826], [8, -1, -1, 1.4371670418109992], [5, -4, 1, 4.503806808382778], [-2, -3, -1, 3.6987918088252156], [8, 19, 1, -0.13939869432774285], [-21, 46, -1, -0.025785027148666696], [98, 235, 1, -0.07731001044006869]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 103, "state": [[7, -3, -1, 4.300011560016425], [61, -3, 1, 0.7845543389412408], [6, -4, -1, 3.2656043905281265], [-184, 128, 1, 0.2576225079774186], [29, 25, -1, 0.004852338547388018], [2, -4, 1, 3.7328606247360288], [5, 3, -1, -0.02891030920136127], [2, 1, 0, 0.09173296543276846], [-69, -205, -1, 0.29685215354332084], [5, -3, 1, -0.052743400244083805], [5, 7, -1, 3.7855186151366276], [130, 186, 1, 0.24384604127842352], [-76, 182, -1, -0.42472476595547226], [-17, 45, 1, 0.4522790752304587], [20, -20, -1, -0.04702086962263065], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-207, -135, 1, -0.14359508092192558], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [34, -26, -1, 0.694834952509767], [5, -11, 1, 2.2636313884508006], [0, -4, -1, 3.7777999438928904], [2, -8, 1, 0.28416816355277247], [-38, -2, -1, -0.03786789661205125], [7, 5, 1, 2.6558158972543278], [9, -3, -1, 1.4685835209054998], [3, -3, 1, 4.486195164644139], [-3, -1, -1, 3.804000096744933], [7, 21, 1, -0.12718006834164414], [-22, 48, -1, -0.026023461341960645], [99, 237, 1, -0.07740492369365455]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 104, "state": [[8, -5, 0, 4.324474873056523], [63, -2, 1, 0.7873244881627947], [5, -6, -1, 3.311449838810779], [-186, 129, 1, 0.25784836630701086], [31, 26, -1, 0.007009891202879598], [0, -3, 1, 3.6590688159108122], [3, 4, -1, -0.0904834920404792], [2, 1, 0, 0.09173296543276846], [-70, -207, -1, 0.2970777617956168], [3, -4, 1, -0.11431658308320174], [6, 5, -1, 3.8262318126804065], [131, 188, 1, 0.24407253956370042], [-77, 184, -1, -0.424846134724339], [-16, 47, 1, 0.4470136152987625], [21, -22, -1, -0.04332025891743721], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-209, -136, 1, -0.14375779221351315], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [32, -27, -1, 0.7024756274917414], [7, -10, 1, 2.292931570167862], [-2, -5, -1, 3.838359414688312], [0, -9, 1, 0.24517859836408784], [-40, -1, -1, -0.03347708738977709], [5, 6, 1, 2.6965290947981067], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 4.400184729832823], [-4, 1, -1, 3.894197853108401], [9, 20, 1, -0.14327116971673348], [-20, 49, -1, -0.019300999524998932], [100, 239, 1, -0.0774982023566226]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 105, "state": [[8, -5, 0, 4.324474873056523], [65, -1, 1, 0.789926985295766], [3, -7, -1, 3.3575803404180484], [-188, 130, 1, 0.2580698504870189], [32, 28, -1, 0.003679227534142221], [2, -4, 1, 3.7328606247360288], [5, 5, -1, -0.06789987439004593], [2, 1, 0, 0.09173296543276846], [-71, -209, -1, 0.29729884226601205], [5, -3, 1, -0.052743400244083805], [7, 3, -1, 3.8723623142876757], [132, 190, 1, 0.2442947054532931], [-78, 186, -1, -0.4249648184779487], [-15, 49, 1, 0.44207094989006024], [23, -21, -1, -0.05425020907401899], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-211, -137, 1, -0.1439176295832954], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [31, -29, -1, 0.71062798288642], [9, -11, 1, 2.304868755345478], [-3, -3, -1, 3.9027999438928904], [2, -8, 1, 0.28416816355277247], [-39, -3, -1, -0.04171766841986291], [3, 7, 1, 2.742659596405376], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 4.486195164644139], [-3, 3, -1, 3.9802082879197163], [10, 18, 1, -0.1566791107754084], [-22, 50, -1, -0.023595488305024934], [101, 241, 1, -0.07758988823224772]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 106, "state": [[8, -5, 0, 4.324474873056523], [67, 0, 1, 0.7923753297307163], [1, -8, -1, 3.402229157542344], [-190, 131, 1, 0.25828708553510177], [33, 26, -1, 0.011879505279316405], [4, -3, 1, 3.8066524335612453], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-72, -211, -1, 0.2975155290758407], [3, -4, 1, -0.11431658308320174], [6, 1, -1, 3.910518615136627], [133, 192, 1, 0.24451266123140897], [-79, 188, -1, -0.42508090521381126], [-16, 47, 1, 0.4470136152987625], [22, -23, -1, -0.043484675122473115], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-213, -138, 1, -0.14407466819252704], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [30, -31, -1, 0.7185400478273422], [10, -9, 1, 2.329100368239042], [-4, -1, -1, 3.9888103787042057], [0, -7, 1, 0.24517859836408784], [-40, -5, -1, -0.04929075451404697], [1, 8, 1, 2.7873084135296713], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 4.550635693848717], [-1, 4, -1, 4.066218722731032], [9, 20, 1, -0.14327116971673348], [-23, 52, -1, -0.023902934689679325], [102, 243, 1, -0.07768002171249168]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 107, "state": [[8, -5, 0, 4.324474873056523], [65, 1, 1, 0.7948236741656667], [-1, -9, -1, 3.439632513361265], [-192, 132, 1, 0.2585001917809975], [31, 27, -1, 0.004043425852884475], [6, -2, 1, 3.8578606247360288], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-73, -213, -1, 0.29772795113315814], [5, -3, 1, -0.052743400244083805], [7, -1, -1, 3.959386461142687], [134, 194, 1, 0.244726524654328], [-80, 190, -1, -0.4251944791310873], [-17, 45, 1, 0.4522790752304587], [23, -21, -1, -0.05425020907401899], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-215, -139, 1, -0.1442289806149662], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [29, -33, -1, 0.7261850340515524], [11, -7, 1, 2.3555337576972866], [-3, 1, -1, 4.0790081350676735], [2, -8, 1, 0.28416816355277247], [-39, -7, -1, -0.057764350331106454], [-1, 9, 1, 2.8247117693485926], [8, -5, 0, 1.5062791719753927], [6, 0, 1, 4.611195164644139], [1, 3, -1, 4.156416479094499], [8, 18, 1, -0.14253434654068906], [-22, 50, -1, -0.023595488305024934], [103, 245, 1, -0.07776864183697732]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 108, "state": [[8, -5, 0, 4.324474873056523], [63, 2, 1, 0.797426171298638], [-2, -7, -1, 3.4663136360140787], [-194, 133, 1, 0.25870928508276003], [30, 29, -1, -0.004218141641444406], [7, 0, 1, 3.9090688159108122], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-74, -215, -1, 0.2979362323820542], [3, -4, 1, -0.11431658308320174], [6, -3, -1, 4.0105946523174705], [135, 196, 1, 0.2449364091566174], [-81, 192, -1, -0.42530562083305723], [-16, 47, 1, 0.4470136152987625], [21, -20, -1, -0.05090192803178724], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-217, -140, 1, -0.1443806369468131], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [27, -34, -1, 0.7341153251538934], [10, -5, 1, 2.3719397052355378], [-2, 3, -1, 4.184216422987391], [1, -6, 1, 0.2714628267197145], [-37, -6, -1, -0.05508522726936605], [-2, 7, 1, 2.851392892001406], [8, -5, 0, 1.5062791719753927], [4, 1, 1, 4.650184729832823], [3, 2, -1, 4.261624767014217], [6, 19, 1, -0.12465401153831321], [-21, 48, -1, -0.02326183063221952], [104, 247, 1, -0.07785578634903428]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 109, "state": [[8, -5, 0, 4.324474873056523], [61, 3, 1, 0.8001963205201919], [-4, -6, -1, 3.5156043905281256], [-196, 134, 1, 0.2589144770312169], [31, 31, -1, -0.006915424783330979], [8, 2, 1, 3.948058381099497], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-75, -217, -1, 0.2981404920378829], [5, -3, 1, -0.052743400244083805], [7, -5, -1, 4.035518615136628], [136, 198, 1, 0.24514242404625664], [-82, 194, -1, -0.4254144075167932], [-15, 49, 1, 0.44207094989006024], [19, -21, -1, -0.03906974399454245], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-219, -141, 1, -0.14452970491111386], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [25, -35, -1, 0.7422154124448145], [11, -3, 1, 2.4033561843300384], [0, 4, -1, 4.277799943892891], [3, -5, 1, 0.33118903317540316], [-39, -5, -1, -0.0497928189151832], [-4, 6, 1, 2.900683646515453], [8, -5, 0, 1.5062791719753927], [3, 3, 1, 4.736195164644139], [4, 0, -1, 4.355208287919717], [7, 17, 1, -0.1381389189778596], [-22, 46, -1, -0.028624573524350088], [105, 249, 1, -0.07794149174898457]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 110, "state": [[8, -5, 0, 4.324474873056523], [59, 4, 1, 0.8031490089052932], [-6, -5, -1, 3.5614498388107783], [-198, 135, 1, 0.2591158751433848], [32, 33, -1, -0.009363769218281363], [6, 3, 1, 3.9828606247360288], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-76, -219, -1, 0.29834084480932305], [3, -4, 1, -0.11431658308320174], [5, -6, -1, 4.0762318126804065], [137, 200, 1, 0.245344674689358], [-83, 196, -1, -0.42552091315096735], [-16, 47, 1, 0.4470136152987625], [20, -19, -1, -0.05110087160703571], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-221, -142, 1, -0.14467624995695025], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [23, -36, -1, 0.7504476920487085], [10, -1, 1, 2.4298687553454776], [2, 3, -1, 4.371383464798391], [2, -3, 1, 0.3387621192695872], [-38, -7, -1, -0.0584920295202036], [-6, 5, 1, 2.9465290947981058], [8, -5, 0, 1.5062791719753927], [1, 4, 1, 4.8222055994554545], [5, -2, -1, 4.4157677587151385], [6, 19, 1, -0.12465401153831321], [-21, 48, -1, -0.02326183063221952], [106, 251, 1, -0.07802579334482442]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 111, "state": [[8, -5, 0, 4.324474873056523], [57, 5, 1, 0.8063006457169268], [-7, -3, -1, 3.6075803404180475], [-200, 136, 1, 0.25931358304552804], [30, 32, -1, -0.012047675522204863], [7, 5, 1, 4.007784587555186], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-77, -221, -1, 0.29853740110811583], [5, -3, 1, -0.052743400244083805], [3, -7, -1, 4.122362314287676], [138, 202, 1, 0.24554326268511925], [-84, 198, -1, -0.4256252086426515], [-15, 49, 1, 0.44207094989006024], [22, -18, -1, -0.06288362833790742], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-223, -143, 1, -0.14482033535371538], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [21, -37, -1, 0.758770521085684], [11, 1, 1, 2.460160483248907], [1, 5, -1, 4.309216422987392], [0, -4, 1, 0.2451785983640878], [-39, -9, -1, -0.06559520018908785], [-7, 3, 1, 2.992659596405375], [8, -5, 0, 1.5062791719753927], [-1, 3, 1, 4.912403355818922], [3, -3, -1, 4.480208287919717], [5, 21, 1, -0.11317325981616941], [-22, 46, -1, -0.028624573524350088], [107, 253, 1, -0.0781087253004501]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 112, "state": [[8, -5, 0, 4.324474873056523], [55, 6, 1, 0.8096692993541211], [-8, -1, -1, 3.652229157542343], [-202, 137, 1, 0.2595077006464963], [29, 34, -1, -0.01952034841640502], [5, 4, 1, 4.016457172172174], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-78, -223, -1, 0.29873026724726576], [3, -4, 1, -0.11431658308320174], [1, -6, -1, 4.160518615136628], [139, 204, 1, 0.2457382860316017], [-85, 200, -1, -0.42572736199389427], [-16, 47, 1, 0.4470136152987625], [24, -19, -1, -0.06544452133134859], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-225, -144, 1, -0.1449620222807567], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [19, -38, -1, 0.767139375263971], [10, 3, 1, 2.492118303599626], [3, 4, -1, 4.380216326242458], [2, -3, 1, 0.3387621192695872], [-37, -10, -1, -0.07151017384573805], [-8, 1, 1, 3.0373084135296704], [8, -5, 0, 1.5062791719753927], [-3, 2, 1, 5.01761164373864], [1, -4, -1, 4.5662187227310325], [7, 22, 1, -0.12500000000000003], [-20, 47, -1, -0.02165606170393123], [108, 255, 1, -0.07819032068156466]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 113, "state": [[8, -5, 0, 4.324474873056523], [53, 7, 1, 0.8132748309491569], [-9, 1, -1, 3.689632513361264], [-204, 138, 1, 0.2596983243019354], [31, 35, -1, -0.016549394946989735], [3, 3, 1, 4.034068815910813], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-79, -225, -1, 0.29891954562843354], [5, -3, 1, -0.052743400244083805], [-1, -7, -1, 4.209386461142688], [140, 206, 1, 0.24592983928288628], [-86, 202, -1, -0.42582743844879845], [-15, 49, 1, 0.44207094989006024], [22, -18, -1, -0.06288362833790742], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-227, -145, 1, -0.1451013699126471], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [18, -40, -1, 0.773631891539315], [11, 5, 1, 2.5136313884508006], [5, 3, -1, 4.441789509081576], [3, -1, 1, 0.4439704071893044], [-39, -9, -1, -0.06559520018908785], [-9, -1, 1, 3.0747117693485917], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 5.11119516464414], [-1, -3, -1, 4.6564164790945], [5, 23, 1, -0.11004069307767303], [-19, 49, -1, -0.016497049384679167], [109, 257, 1, -0.07827061149939506]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 114, "state": [[8, -5, 0, 4.324474873056523], [51, 8, 1, 0.8171390157227937], [-7, 2, -1, 3.716313636014078], [-206, 139, 1, 0.259885546969923], [30, 33, -1, -0.01448851087751506], [1, 4, 1, 4.120079250722129], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-80, -227, -1, 0.299105334919199], [3, -4, 1, -0.11431658308320174], [-3, -6, -1, 4.260594652317471], [141, 208, 1, 0.24611801369812294], [-87, 204, -1, -0.4259255006317632], [-14, 51, 1, 0.43743098011479514], [21, -20, -1, -0.05090192803178724], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-229, -146, 1, -0.14523843550033194], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [16, -41, -1, 0.7817147611017945], [10, 7, 1, 2.542931570167862], [6, 1, -1, 4.5015157155372645], [5, 0, 1, 0.4951785983640878], [-41, -8, -1, -0.060168320712441284], [-7, -2, 1, 3.1013928920014053], [8, -5, 0, 1.5062791719753927], [-5, -2, 1, 5.171754635439561], [-3, -4, -1, 4.707624670269284], [6, 25, 1, -0.1134600251690714], [-17, 48, -1, -0.01179813834334566], [110, 259, 1, -0.07834962875234004]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 115, "state": [[8, -5, 0, 4.324474873056523], [49, 9, 1, 0.8212856389320775], [-6, 4, -1, 3.7656043905281247], [-208, 140, 1, 0.2600694583585435], [29, 35, -1, -0.021792716569039843], [-1, 3, 1, 4.210277007085597], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-81, -229, -1, 0.29928773022082283], [5, -3, 1, -0.052743400244083805], [-5, -7, -1, 4.285518615136628], [142, 210, 1, 0.24630289738295386], [-88, 206, -1, -0.4260216086775038], [-13, 53, 1, 0.43307392662376515], [19, -19, -1, -0.04702086962263065], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-231, -147, 1, -0.1453732744483798], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [15, -43, -1, 0.7875126497123508], [11, 9, 1, 2.554868755345478], [5, -1, -1, 4.559216422987392], [7, 1, 1, 0.5177622160145211], [-39, -7, -1, -0.05776435033110646], [-6, -4, 1, 3.150683646515452], [8, -5, 0, 1.5062791719753927], [-3, -3, 1, 5.23619516464414], [-4, -2, -1, 4.7814164790945], [8, 24, 1, -0.12718006834164416], [-16, 50, -1, -0.0069154247833309495], [111, 261, 1, -0.07842740246566202]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 116, "state": [[8, -5, 0, 4.324474873056523], [47, 10, 1, 0.8257405474706202], [-5, 6, -1, 3.8114498388107774], [-210, 141, 1, 0.2602501450658829], [31, 36, -1, -0.018770683950805462], [-3, 2, 1, 4.315485295005314], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-82, -231, -1, 0.2994668232270933], [3, -4, 1, -0.11431658308320174], [-6, -5, -1, 4.3262318126804065], [143, 212, 1, 0.24648457542375873], [-89, 208, -1, -0.4261158203534129], [-12, 55, 1, 0.42898064490647153], [21, -18, -1, -0.05923949560872935], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-233, -148, 1, -0.14550594038855488], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [13, -44, -1, 0.7952089207224098], [9, 10, 1, 2.579100368239042], [4, -3, -1, 4.630216326242458], [6, 3, 1, 0.5689704071893045], [-41, -6, -1, -0.052625848907172076], [-5, -6, 1, 3.196529094798105], [8, -5, 0, 1.5062791719753927], [-1, -4, 1, 5.322205599455455], [-3, 0, -1, 4.855208287919717], [6, 23, 1, -0.11658541602417097], [-14, 51, -1, -0.0002639383037961957], [112, 263, 1, -0.07850396172932929]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 117, "state": [[8, -5, 0, 4.324474873056523], [45, 11, 1, 0.8305316305796678], [-3, 7, -1, 3.8575803404180466], [-212, 142, 1, 0.2604276907128901], [29, 37, -1, -0.026113277891732876], [-4, 0, 1, 4.409068815910814], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-83, -233, -1, 0.299642702374802], [5, -3, 1, -0.052743400244083805], [-5, -3, -1, 4.350792408680939], [144, 214, 1, 0.2466631300151414], [-90, 210, -1, -0.4262081911747836], [-11, 57, 1, 0.4251328363021419], [20, -20, -1, -0.04702086962263065], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-235, -149, 1, -0.14563648524991069], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [12, -46, -1, 0.8003176452318775], [7, 11, 1, 2.6055337576972866], [2, -4, -1, 4.704008135067674], [4, 2, 1, 0.5689704071893045], [-42, -4, -1, -0.044611075853223964], [-3, -7, 1, 3.242659596405374], [8, -5, 0, 1.5062791719753927], [0, -6, 1, 5.36119516464414], [-4, 2, -1, 4.929000096744933], [7, 25, 1, -0.11942256177021839], [-12, 50, -1, 0.004887181728505484], [113, 265, 1, -0.07857933473410816]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 118, "state": [[8, -5, 0, 4.324474873056523], [43, 12, 1, 0.8356886934509006], [-1, 8, -1, 3.902229157542342], [-214, 143, 1, 0.26060217606952435], [27, 36, -1, -0.02949904243376425], [-5, -2, 1, 4.469628286706236], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-84, -235, -1, 0.2998154529863575], [3, -4, 1, -0.11431658308320174], [-6, -1, -1, 4.410518615136628], [145, 216, 1, 0.24683864058104865], [-91, 212, -1, -0.4262987745133759], [-12, 55, 1, 0.42898064490647153], [18, -21, -1, -0.034802243636531935], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-237, -150, 1, -0.14576495932559685], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [11, -48, -1, 0.8050772711134493], [5, 10, 1, 2.6219397052355378], [0, -3, -1, 4.777799943892891], [3, 4, 1, 0.6427622160145211], [-41, -2, -1, -0.037256549005190015], [-1, -8, 1, 3.2873084135296695], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 5.400184729832824], [-2, 3, -1, 5.011624767014217], [9, 26, 1, -0.1290093549459875], [-10, 51, -1, 0.011559432476388708], [114, 267, 1, -0.07865354880599866]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 119, "state": [[8, -5, 0, 4.324474873056523], [41, 13, 1, 0.8412431757367763], [1, 9, -1, 3.9396325133612633], [-216, 144, 1, 0.26077367917457694], [29, 37, -1, -0.026113277891732876], [-3, -3, 1, 4.534068815910814], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-85, -237, -1, 0.2999851574050074], [5, -3, 1, -0.052743400244083805], [-5, 1, -1, 4.468219322586755], [146, 218, 1, 0.24701118388988724], [-92, 214, -1, -0.4263876216997692], [-11, 57, 1, 0.4251328363021419], [19, -19, -1, -0.04702086962263065], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-239, -151, 1, -0.1458914113365555], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [9, -49, -1, 0.8120208748878265], [3, 11, 1, 2.6533561843300384], [-2, -4, -1, 4.851591752718107], [1, 3, 1, 0.6939704071893045], [-40, 0, -1, -0.02949904243376423], [1, -9, 1, 3.324711769348591], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 5.48619516464414], [0, 4, -1, 5.105208287919717], [7, 27, 1, -0.11634536350169446], [-12, 50, -1, 0.004887181728505483], [115, 269, 1, -0.07872663043910157]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 120, "state": [[8, -5, 0, 4.324474873056523], [39, 14, 1, 0.8472276536346778], [2, 7, -1, 3.966313636014077], [-218, 145, 1, 0.26094227544953386], [27, 36, -1, -0.02949904243376425], [-1, -4, 1, 4.62007925072213], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-86, -239, -1, 0.3001518951231118], [3, -4, 1, -0.11431658308320174], [-6, 3, -1, 4.510594652317471], [147, 220, 1, 0.24718083416398098], [-93, 216, -1, -0.426474782119912], [-12, 55, 1, 0.42898064490647153], [18, -17, -1, -0.05156691696045485], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-241, -152, 1, -0.14601588849227465], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [8, -51, -1, 0.8161674980971103], [1, 10, 1, 2.6798687553454776], [-3, -2, -1, 4.934216422987391], [-1, 4, 1, 0.7841681635527725], [-42, 1, -1, -0.02571035484597834], [2, -7, 1, 3.3513928920014044], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 5.550635693848718], [2, 3, -1, 5.1987918088252165], [5, 26, 1, -0.10620945231869061], [-14, 51, -1, -0.00026393830379619655], [116, 271, 1, -0.07879860532699963]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 121, "state": [[8, -5, 0, 4.324474873056523], [37, 15, 1, 0.8536750507374113], [4, 6, -1, 4.015604390528124], [-220, 146, 1, 0.2611080378068195], [29, 35, -1, -0.02179271656903984], [-2, -6, 1, 4.607860624736031], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-87, -241, -1, 0.3003157429038772], [5, -3, 1, -0.052743400244083805], [-5, 5, -1, 4.561802843492255], [148, 222, 1, 0.24734766318368837], [-94, 218, -1, -0.42656030330624933], [-11, 57, 1, 0.4251328363021419], [19, -15, -1, -0.06565930519973323], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-243, -153, 1, -0.1461384365487555], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [7, -53, -1, 0.8200316828707471], [-1, 11, 1, 2.710160483248907], [-4, 0, -1, 5.02779994389289], [-3, 3, 1, 0.8701785983640878], [-41, 3, -1, -0.017874275419546427], [4, -6, 1, 3.4006836465154513], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 5.559986973469356], [4, 2, -1, 5.2814164790945], [4, 24, 1, -0.1022561055224875], [-13, 49, -1, 0.0011014007087031348], [117, 273, 1, -0.07886949839273052]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 122, "state": [[8, -5, 0, 4.324474873056523], [35, 16, 1, 0.8606174722879422], [6, 5, -1, 4.061449838810777], [-222, 147, 1, 0.26127103675274077], [31, 34, -1, -0.014255828377955207], [0, -7, 1, 4.659068815910815], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-88, -243, -1, 0.30047677489693597], [3, -4, 1, -0.11431658308320174], [-3, 6, -1, 4.613011034667038], [149, 224, 1, 0.2475117403864801], [-95, 220, -1, -0.4266442310237775], [-12, 55, 1, 0.42898064490647153], [21, -14, -1, -0.07843734871713123], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-245, -154, 1, -0.1462590998638414], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [5, -54, -1, 0.8262365140742676], [-3, 10, 1, 2.742118303599626], [-3, 2, -1, 5.12138346479839], [-4, 1, 1, 0.9561890331754032], [-43, 2, -1, -0.022101818083577713], [6, -5, 1, 3.446529094798104], [8, -5, 0, 1.5062791719753927], [4, 1, 1, 5.650184729832824], [3, 0, -1, 5.355208287919717], [2, 23, 1, -0.08977671252272275], [-14, 51, -1, -0.00026393830379619655], [118, 275, 1, -0.07893933381742449]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 123, "state": [[8, -5, 0, 4.324474873056523], [33, 17, 1, 0.8680845752166693], [7, 3, -1, 4.107580340418046], [-224, 148, 1, 0.26143134048543004], [33, 33, -1, -0.006915424783330976], [2, -8, 1, 4.698058381099499], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-89, -245, -1, 0.300635062748129], [5, -3, 1, -0.052743400244083805], [-1, 7, -1, 4.664219225841822], [150, 226, 1, 0.2476731329612576], [-96, 222, -1, -0.4267266093513546], [-11, 57, 1, 0.4251328363021419], [22, -16, -1, -0.07194483244178729], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-247, -155, 1, -0.14637792145004613], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [4, -56, -1, 0.8295822485892576], [-5, 11, 1, 2.7636313884508006], [-1, 3, -1, 5.226591752718107], [-3, -1, 1, 1.0463867895388712], [-41, 3, -1, -0.017874275419546427], [7, -3, 1, 3.4926595964053733], [8, -5, 0, 1.5062791719753927], [3, 3, 1, 5.73619516464414], [4, 2, -1, 5.2814164790945], [3, 21, 1, -0.09855549481729406], [-12, 50, -1, 0.004887181728505483], [119, 277, 1, -0.07900813506767597]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 124, "state": [[8, -5, 0, 4.324474873056523], [31, 18, 1, 0.8761014007087033], [8, 1, -1, 4.152229157542342], [-226, 149, 1, 0.26158901498806675], [32, 31, -1, -0.0043893679800000385], [1, -6, 1, 4.685353044266441], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-90, -247, -1, 0.3007906757038261], [3, -4, 1, -0.11431658308320174], [1, 6, -1, 4.713087071847882], [151, 228, 1, 0.24783190593817525], [-97, 224, -1, -0.42680748075856706], [-12, 55, 1, 0.42898064490647153], [21, -14, -1, -0.07843734871713123], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-249, -156, 1, -0.14649494302501323], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [3, -58, -1, 0.8327063614942884], [-7, 10, 1, 2.792931570167862], [-3, 4, -1, 5.175383561543324], [-2, -3, 1, 1.1515950774585884], [-43, 4, -1, -0.014736415572806609], [8, -1, 1, 3.5373084135296686], [8, -5, 0, 1.5062791719753927], [2, 5, 1, 5.800635693848718], [3, 0, -1, 5.355208287919717], [2, 19, 1, -0.09266356038212335], [-13, 48, -1, 0.0002806962576255255], [120, 279, 1, -0.07907592492171328]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 125, "state": [[8, -5, 0, 4.324474873056523], [29, 19, 1, 0.8846856382528812], [9, -1, -1, 4.189632513361263], [-228, 150, 1, 0.26174412411764025], [33, 29, -1, 0.0033384251790336697], [3, -5, 1, 4.74507925072213], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-91, -249, -1, 0.30094368071009775], [5, -3, 1, -0.052743400244083805], [3, 7, -1, 4.751243372696834], [152, 230, 1, 0.2479881222742137], [-98, 226, -1, -0.4268868861784338], [-13, 53, 1, 0.43307392662376515], [23, -15, -1, -0.08004491973270833], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-251, -157, 1, -0.14661020505972747], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [2, -60, -1, 0.83562798288642], [-9, 11, 1, 2.804868755345478], [-1, 3, -1, 5.226591752718107], [-3, -1, 1, 1.0463867895388712], [-42, 6, -1, -0.006915424783330938], [9, 1, 1, 3.57471176934859], [8, -5, 0, 1.5062791719753927], [1, 3, 1, 5.809986973469356], [5, -1, -1, 5.386624767014217], [3, 21, 1, -0.09855549481729406], [-11, 47, -1, 0.005784903554808045], [121, 281, 1, -0.07914272549442816]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 126, "state": [[8, -5, 0, 4.324474873056523], [27, 20, 1, 0.8938443724167862], [7, -2, -1, 4.216313636014077], [-230, 151, 1, 0.261896729689498], [31, 30, -1, -0.004306561045176596], [5, -4, 1, 4.801680459649453], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-92, -251, -1, 0.30109414250703], [3, -4, 1, -0.11431658308320174], [5, 6, -1, 4.797373874304103], [153, 232, 1, 0.24814184293473493], [-99, 228, -1, -0.4269648650762077], [-14, 51, 1, 0.43743098011479514], [25, -14, -1, -0.09077412979888903], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-253, -158, 1, -0.14672374682459594], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [0, -61, -1, 0.8409311840891878], [-10, 9, 1, 2.829100368239042], [1, 4, -1, 5.316789509081575], [-5, -2, 1, 1.0557380691595095], [-41, 4, -1, -0.014020715200531483], [10, 3, 1, 3.6034869151488222], [8, -5, 0, 1.5062791719753927], [-1, 4, 1, 5.900184729832824], [6, -3, -1, 5.429000096744933], [5, 20, 1, -0.11496144235554545], [-9, 46, -1, 0.01162476701421785], [122, 283, 1, -0.07920855826132195]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 127, "state": [[8, -5, 0, 4.324474873056523], [25, 21, 1, 0.9035704943748543], [6, -4, -1, 4.265604390528124], [-232, 152, 1, 0.26204689155791144], [33, 31, -1, -0.0019434508715363411], [6, -2, 1, 4.8578606247360305], [5, 5, -1, -0.06789987439004593], [2, 1, 0, 0.09173296543276846], [-93, -253, -1, 0.3012421237184577], [5, -3, 1, -0.052743400244083805], [6, 4, -1, 4.843219322586756], [154, 234, 1, 0.24829312697123684], [-100, 230, -1, -0.4270414555145166], [-13, 53, 1, 0.43307392662376515], [23, -15, -1, -0.08004491973270833], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-255, -159, 1, -0.14683560643350513], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-2, -62, -1, 0.8460634348280617], [-11, 7, 1, 2.8555337576972866], [3, 3, -1, 5.402799943892891], [-3, -1, 1, 1.0463867895388712], [-40, 2, -1, -0.02154791680567608], [8, 4, 1, 3.6308919344351676], [8, -5, 0, 1.5062791719753927], [-3, 3, 1, 5.98619516464414], [4, -4, -1, 5.480208287919717], [4, 18, 1, -0.11077412080339279], [-8, 48, -1, 0.016091101375089352], [123, 285, 1, -0.07927344408142308]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 128, "state": [[8, -5, 0, 4.324474873056523], [23, 22, 1, 0.9138391352305587], [5, -6, -1, 4.311449838810777], [-234, 153, 1, 0.2621946676928743], [34, 29, -1, 0.00568949884974305], [7, 0, 1, 4.909068815910814], [3, 4, -1, -0.0904834920404792], [2, 1, 0, 0.09173296543276846], [-94, -255, -1, 0.3013876849373713], [3, -4, 1, -0.11431658308320174], [7, 2, -1, 4.892510077100803], [155, 236, 1, 0.24844203159551145], [-101, 232, -1, -0.4271166942150693], [-12, 55, 1, 0.42898064490647153], [24, -17, -1, -0.07393416562364952], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-257, -160, 1, -0.1469458208859591], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-3, -60, -1, 0.848882309717276], [-10, 5, 1, 2.8719397052355378], [4, 1, -1, 5.488810378704207], [-2, -3, 1, 1.1515950774585884], [-39, 0, -1, -0.02949904243376423], [6, 5, 1, 3.6676711564217985], [8, -5, 0, 1.5062791719753927], [-5, 2, 1, 6.050635693848718], [2, -3, -1, 5.511624767014217], [6, 19, 1, -0.12465401153831324], [-6, 49, -1, 0.02298350360063329], [124, 287, 1, -0.07933740321922683]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 129, "state": [[8, -5, 0, 4.324474873056523], [21, 23, 1, 0.9246046691821046], [3, -7, -1, 4.357580340418046], [-236, 154, 1, 0.2623401142533363], [33, 27, -1, 0.0089473339319458], [8, 2, 1, 4.948058381099498], [5, 5, -1, -0.06789987439004593], [2, 1, 0, 0.09173296543276846], [-95, -257, -1, 0.3015308848072381], [5, -3, 1, -0.052743400244083805], [6, 0, -1, 4.936802843492255], [156, 238, 1, 0.24858861225039774], [-102, 234, -1, -0.4271906166171348], [-13, 53, 1, 0.43307392662376515], [25, -19, -1, -0.06859077522936766], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-259, -161, 1, -0.1470544261073932], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-5, -59, -1, 0.8543867406866341], [-11, 3, 1, 2.9033561843300384], [5, -1, -1, 5.559216422987392], [-1, -5, 1, 1.213762119269587], [-41, -1, -1, -0.03338010084292082], [5, 7, 1, 3.7083843539655774], [8, -5, 0, 1.5062791719753927], [-3, 1, 1, 6.059986973469356], [3, -5, -1, 5.519197853108401], [7, 17, 1, -0.13813891897785963], [-5, 47, -1, 0.025507395266250222], [125, 289, 1, -0.07940045536570606]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 130, "state": [[8, -5, 0, 4.324474873056523], [19, 24, 1, 0.9357989814394342], [1, -8, -1, 4.402229157542342], [-238, 155, 1, 0.26248328565706436], [31, 26, -1, 0.007009891202879599], [9, 0, 1, 4.909068815910814], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-96, -259, -1, 0.30167178009946366], [3, -4, 1, -0.11431658308320174], [7, -2, -1, 4.981095609883707], [157, 240, 1, 0.2487329226773099], [-103, 236, -1, -0.42726325693299083], [-14, 51, 1, 0.43743098011479514], [27, -20, -1, -0.07055182693656072], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-261, -162, 1, -0.14716145698775596], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-6, -57, -1, 0.8576228673044504], [-10, 1, 1, 2.9298687553454776], [6, -3, -1, 5.601591752718108], [0, -7, 1, 1.2451785983640877], [-42, 1, -1, -0.025710354845978268], [3, 8, 1, 3.7499999999999964], [8, -5, 0, 1.5062791719753927], [-4, -1, 1, 6.150184729832824], [2, -7, -1, 5.560915521528264], [6, 19, 1, -0.12465401153831324], [-7, 46, -1, 0.018340491422064058], [126, 291, 1, -0.07946261965843744]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 131, "state": [[8, -5, 0, 4.324474873056523], [17, 25, 1, 0.9473317126961679], [-1, -9, -1, 4.439632513361263], [-240, 156, 1, 0.2626242346473079], [30, 24, -1, 0.010696218955307661], [7, 1, 1, 4.931652433561247], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-97, -261, -1, 0.3018104257872034], [5, -3, 1, -0.052743400244083805], [6, -4, -1, 5.030386364397754], [158, 242, 1, 0.2488750149807099], [-104, 238, -1, -0.4273346482005225], [-15, 49, 1, 0.44207094989006024], [28, -18, -1, -0.08108968553344284], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-263, -163, 1, -0.14726694741844384], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-8, -56, -1, 0.863514801739621], [-9, -1, 1, 2.963343157799393], [4, -4, -1, 5.652799943892892], [2, -8, 1, 1.2841681635527724], [-43, 3, -1, -0.018413172715903675], [1, 9, 1, 3.7894884818713117], [8, -5, 0, 1.5062791719753927], [-3, -3, 1, 6.23619516464414], [0, -8, -1, 5.605208287919716], [8, 20, 1, -0.13653134796228253], [-8, 44, -1, 0.01375075620636598], [127, 293, 1, -0.07952391470088745]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 132, "state": [[8, -5, 0, 4.324474873056523], [15, 26, 1, 0.9590929981505792], [-2, -7, -1, 4.466313636014077], [-242, 157, 1, 0.2627630123564392], [29, 26, -1, 0.0017571598336570942], [5, 0, 1, 4.909068815910814], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-98, -263, -1, 0.30194687511572377], [3, -4, 1, -0.11431658308320174], [4, -5, -1, 5.079414487230893], [159, 244, 1, 0.24901493968968408], [-105, 240, -1, -0.4274048223331408], [-16, 47, 1, 0.4470136152987625], [26, -17, -1, -0.07985833723542854], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-265, -164, 1, -0.1473709303276718], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-10, -55, -1, 0.8695557576135379], [-8, -3, 1, 3.0028316396707084], [2, -5, -1, 5.71724047309747], [4, -7, 1, 1.3278032686333716], [-44, 5, -1, -0.011490504397938495], [-1, 10, 1, 3.8229628843252272], [8, -5, 0, 1.5062791719753927], [-1, -4, 1, 6.322205599455455], [-1, -6, -1, 5.631492516275342], [6, 19, 1, -0.12465401153831324], [-6, 45, -1, 0.021279098151295375], [128, 295, 1, -0.079584358580898]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 133, "state": [[8, -5, 0, 4.324474873056523], [13, 27, 1, 0.970958791450685], [-4, -6, -1, 4.515604390528124], [-244, 158, 1, 0.26289966836672507], [31, 25, -1, 0.010072085123017376], [4, 2, 1, 4.9828606247360305], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-99, -265, -1, 0.30208117966949816], [5, -3, 1, -0.052743400244083805], [2, -6, -1, 5.1355946523174705], [160, 246, 1, 0.24915274581677324], [-106, 242, -1, -0.4274738101671781], [-17, 45, 1, 0.4522790752304587], [28, -16, -1, -0.08939619935334667], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-267, -165, 1, -0.14747343771435398], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-12, -54, -1, 0.8757334277257197], [-10, -2, 1, 2.977147993155255], [1, -7, -1, 5.755216326242459], [3, -5, 1, 1.331189033175403], [-45, 3, -1, -0.01890439011629096], [-2, 8, 1, 3.8460896907986353], [8, -5, 0, 1.5062791719753927], [-2, -6, 1, 6.309986973469357], [-2, -4, -1, 5.679000096744932], [7, 17, 1, -0.13813891897785963], [-8, 44, -1, 0.01375075620636598], [129, 297, 1, -0.07964396888841034]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 134, "state": [[8, -5, 0, 4.324474873056523], [11, 28, 1, 0.9827982843776458], [-6, -5, -1, 4.561449838810777], [-246, 159, 1, 0.2630342507683802], [29, 26, -1, 0.0017571598336570942], [2, 3, 1, 5.065485295005314], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-100, -267, -1, 0.30221338943621273], [3, -4, 1, -0.11431658308320174], [0, -7, -1, 5.186802843492254], [161, 248, 1, 0.24928848091419797], [-107, 244, -1, -0.4275416415069091], [-18, 43, 1, 0.4578873019501919], [27, -14, -1, -0.0958887156286906], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-269, -166, 1, -0.14757450068056932], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-13, -52, -1, 0.8799207492778724], [-11, -4, 1, 3.0012401432882543], [-1, -6, -1, 5.804084172248519], [2, -3, 1, 1.338762119269587], [-44, 5, -1, -0.011490504397938493], [-3, 6, 1, 3.880891934435167], [8, -5, 0, 1.5062791719753927], [-1, -4, 1, 6.322205599455455], [-3, -2, -1, 5.761624767014216], [5, 16, 1, -0.1241775011564756], [-7, 42, -1, 0.016091101375089352], [130, 299, 1, -0.07970276273246361]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 135, "state": [[8, -5, 0, 4.324474873056523], [9, 29, 1, 0.994482386955883], [-7, -3, -1, 4.607580340418046], [-248, 160, 1, 0.2631668062150416], [28, 24, -1, 0.00530320120276772], [0, 4, 1, 5.159068815910814], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-101, -269, -1, 0.30234355286784614], [5, -3, 1, -0.052743400244083805], [-2, -6, -1, 5.238011034667037], [162, 250, 1, 0.24942219112761171], [-108, 246, -1, -0.4276083451673337], [-20, 42, 1, 0.4655232261410374], [26, -12, -1, -0.10320103470920862], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-271, -167, 1, -0.14767414946267815], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-14, -50, -1, 0.8843818686925454], [-10, -6, 1, 3.0317419488720696], [-3, -5, -1, 5.8638103787042075], [3, -1, 1, 1.4439704071893043], [-45, 3, -1, -0.01890439011629096], [-5, 7, 1, 3.9058158972543238], [8, -5, 0, 1.5062791719753927], [0, -6, 1, 6.36119516464414], [-4, 0, -1, 5.855208287919715], [7, 15, 1, -0.14546324793936086], [-8, 44, -1, 0.01375075620636598], [131, 301, 1, -0.0797607567575023]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 136, "state": [[8, -5, 0, 4.324474873056523], [7, 30, 1, 1.0058919344351709], [-8, -1, -1, 4.652229157542342], [-250, 161, 1, 0.26329737997679653], [30, 25, -1, 0.007513544404821266], [-2, 3, 1, 5.252652336816314], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-102, -271, -1, 0.3024717169389773], [3, -4, 1, -0.11431658308320174], [-4, -7, -1, 5.269427513761538], [163, 252, 1, 0.2495539212475071], [-109, 248, -1, -0.4276739490148514], [-22, 43, 1, 0.47005713567403795], [25, -14, -1, -0.09077412979888903], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-273, -168, 1, -0.14777241346115652], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-15, -48, -1, 0.8891368080788026], [-11, -8, 1, 3.0458075512415976], [-4, -3, -1, 5.925383561543326], [4, 1, 1, 1.5341681635527722], [-43, 4, -1, -0.014736415572806538], [-6, 5, 1, 3.9465290947981027], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 6.400184729832824], [-3, 2, -1, 5.948791808825215], [9, 14, 1, -0.1669030612560486], [-9, 46, -1, 0.011624767014217849], [132, 303, 1, -0.07981796715902531]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 137, "state": [[8, -5, 0, 4.324474873056523], [5, 31, 1, 1.0169243657148226], [-9, 1, -1, 4.689632513361263], [-252, 162, 1, 0.2634260159908886], [32, 26, -1, 0.009490522754920409], [-3, 1, 1, 5.357860624736031], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-103, -273, -1, 0.3025979272024663], [5, -3, 1, -0.052743400244083805], [-6, -6, -1, 5.311802843492254], [164, 254, 1, 0.24968371475839385], [-110, 250, -1, -0.4277384800059462], [-24, 42, 1, 0.47741638234956685], [26, -16, -1, -0.08422225227193923], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-275, -169, 1, -0.147869321269208], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-16, -46, -1, 0.8942062063831064], [-10, -10, 1, 3.0707315140607543], [-5, -1, -1, 5.996383464798392], [3, 3, 1, 1.6201785983640875], [-45, 3, -1, -0.01890439011629096], [-7, 3, 1, 3.992659596405372], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 6.48619516464414], [-1, 3, -1, 6.054000096744932], [11, 15, 1, -0.17667698199309634], [-8, 44, -1, 0.01375075620636598], [133, 305, 1, -0.07987440969860726]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 138, "state": [[8, -5, 0, 4.324474873056523], [3, 32, 1, 1.0274980379450074], [-7, 2, -1, 4.716313636014077], [-254, 163, 1, 0.26355275691021895], [30, 27, -1, 0.0014534293949560809], [-4, -1, 1, 5.448058381099499], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-104, -275, -1, 0.3027222278426455], [3, -4, 1, -0.11431658308320174], [-5, -4, -1, 5.329414487230893], [165, 256, 1, 0.24981161388585923], [-111, 252, -1, -0.4278019642239961], [-26, 43, 1, 0.48134533571457283], [27, -14, -1, -0.09588871562869061], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-277, -170, 1, -0.14796490070021123], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-18, -45, -1, 0.9014906548846094], [-8, -11, 1, 3.095655476879911], [-4, 1, -1, 6.066789509081577], [2, 5, 1, 1.6846191275686657], [-47, 2, -1, -0.022730575081513795], [-8, 1, 1, 4.037308413529668], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 6.550635693848718], [0, 5, -1, 6.105208287919716], [13, 16, 1, -0.18456592962860943], [-7, 42, -1, 0.016091101375089352], [134, 307, 1, -0.0799300997183212]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 139, "state": [[8, -5, 0, 4.324474873056523], [1, 33, 1, 1.037553928094804], [-6, 4, -1, 4.765604390528124], [-256, 164, 1, 0.26367764414975287], [31, 25, -1, 0.010072085123017376], [-5, -3, 1, 5.49507925072213], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-105, -277, -1, 0.30284466172614843], [5, -3, 1, -0.052743400244083805], [-6, -2, -1, 5.3855946523174705], [166, 258, 1, 0.2499376596416167], [-112, 254, -1, -0.4278644269143102], [-28, 42, 1, 0.4883752329857823], [25, -15, -1, -0.08601043481131529], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-279, -171, 1, -0.14805917881405853], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-19, -43, -1, 0.9071499068202203], [-6, -10, 1, 3.109721079249439], [-3, 3, -1, 6.152799943892893], [0, 4, 1, 1.7451785983640875], [-46, 0, -1, -0.02949904243376416], [-9, -1, 1, 4.074711769348589], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 6.559986973469356], [2, 6, -1, 6.156416479094499], [11, 15, 1, -0.17667698199309634], [-9, 41, -1, 0.00798433826180723], [135, 309, 1, -0.07998505215459051]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 140, "state": [[8, -5, 0, 4.324474873056523], [-1, 34, 1, 1.0470550083915393], [-5, 6, -1, 4.811449838810777], [-258, 165, 1, 0.26380071793093685], [30, 27, -1, 0.0014534293949560809], [-3, -4, 1, 5.556652433561248], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-106, -279, -1, 0.30296527045049815], [3, -4, 1, -0.11431658308320174], [-5, 0, -1, 5.436802843492254], [167, 260, 1, 0.25006189186664163], [-113, 256, -1, -0.4279258925174948], [-30, 43, 1, 0.49174308879118495], [24, -17, -1, -0.07393416562364952], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-281, -172, 1, -0.14815218194243598], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-20, -41, -1, 0.9131627003239418], [-4, -11, 1, 3.1402228848332543], [-1, 4, -1, 6.238810378704208], [-2, 3, 1, 1.8387621192695869], [-44, 1, -1, -0.025882507232156175], [-7, -2, 1, 4.101392892001403], [8, -5, 0, 1.5062791719753927], [4, 1, 1, 6.650184729832824], [3, 4, -1, 6.207624670269283], [12, 13, 1, -0.19460907149286488], [-7, 42, -1, 0.016091101375089352], [136, 311, 1, -0.08003928155149571]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 141, "state": [[8, -5, 0, 4.324474873056523], [-3, 33, 1, 1.0568042989188684], [-3, 7, -1, 4.857580340418046], [-260, 166, 1, 0.2639220173242243], [29, 29, -1, -0.006915424783330976], [-1, -5, 1, 5.627652336816314], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-107, -281, -1, 0.303084094390569], [5, -3, 1, -0.052743400244083805], [-6, 2, -1, 5.488011034667037], [168, 262, 1, 0.2501843492724879], [-114, 258, -1, -0.42798638470123784], [-32, 42, 1, 0.49841379063023694], [23, -15, -1, -0.08004491973270833], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-283, -173, 1, -0.14824393571309608], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-22, -40, -1, 0.9209611667085573], [-2, -10, 1, 3.1643150349662537], [0, 6, -1, 6.277799943892893], [0, 4, 1, 1.7451785983640875], [-45, -1, -1, -0.03303523693392159], [-6, -4, 1, 4.15068364651545], [8, -5, 0, 1.5062791719753927], [3, 3, 1, 6.73619516464414], [4, 2, -1, 6.281416479094499], [14, 14, 1, -0.2009718771668608], [-6, 44, -1, 0.020805424123979017], [137, 313, 1, -0.08009280207356177]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 142, "state": [[8, -5, 0, 4.324474873056523], [-5, 32, 1, 1.0670438273710503], [-1, 8, -1, 4.902229157542342], [-262, 167, 1, 0.2640415802898024], [31, 30, -1, -0.004306561045176597], [1, -4, 1, 5.698058381099499], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-108, -283, -1, 0.3032011727430287], [3, -4, 1, -0.11431658308320174], [-5, 4, -1, 5.544191199753615], [169, 264, 1, 0.25030506948087394], [-115, 260, -1, -0.4280459263906007], [-34, 43, 1, 0.5012732123833347], [25, -16, -1, -0.08141186109153944], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-285, -174, 1, -0.14833446507316733], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-24, -39, -1, 0.9287298014398792], [0, -11, 1, 3.1957315140607543], [2, 7, -1, 6.322092710284345], [-2, 3, 1, 1.8387621192695869], [-47, -2, -1, -0.03626750978601446], [-5, -6, 1, 4.196529094798103], [8, -5, 0, 1.5062791719753927], [4, 1, 1, 6.650184729832824], [3, 0, -1, 6.355208287919716], [15, 12, 1, -0.21858352090549943], [-4, 45, -1, 0.02826530789734228], [138, 315, 1, -0.08014562751804866]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 143, "state": [[8, -5, 0, 4.324474873056523], [-7, 31, 1, 1.077720762190223], [1, 9, -1, 4.939632513361263], [-264, 168, 1, 0.2641594437166083], [33, 31, -1, -0.001943450871536342], [3, -3, 1, 5.784068815910815], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-109, -285, -1, 0.3033165435688629], [5, -3, 1, -0.052743400244083805], [-6, 6, -1, 5.561802843492254], [170, 266, 1, 0.25042408906162184], [-116, 262, -1, -0.428104539796897], [-36, 42, 1, 0.5075730860941843], [26, -14, -1, -0.09340765916150179], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-287, -175, 1, -0.14842379431154668], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-25, -37, -1, 0.9355032323019701], [2, -10, 1, 3.227147993155255], [4, 6, -1, 6.371383464798392], [-3, 1, 1, 1.9439704071893043], [-49, -1, -1, -0.03274665167795134], [-3, -7, 1, 4.242659596405372], [8, -5, 0, 1.5062791719753927], [3, 3, 1, 6.73619516464414], [4, 2, -1, 6.281416479094499], [13, 11, 1, -0.21420421519665572], [-2, 46, -1, 0.03545990494738509], [139, 317, 1, -0.08019777132676773]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 144, "state": [[8, -5, 0, 4.324474873056523], [-9, 30, 1, 1.0887621192695875], [2, 7, -1, 4.966313636014077], [-266, 169, 1, 0.264275643459718], [34, 29, -1, 0.005689498849743048], [5, -2, 1, 5.848509345115393], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-110, -287, -1, 0.30343024383407674], [3, -4, 1, -0.11431658308320174], [-4, 7, -1, 5.60417817322297], [171, 268, 1, 0.25054144356902863], [-117, 264, -1, -0.42816224644523543], [-38, 43, 1, 0.5099797826805861], [24, -15, -1, -0.08311702737795425], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-289, -176, 1, -0.14851194708041549], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-26, -35, -1, 0.9426175030130974], [4, -11, 1, 3.2512401432882543], [6, 5, -1, 6.417228913081044], [-4, -1, 1, 2.0341681635527724], [-48, -3, -1, -0.03943330458653446], [-1, -8, 1, 4.287308413529668], [8, -5, 0, 1.5062791719753927], [1, 4, 1, 6.822205599455455], [3, 0, -1, 6.355208287919716], [14, 9, 1, -0.235040693077673], [-4, 45, -1, 0.028265307897342284], [140, 319, 1, -0.08024924659744563]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 145, "state": [[8, -5, 0, 4.324474873056523], [-11, 29, 1, 1.1000760371808436], [4, 6, -1, 5.015604390528124], [-268, 170, 1, 0.26439021437618493], [36, 28, -1, 0.012876287296951783], [4, 0, 1, 5.909068815910815], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-111, -289, -1, 0.30354230944866445], [5, -3, 1, -0.052743400244083805], [-2, 6, -1, 5.6355946523174705], [172, 270, 1, 0.2506571675767442], [-118, 266, -1, -0.4282190672007977], [-40, 42, 1, 0.5159106536711264], [22, -16, -1, -0.07194483244178727], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-291, -177, 1, -0.1485989464159188], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-28, -34, -1, 0.9505769058901429], [6, -10, 1, 3.2817419488720696], [7, 3, -1, 6.4633594146883135], [-3, -3, 1, 2.1201785983640877], [-50, -4, -1, -0.04220437926682204], [1, -9, 1, 4.324711769348589], [8, -5, 0, 1.5062791719753927], [-1, 3, 1, 6.912403355818923], [5, -1, -1, 6.386624767014216], [12, 8, 1, -0.23238835626136137], [-2, 46, -1, 0.03545990494738509], [141, 321, 1, -0.0803000660946548]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 146, "state": [[8, -5, 0, 4.324474873056523], [-13, 28, 1, 1.1115552430865363], [6, 5, -1, 5.061449838810777], [-270, 171, 1, 0.264503190359404], [38, 27, -1, 0.01976569786948276], [3, 2, 1, 6.002652336816315], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-112, -291, -1, 0.30365277530393187], [3, -4, 1, -0.11431658308320174], [0, 7, -1, 5.686802843492254], [173, 272, 1, 0.25077129471122733], [-119, 268, -1, -0.4282750222939189], [-42, 43, 1, 0.5179193873636594], [20, -17, -1, -0.0598971569195824], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-293, -178, 1, -0.14868481475804637], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-30, -33, -1, 0.9583580979950037], [8, -11, 1, 3.2958075512415976], [8, 1, -1, 6.508008231812609], [-1, -4, 1, 2.206189033175403], [-49, -2, -1, -0.035991558709108], [2, -7, 1, 4.351392892001403], [8, -5, 0, 1.5062791719753927], [-3, 2, 1, 7.017611643738641], [4, -3, -1, 6.457624670269282], [11, 6, 1, -0.24649837809473515], [-1, 48, -1, 0.03906008133076597], [142, 323, 1, -0.0803502422603307]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 25, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 147, "state": [[8, -5, 0, 4.324474873056523], [-15, 27, 1, 1.123082563339264], [7, 3, -1, 5.107580340418046], [-272, 172, 1, 0.26461460437207046], [39, 25, -1, 0.027359817656464], [1, 3, 1, 6.107860624736032], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-113, -293, -1, 0.30376167530825193], [5, -3, 1, -0.052743400244083805], [2, 6, -1, 5.738011034667037], [174, 274, 1, 0.2508838576838458], [-120, 270, -1, -0.4283301313440336], [-43, 41, 1, 0.5235803996680689], [21, -15, -1, -0.07330509797825734], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-295, -179, 1, -0.1487695739697497], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-31, -31, -1, 0.9659311840891878], [10, -10, 1, 3.3207315140607543], [7, -1, -1, 6.550383561543326], [-2, -6, 1, 2.1939704071893043], [-48, 0, -1, -0.029499042433764087], [4, -6, 1, 4.40068364651545], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 7.1111951646441405], [2, -4, -1, 6.531416479094498], [9, 5, 1, -0.24526464355831315], [-3, 49, -1, 0.032643297384092565], [143, 325, 1, -0.08039978722389328]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 148, "state": [[8, -5, 0, 4.324474873056523], [-17, 26, 1, 1.1345378621179185], [8, 1, -1, 5.152229157542342], [-274, 173, 1, 0.2647244884777992], [40, 23, -1, 0.03503207010940634], [-1, 4, 1, 6.1980583810995], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-114, -295, -1, 0.3038690424213296], [3, -4, 1, -0.11431658308320174], [4, 7, -1, 5.769427513761538], [175, 276, 1, 0.25099488832168515], [-121, 272, -1, -0.42838441338254674], [-44, 39, 1, 0.5293677866687975], [19, -14, -1, -0.07095322568975317], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-297, -180, 1, -0.1488532453553302], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-32, -29, -1, 0.9737521748786634], [11, -8, 1, 3.345655476879911], [6, -3, -1, 6.601591752718109], [0, -7, 1, 2.2451785983640877], [-50, 1, -1, -0.02631636788327769], [6, -5, 1, 4.446529094798103], [8, -5, 0, 1.5062791719753927], [-3, -2, 1, 7.204778685549639], [0, -3, -1, 6.605208287919715], [8, 7, 1, -0.21156652948433396], [-5, 50, -1, 0.026512571015439287], [144, 327, 1, -0.08044871281198997]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 149, "state": [[8, -5, 0, 4.324474873056523], [-19, 25, 1, 1.1458054241239795], [9, -1, -1, 5.189632513361263], [-276, 174, 1, 0.2648328738714692], [41, 21, -1, 0.042747621316228286], [-3, 3, 1, 6.284068815910816], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-115, -297, -1, 0.30397490868704763], [5, -3, 1, -0.052743400244083805], [6, 6, -1, 5.811802843492254], [176, 278, 1, 0.251104417597125], [-122, 274, -1, -0.42843788687468576], [-45, 37, 1, 0.5352700393135158], [17, -13, -1, -0.06811710120205132], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-299, -181, 1, -0.14893584967813042], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-34, -28, -1, 0.9812854622882327], [10, -6, 1, 3.359721079249439], [7, -5, -1, 6.626515715537266], [2, -8, 1, 2.2841681635527724], [-52, 2, -1, -0.02338071420663688], [7, -3, 1, 4.492659596405372], [8, -5, 0, 1.5062791719753927], [-1, -3, 1, 7.309986973469357], [2, -4, -1, 6.531416479094498], [10, 8, 1, -0.2185835209054994], [-3, 49, -1, 0.032643297384092565], [145, 329, 1, -0.080497030557877]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 150, "state": [[8, -5, 0, 4.324474873056523], [-21, 24, 1, 1.1567806774132432], [7, -2, -1, 5.216313636014077], [-278, 175, 1, 0.2649397909083501], [43, 22, -1, 0.04281915162291402], [-4, 1, 1, 6.3700792507221315], [4, 3, -1, -0.04531625673961265], [2, 1, 0, 0.09173296543276846], [-116, -299, -1, 0.3040793052649611], [3, -4, 1, -0.11431658308320174], [7, 4, -1, 5.85417817322297], [177, 280, 1, 0.2512124756562404], [-123, 276, -1, -0.4284905697403855], [-46, 35, 1, 0.5412739290220131], [19, -12, -1, -0.08236630208213722], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-301, -182, 1, -0.149017407177558], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-36, -27, -1, 0.988514801739621], [11, -4, 1, 3.3902228848332543], [5, -6, -1, 6.667228913081045], [0, -7, 1, 2.2451785983640877], [-53, 0, -1, -0.029499042433764083], [8, -1, 1, 4.537308413529668], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 7.400184729832825], [0, -3, -1, 6.605208287919715], [8, 9, 1, -0.1916205975462224], [-2, 47, -1, 0.03560686237846572], [146, 331, 1, -0.08054475171045429]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 151, "state": [[8, -5, 0, 4.324474873056523], [-23, 23, 1, 1.1673753297307163], [6, -4, -1, 5.265604390528124], [-280, 176, 1, 0.2650452691320698], [42, 20, -1, 0.04735306115591453], [-3, -1, 1, 6.460277007085599], [6, 4, -1, -0.036483395295545326], [2, 1, 0, 0.09173296543276846], [-117, -301, -1, 0.3041822624605051], [5, -3, 1, -0.052743400244083805], [6, 2, -1, 5.8855946523174705], [178, 282, 1, 0.2513190918460823], [-124, 278, -1, -0.42854247937425644], [-47, 33, 1, 0.5473646162654265], [17, -13, -1, -0.06811710120205132], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-303, -183, 1, -0.14909793758547304], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-37, -25, -1, 0.9963591358764053], [12, -2, 1, 3.4194472857051275], [3, -7, -1, 6.713359414688314], [-2, -8, 1, 2.206189033175403], [-51, -1, -1, -0.03261932775064033], [9, 1, 1, 4.574711769348589], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 7.4861951646441405], [-2, -4, -1, 6.6790000967449314], [9, 7, 1, -0.2207635892471435], [-3, 49, -1, 0.032643297384092565], [147, 333, 1, -0.08059188724296829]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 152, "state": [[8, -5, 0, 4.324474873056523], [-25, 22, 1, 1.177520393009345], [5, -6, -1, 5.311449838810777], [-282, 177, 1, 0.2651493373014743], [41, 22, -1, 0.0397030311757543], [-2, -3, 1, 6.565485295005317], [4, 5, -1, -0.08551151812868456], [2, 1, 0, 0.09173296543276846], [-118, -303, -1, 0.3042838097539766], [3, -4, 1, -0.11431658308320174], [7, 0, -1, 5.936802843492254], [179, 284, 1, 0.25142429474088784], [-125, 280, -1, -0.42859363266468226], [-48, 31, 1, 0.5535258177735246], [19, -14, -1, -0.07095322568975317], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-305, -184, 1, -0.14917746014196484], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-38, -23, -1, 1.004306254481581], [13, 0, 1, 3.4457315140607543], [1, -8, -1, 6.75800823181261], [0, -7, 1, 2.2451785983640877], [-50, -3, -1, -0.039036904551682225], [10, 3, 1, 4.603486915148822], [8, -5, 0, 1.5062791719753927], [5, -4, 1, 7.503806808382779], [-3, -2, -1, 6.761624767014215], [7, 6, 1, -0.21319050315295945], [-2, 51, -1, 0.0361371559365631], [148, 335, 1, -0.08063844786139818]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 153, "state": [[8, -5, 0, 4.324474873056523], [-27, 21, 1, 1.1871670418109992], [3, -7, -1, 5.357580340418046], [-284, 178, 1, 0.2652520234164316], [40, 24, -1, 0.032074140405353675], [0, -4, 1, 6.659068815910817], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-119, -305, -1, 0.30438397582834703], [5, -3, 1, -0.052743400244083805], [6, -2, -1, 5.988011034667037], [180, 286, 1, 0.2515281121672688], [-126, 282, -1, -0.42864404601209083], [-49, 29, 1, 0.5597400303888679], [20, -16, -1, -0.06463251336126927], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-307, -185, 1, -0.14925599361054528], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-40, -22, -1, 1.010901201469818], [14, 2, 1, 3.4683151317111878], [-1, -7, -1, 6.800383561543327], [2, -8, 1, 2.2841681635527724], [-52, -4, -1, -0.041717668419862824], [8, 4, 1, 4.630891934435168], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 7.4861951646441405], [-4, 0, -1, 6.855208287919714], [6, 4, 1, -0.23238835626136134], [-3, 53, -1, 0.03337616224154349], [149, 337, 1, -0.08068444401253731]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 154, "state": [[8, -5, 0, 4.324474873056523], [-29, 20, 1, 1.1962856389320777], [1, -8, -1, 5.402229157542342], [-286, 179, 1, 0.26535335474262794], [38, 25, -1, 0.025471499254232897], [2, -3, 1, 6.7526523368163165], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-120, -307, -1, 0.3044827885959608], [3, -4, 1, -0.11431658308320174], [7, -4, -1, 6.019427513761538], [181, 288, 1, 0.251630571228425], [-127, 284, -1, -0.4286937353464401], [-50, 27, 1, 0.5659888057100646], [21, -18, -1, -0.05923949560872933], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-309, -186, 1, -0.1493335562927836], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-42, -21, -1, 1.017139375263971], [13, 4, 1, 3.4932390945303444], [-3, -6, -1, 6.85159175271811], [3, -6, 1, 2.3189704071893043], [-50, -3, -1, -0.039036904551682225], [6, 5, 1, 4.6676711564217985], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 7.550635693848719], [-3, 2, -1, 6.948791808825214], [8, 3, 1, -0.2688717515569067], [-5, 52, -1, 0.027118872627584306], [150, 339, 1, -0.08072988589178381]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 155, "state": [[8, -5, 0, 4.324474873056523], [-31, 19, 1, 1.204863477732927], [-1, -9, -1, 5.439632513361263], [-288, 180, 1, 0.2654533578353999], [40, 26, -1, 0.026351609783900547], [3, -5, 1, 6.745079250722132], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-121, -309, -1, 0.3045802752241714], [5, -3, 1, -0.052743400244083805], [6, -6, -1, 6.061802843492254], [182, 290, 1, 0.2517316983274257], [-128, 286, -1, -0.4287427161439577], [-51, 25, 1, 0.5722530658850309], [23, -19, -1, -0.06213290304209037], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-311, -187, 1, -0.14941016604240648], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-43, -19, -1, 1.024712461358155], [12, 6, 1, 3.5195233228859713], [-4, -4, -1, 6.9027999438928935], [2, -4, 1, 2.3189704071893043], [-51, -5, -1, -0.04505276281298793], [5, 7, 1, 4.708384353965577], [8, -5, 0, 1.5062791719753927], [4, 0, 1, 7.6111951646441405], [-1, 3, -1, 7.0540000967449314], [10, 4, 1, -0.26541240637143904], [-3, 53, -1, 0.03337616224154349], [151, 341, 1, -0.08077478345065171]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 156, "state": [[8, -5, 0, 4.324474873056523], [-33, 18, 1, 1.2129018306585908], [-2, -7, -1, 5.466313636014077], [-290, 181, 1, 0.2655520585626487], [41, 24, -1, 0.03379777276044797], [5, -6, 1, 6.769639846722665], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-122, -311, -1, 0.30467646215996386], [3, -4, 1, -0.11431658308320174], [4, -7, -1, 6.10417817322297], [183, 292, 1, 0.25183151918959995], [-129, 288, -1, -0.42879100344317145], [-52, 23, 1, 0.5785134476598874], [22, -17, -1, -0.0673146461040496], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-313, -188, 1, -0.1494858402788851], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-45, -18, -1, 1.030371713293766], [11, 8, 1, 3.545807551241598], [-5, -2, -1, 6.967240473097472], [0, -3, 1, 2.2451785983640877], [-53, -4, -1, -0.041488007766724164], [3, 8, 1, 4.7499999999999964], [8, -5, 0, 1.5062791719753927], [3, 2, 1, 7.70477868554964], [0, 5, -1, 7.105208287919715], [9, 2, 1, -0.29116963353032876], [-2, 51, -1, 0.0361371559365631], [152, 343, 1, -0.08081914640401502]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 157, "state": [[8, -5, 0, 4.324474873056523], [-35, 17, 1, 1.220412807509843], [-4, -6, -1, 5.515604390528124], [-292, 182, 1, 0.2656494821268744], [43, 25, -1, 0.034269241800990315], [4, -4, 1, 6.784068815910818], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-123, -313, -1, 0.3047713751536091], [5, -3, 1, -0.052743400244083805], [2, -6, -1, 6.1355946523174705], [184, 294, 1, 0.2519300588840769], [-130, 290, -1, -0.42883861186026534], [-53, 21, 1, 0.5847506594614321], [23, -15, -1, -0.08004491973270833], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-315, -189, 1, -0.14956059600053262], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-46, -16, -1, 1.037656161795269], [10, 10, 1, 3.5707315140607547], [-4, 0, -1, 7.0277999438928935], [2, -4, 1, 2.3189704071893043], [-55, -3, -1, -0.038171627050752194], [1, 9, 1, 4.789488481871312], [8, -5, 0, 1.5062791719753927], [4, 4, 1, 7.7361951646441405], [-2, 4, -1, 7.031416479094498], [8, 4, 1, -0.2521800683416441], [0, 50, -1, 0.04237532973071608], [153, 345, 1, -0.0808629842370949]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 158, "state": [[8, -5, 0, 4.324474873056523], [-37, 16, 1, 1.227416382349567], [-6, -5, -1, 5.561449838810777], [-294, 183, 1, 0.26574565308637155], [45, 24, -1, 0.040105444839299696], [5, -2, 1, 6.848509345115396], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-124, -315, -1, 0.30486503928139547], [3, -4, 1, -0.11431658308320174], [0, -7, -1, 6.186802843492254], [185, 296, 1, 0.25202734184451125], [-131, 292, -1, -0.42888555560379393], [-54, 19, 1, 0.5909458351931777], [22, -13, -1, -0.0870785727546056], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-317, -190, 1, -0.14963444979713045], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-47, -14, -1, 1.0448552436532783], [8, 11, 1, 3.5956554768799114], [-5, 2, -1, 7.088359414688315], [0, -3, 1, 2.2451785983640877], [-57, -4, -1, -0.040649530476572555], [-1, 10, 1, 4.822962884325228], [8, -5, 0, 1.5062791719753927], [3, 6, 1, 7.787403355818924], [0, 3, -1, 7.105208287919715], [7, 6, 1, -0.2131905031529594], [1, 48, -1, 0.04569057813066616], [154, 347, 1, -0.08090630621220107]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 159, "state": [[8, -5, 0, 4.324474873056523], [-39, 15, 1, 1.2339377991045446], [-7, -3, -1, 5.607580340418046], [-296, 184, 1, 0.26584059537562166], [47, 25, -1, 0.040281306583297254], [4, 0, 1, 6.909068815910818], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-125, -317, -1, 0.30495747896747816], [5, -3, 1, -0.052743400244083805], [-2, -6, -1, 6.238011034667037], [186, 298, 1, 0.2521233918890314], [-132, 294, -1, -0.42893184848878624], [-55, 17, 1, 0.5970808687032085], [24, -12, -1, -0.098229060797414], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-319, -191, 1, -0.14970741786210431], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-48, -12, -1, 1.051941618900503], [6, 10, 1, 3.6097210792494394], [-3, 3, -1, 7.1527999438928935], [2, -4, 1, 2.3189704071893043], [-58, -6, -1, -0.045904989972015524], [-2, 8, 1, 4.846089690798635], [8, -5, 0, 1.5062791719753927], [1, 7, 1, 7.838611546993707], [-1, 5, -1, 7.073791808825215], [5, 5, 1, -0.2009718771668607], [-1, 49, -1, 0.039127720486528794], [155, 349, 1, -0.08094912137523728]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [-2, -1], "using": [-2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 160, "state": [[8, -5, 0, 4.324474873056523], [-41, 14, 1, 1.2400054442739965], [-8, -1, -1, 5.652229157542342], [-298, 185, 1, 0.2659343323249184], [45, 24, -1, 0.040105444839299696], [3, 2, 1, 7.002652336816317], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-126, -319, -1, 0.3050487180048864], [3, -4, 1, -0.11431658308320174], [-4, -7, -1, 6.269427513761538], [187, 300, 1, 0.2522182322394425], [-133, 296, -1, -0.42897750395026824], [-56, 15, 1, 0.6031387144992384], [25, -14, -1, -0.09077412979888905], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-321, -192, 1, -0.1497795160042685], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-49, -10, -1, 1.0588905711623968], [4, 11, 1, 3.6402228848332547], [-1, 4, -1, 7.238810378704209], [3, -6, 1, 2.3189704071893043], [-56, -7, -1, -0.04929075451404688], [-4, 7, 1, 4.889724795879235], [8, -5, 0, 1.5062791719753927], [0, 5, 1, 7.8611951646441405], [0, 3, -1, 7.105208287919715], [3, 6, 1, -0.14976368599207734], [-2, 51, -1, 0.0361371559365631], [156, 351, 1, -0.08099143856198053]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-2, 1], "using": [-2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 25, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 161, "state": [[8, -5, 0, 4.324474873056523], [-43, 13, 1, 1.2456491911472696], [-9, 1, -1, 5.689632513361263], [-300, 186, 1, 0.26602688667925856], [43, 23, -1, 0.039913460682608676], [5, 3, 1, 6.995079250722133], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-127, -321, -1, 0.305138779575726], [5, -3, 1, -0.052743400244083805], [-6, -6, -1, 6.311802843492254], [188, 302, 1, 0.25231188553971795], [-134, 298, -1, -0.42902253505623206], [-57, 13, 1, 0.6091036430282893], [24, -16, -1, -0.07843734871713123], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-323, -193, 1, -0.149850759659155], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-51, -9, -1, 1.0631312401962951], [2, 10, 1, 3.664315034966254], [0, 6, -1, 7.2777999438928935], [2, -4, 1, 2.3189704071893043], [-54, -8, -1, -0.052907289715654865], [-6, 6, 1, 4.932100125609951], [8, -5, 0, 1.5062791719753927], [-1, 3, 1, 7.912403355818924], [-1, 5, -1, 7.073791808825215], [4, 8, 1, -0.14976368599207734], [-4, 50, -1, 0.029669992897658135], [157, 353, 1, -0.08103326640414288]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 25, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 162, "state": [[8, -5, 0, 4.324474873056523], [-45, 12, 1, 1.2508991709025565], [-7, 2, -1, 5.716313636014077], [-302, 187, 1, 0.26611828061653053], [44, 25, -1, 0.03584998981109982], [3, 4, 1, 7.0566524335612515], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-128, -323, -1, 0.3052276862706123], [3, -4, 1, -0.11431658308320174], [-5, -4, -1, 6.329414487230893], [189, 304, 1, 0.2524043738738081], [-135, 300, -1, -0.42906695452007787], [-58, 11, 1, 0.6149614423555455], [25, -18, -1, -0.07270451613808411], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-325, -194, 1, -0.1499211638999462], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-52, -7, -1, 1.0696345055841483], [0, 11, 1, 3.6957315140607547], [2, 7, 0, 7.322092710284346], [4, -3, 1, 2.3927622160145208], [-55, -6, -1, -0.046793012057169035], [-7, 4, 1, 4.974475455340667], [8, -5, 0, 1.5062791719753927], [-3, 2, 1, 8.017611643738642], [0, 3, -1, 7.105208287919715], [2, 7, 0, -0.12026464355831305], [-6, 49, -1, 0.022983503600633292], [158, 355, 1, -0.08107461333522477]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 163, "state": [[8, -5, 0, 4.324474873056523], [-47, 11, 1, 1.2557849035548083], [-6, 4, -1, 5.765604390528124], [-304, 188, 1, 0.2662085357650312], [46, 26, -1, 0.03620710576320861], [2, 6, 1, 7.107860624736035], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-129, -325, -1, 0.30531546010736904], [5, -3, 1, -0.052743400244083805], [-6, -2, -1, 6.3855946523174705], [190, 306, 1, 0.25249571878279736], [-136, 302, -1, -0.42911077471255316], [-59, 9, 1, 0.6206995619472835], [23, -19, -1, -0.062132903042090376], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-327, -195, 1, -0.14999074344802568], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-53, -5, -1, 1.0759608736448172], [-2, 10, 1, 3.7271479931552554], [2, 7, 0, 7.322092710284346], [3, -1, 1, 2.4439704071893043], [-54, -4, -1, -0.0412668057644831], [-8, 2, 1, 5.018110560421267], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 8.11119516464414], [2, 4, -1, 7.1790000967449314], [2, 7, 0, -0.12026464355831305], [-8, 50, -1, 0.017124560506209623], [159, 357, 1, -0.0811154875961684]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 164, "state": [[8, -5, 0, 4.324474873056523], [-49, 10, 1, 1.2603347168039254], [-5, 6, -1, 5.811449838810777], [-306, 189, 1, 0.2662976732203383], [44, 27, -1, 0.030487931035590412], [0, 7, 1, 7.1590688159108185], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-130, -327, -1, 0.30540212254902266], [3, -4, 1, -0.11431658308320174], [-5, 0, -1, 6.436802843492254], [191, 308, 1, 0.2525859412814353], [-137, 304, -1, -0.42915400767321343], [-60, 7, 1, 0.6263071980635979], [25, -18, -1, -0.07270451613808411], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-329, -196, 1, -0.15005951268316342], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-55, -4, -1, 1.0793766221622083], [-4, 11, 1, 3.7512401432882547], [2, 7, 0, 7.322092710284346], [5, 0, 1, 2.4951785983640877], [-55, -6, -1, -0.046793012057169035], [-9, 0, 1, 5.057100125609951], [8, -5, 0, 1.5062791719753927], [-3, -2, 1, 8.20477868554964], [3, 2, -1, 7.261624767014215], [2, 7, 0, -0.12026464355831305], [-10, 49, -1, 0.010334716803925201], [160, 359, 1, -0.08115589724081858]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, 2], "using": [-1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 165, "state": [[8, -5, 0, 4.324474873056523], [-51, 9, 1, 1.2645753858378237], [-3, 7, -1, 5.857580340418046], [-308, 190, 1, 0.266385713561568], [45, 25, -1, 0.03737734160812139], [-2, 6, 1, 7.210277007085602], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-131, -329, -1, 0.3054876945211253], [5, -3, 1, -0.052743400244083805], [-6, 2, -1, 6.488011034667037], [192, 310, 1, 0.2526750618740698], [-138, 306, -1, -0.4291966651214259], [-61, 5, 1, 0.6317753236372198], [23, -19, -1, -0.062132903042090376], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-331, -197, 1, -0.15012748565334974], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-56, -2, -1, 1.085249493842279], [-6, 10, 1, 3.78174194887207], [2, 7, 0, 7.322092710284346], [7, 1, 1, 2.517762216014521], [-56, -4, -1, -0.04084797793369434], [-8, -2, 1, 5.096089690798635], [8, -5, 0, 1.5062791719753927], [-1, -3, 1, 8.309986973469357], [4, 0, -1, 7.355208287919715], [2, 7, 0, -0.12026464355831305], [-12, 50, -1, 0.004887181728505485], [161, 361, 1, -0.08119585014119901]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, 2], "using": [1, 2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 166, "state": [[8, -5, 0, 4.324474873056523], [-53, 8, 1, 1.2685319367303998], [-1, 8, -1, 5.902229157542342], [-310, 191, 1, 0.2664726768670412], [47, 26, -1, 0.03766514408481679], [-3, 4, 1, 7.261485198260385], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-132, -331, -1, 0.3055721964284337], [3, -4, 1, -0.11431658308320174], [-5, 4, -1, 6.544191199753615], [193, 312, 1, 0.25276310057000584], [-139, 308, -1, -0.42923875846693793], [-62, 3, 1, 0.6370966681991712], [24, -17, -1, -0.07393416562364953], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-333, -198, 1, -0.15019467608429218], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-57, 0, -1, 1.090931184089188], [-8, 11, 1, 3.795807551241598], [2, 7, 0, 7.322092710284346], [6, 3, 1, 2.5689704071893047], [-57, -6, -1, -0.046190725649026716], [-6, -3, 1, 5.130891934435168], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 8.400184729832825], [5, -2, -1, 7.415767758715137], [2, 7, 0, -0.12026464355831305], [-14, 51, -1, -0.0002639383037961948], [162, 363, 1, -0.08123535399261105]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 167, "state": [[8, -5, 0, 4.324474873056523], [-55, 7, 1, 1.2722275669175904], [1, 9, -1, 5.939632513361263], [-312, 192, 1, 0.26655858272938504], [45, 25, -1, 0.03737734160812139], [-5, 3, 1, 7.323058381099504], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-133, -333, -1, 0.30565564817097285], [5, -3, 1, -0.052743400244083805], [-3, 5, -1, 6.600792408680938], [194, 314, 1, 0.25285007689831507], [-140, 310, -1, -0.4292802988200294], [-61, 5, 1, 0.6317753236372198], [26, -18, -1, -0.07564544314698073], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-335, -199, 1, -0.1502610973885885], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-59, 1, -1, 1.0936284672310745], [-10, 10, 1, 3.8207315140607547], [2, 7, 0, 7.322092710284346], [4, 4, 1, 2.620178598364088], [-55, -5, -1, -0.04392801162191634], [-7, -5, 1, 5.155815897254324], [8, -5, 0, 1.5062791719753927], [3, -5, 1, 8.447205599455456], [4, -4, -1, 7.480208287919715], [2, 7, 0, -0.12026464355831305], [-15, 53, -1, -0.0015205423635492833], [163, 365, 1, -0.0812744163185621]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 168, "state": [[8, -5, 0, 4.324474873056523], [-57, 6, 1, 1.2756836465154537], [0, 7, -1, 5.922020869622624], [-314, 193, 1, 0.2666434502700926], [47, 26, -1, 0.03766514408481679], [-6, 1, 1, 7.382784587555192], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-134, -335, -1, 0.30573806915950946], [3, -4, 1, -0.11431658308320174], [-1, 6, -1, 6.660518615136627], [195, 316, 1, 0.2529360099221182], [-141, 312, -1, -0.4293212970012688], [-60, 7, 1, 0.6263071980635979], [28, -17, -1, -0.08517717047158223], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-337, -200, 1, -0.150326762674589], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-58, 3, -1, 1.0991560066840873], [-11, 8, 1, 3.8456554768799114], [2, 7, 0, 7.322092710284346], [2, 3, 1, 2.651595077458589], [-54, -7, -1, -0.05001582896506207], [-5, -6, 1, 5.196529094798103], [8, -5, 0, 1.5062791719753927], [4, -3, 1, 8.508778782294574], [2, -5, -1, 7.544648817124293], [2, 7, 0, -0.12026464355831305], [-17, 54, -1, -0.006165709869994102], [164, 367, 1, -0.08131304447553002]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 169, "state": [[8, -5, 0, 4.324474873056523], [-59, 5, 1, 1.27891977313327], [2, 6, -1, 5.973229060797408], [-316, 194, 1, 0.2667272981535636], [49, 25, -1, 0.04299885227266073], [-5, -1, 1, 7.4404852950053195], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-135, -337, -1, 0.3058194783304616], [5, -3, 1, -0.052743400244083805], [1, 5, -1, 6.718219322586754], [196, 318, 1, 0.2530209182523619], [-142, 314, -1, -0.42936176355089056], [-59, 9, 1, 0.6206995619472835], [26, -18, -1, -0.07564544314698073], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-339, -201, 1, -0.15039168475495948], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-57, 5, -1, 1.1048565000753987], [-10, 6, 1, 3.8597210792494394], [2, 7, 0, 7.322092710284346], [3, 1, 1, 2.5463867895388717], [-53, -9, -1, -0.05626998163635006], [-3, -7, 1, 5.242659596405372], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 8.559986973469357], [0, -4, -1, 7.605208287919715], [2, 7, 0, -0.12026464355831305], [-18, 56, -1, -0.00712158392073608], [165, 369, 1, -0.08135124565756988]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [2, 1], "using": [2, 1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 170, "state": [[8, -5, 0, 4.324474873056523], [-61, 4, 1, 1.2819538600903664], [4, 7, -1, 6.004645539891908], [-318, 195, 1, 0.2668101446006466], [48, 27, -1, 0.03653525982002659], [-4, -3, 1, 7.511485198260385], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-136, -339, -1, 0.30589989416026725], [3, -4, 1, -0.11431658308320174], [3, 6, -1, 6.7605946523174705], [197, 320, 1, 0.25310482006111135], [-143, 316, -1, -0.4294017087378102], [-58, 11, 1, 0.6149614423555455], [27, -16, -1, -0.08688012529748379], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-341, -202, 1, -0.1504558761549575], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-56, 7, -1, 1.1107228961694708], [-11, 4, 1, 3.8902228848332547], [2, 7, 0, 7.322092710284346], [4, 3, 1, 2.597594980713655], [-54, -11, -1, -0.06148190683511694], [-1, -8, 1, 5.287308413529668], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 8.550635693848719], [-2, -3, -1, 7.698791808825215], [2, 7, 0, -0.12026464355831305], [-16, 55, -1, -0.00268076386818055], [166, 371, 1, -0.08138902690076931]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [2, -1], "using": [2, -1]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 171, "state": [[8, -5, 0, 4.324474873056523], [-63, 3, 1, 1.2848022436365323], [6, 6, -1, 6.047020869622624], [-320, 196, 1, 0.2668920074017042], [50, 26, -1, 0.041766709588121426], [-2, -4, 1, 7.585277007085602], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-137, -341, -1, 0.30597933467923527], [5, -3, 1, -0.052743400244083805], [5, 5, -1, 6.811802843492254], [198, 322, 1, 0.25318773309437764], [-144, 318, -1, -0.4294411425682946], [-57, 13, 1, 0.6091036430282893], [25, -15, -1, -0.0860104348113153], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-343, -203, 1, -0.15051934912043302], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-55, 9, -1, 1.1167459301986244], [-10, 2, 1, 3.914315034966254], [2, 7, 0, 7.322092710284346], [3, 1, 1, 2.5463867895388717], [-53, -9, -1, -0.05626998163635005], [1, -9, 1, 5.324711769348589], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 8.559986973469357], [-4, -2, -1, 7.781416479094498], [2, 7, 0, -0.12026464355831305], [-14, 54, -1, 0.002001843395882403], [167, 373, 1, -0.08142639508755795]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 172, "state": [[8, -5, 0, 4.324474873056523], [-65, 2, 1, 1.287479799109437], [7, 4, -1, 6.089396199353341], [-322, 197, 1, 0.26697290392922074], [48, 27, -1, 0.03653525982002659], [0, -3, 1, 7.6590688159108185], [4, 1, -1, 0.018110560421269434], [2, 1, 0, 0.09173296543276846], [-138, -343, -1, 0.3060578174848997], [3, -4, 1, -0.11431658308320174], [6, 3, -1, 6.863011034667037], [199, 324, 1, 0.2532696746844992], [-145, 320, -1, -0.4294800747943018], [-56, 15, 1, 0.6031387144992384], [26, -17, -1, -0.07985833723542857], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-345, -204, 1, -0.1505821156255628], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-53, 10, -1, 1.1206114963114178], [-11, 0, 1, 3.9457315140607547], [2, 7, 0, 7.322092710284346], [2, 3, 1, 2.651595077458589], [-55, -10, -1, -0.05812361595811419], [2, -7, 1, 5.351392892001403], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 8.550635693848719], [-3, 0, -1, 7.855208287919715], [2, 7, 0, -0.12026464355831305], [-13, 52, -1, 0.0033857645420314066], [168, 375, 1, -0.08146335695087675]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 173, "state": [[8, -5, 0, 4.324474873056523], [-67, 1, 1, 1.290000059185531], [8, 2, -1, 6.13303130443394], [-324, 198, 1, 0.2670528511499694], [46, 28, -1, 0.031060428361657434], [2, -4, 1, 7.732860624736035], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-139, -345, -1, 0.3061353597548984], [5, -3, 1, -0.052743400244083805], [5, 1, -1, 6.905386364397754], [200, 326, 1, 0.25335066176209475], [-146, 322, -1, -0.42951851492150506], [-55, 17, 1, 0.5970808687032085], [24, -16, -1, -0.07843734871713125], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-347, -205, 1, -0.1506441873803306], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-52, 12, -1, 1.1270273418445116], [-10, -2, 1, 3.9771479931552554], [2, 7, 0, 7.322092710284346], [0, 4, 1, 2.745178598364088], [-53, -11, -1, -0.06206879803144491], [4, -6, 1, 5.40068364651545], [8, -5, 0, 1.5062791719753927], [4, 0, 1, 8.61119516464414], [-4, 2, -1, 7.9290000967449314], [2, 7, 0, -0.12026464355831305], [-14, 54, -1, 0.002001843395882403], [169, 377, 1, -0.08149991907821243]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [-2, -1], "using": [-2, -1]}, {"seat": 11, "got": [1, -2], "using": [1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 174, "state": [[8, -5, 0, 4.324474873056523], [-69, 0, 1, 1.2923753297307163], [9, 0, -1, 6.172020869622624], [-326, 199, 1, 0.26713186563675906], [48, 27, -1, 0.03653525982002659], [4, -3, 1, 7.8066524335612515], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-140, -347, -1, 0.3062119782593956], [3, -4, 1, -0.11431658308320174], [6, -1, -1, 6.963087071847881], [201, 328, 1, 0.25343071086760616], [-147, 324, -1, -0.42955647221701526], [-54, 19, 1, 0.5909458351931777], [26, -15, -1, -0.0887385380424936], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-349, -206, 1, -0.15070557583776137], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-50, 13, -1, 1.1314151179726288], [-11, -4, 1, 4.001240143288254], [2, 7, 0, 7.322092710284346], [-2, 5, 1, 2.80573806915951], [-55, -10, -1, -0.05812361595811419], [6, -5, 1, 5.446529094798103], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 8.550635693848719], [-3, 4, -1, 8.002791905570149], [2, 7, 0, -0.12026464355831305], [-13, 52, -1, 0.0033857645420314066], [170, 379, 1, -0.08153608791550174]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 10, "got": [2, 1], "using": [2, 1]}, {"seat": 11, "got": [-1, -2], "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 175, "state": [[8, -5, 0, 4.324474873056523], [-67, -1, 1, 1.2947506002759017], [7, -1, -1, 6.1946044872730575], [-328, 200, 1, 0.2672099635797751], [50, 28, -1, 0.036837835392927426], [5, -1, 1, 7.877652336816317], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-141, -349, -1, 0.30628768937306683], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [202, 330, 1, 0.2535098381624451], [-148, 326, -1, -0.4295939557168149], [-55, 17, 1, 0.5970808687032085], [27, -13, -1, -0.10060433134259936], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-351, -207, 1, -0.15076629220091992], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-49, 15, -1, 1.1382104218989653], [-10, -6, 1, 4.03174194887207], [2, 7, 0, 7.322092710284346], [-3, 3, 1, 2.870178598364088], [-56, -12, -1, -0.0630955898699088], [8, -4, 1, 5.483308316784734], [8, -5, 0, 1.5062791719753927], [6, 0, 1, 8.61119516464414], [-1, 5, -1, 8.073791808825215], [2, 7, 0, -0.12026464355831305], [-15, 51, -1, -0.003151171197158334], [171, 381, 1, -0.08157186977091106]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 176, "state": [[8, -5, 0, 4.324474873056523], [-65, -2, 1, 1.2972708603519956], [6, -3, -1, 6.245812678447841], [-330, 201, 1, 0.2672871607975329], [51, 30, -1, 0.03345806155150268], [7, 0, 1, 7.909068815910818], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-142, -351, -1, 0.3063625090866643], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [203, 332, 1, 0.2535880594397621], [-149, 328, -1, -0.4296309742329155], [-56, 15, 1, 0.6031387144992384], [26, -11, -1, -0.1083205906293257], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-353, -208, 1, -0.15082634742968215], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-47, 16, -1, 1.1431530873076674], [-11, -8, 1, 4.045807551241598], [2, 7, 0, 7.322092710284346], [-4, 1, 1, 2.9561890331754035], [-57, -14, -1, -0.0678309463115957], [10, -3, 1, 5.510713336071079], [8, -5, 0, 1.5062791719753927], [7, 2, 1, 8.655487931035593], [0, 3, -1, 8.105208287919716], [2, 7, 0, -0.12026464355831305], [-16, 49, -1, -0.00785646299997463], [172, 383, 1, -0.0816072708184955]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 177, "state": [[8, -5, 0, 4.324474873056523], [-63, -3, 1, 1.2999484158249004], [7, -5, -1, 6.270736641266998], [-332, 202, 1, 0.26736347274745664], [53, 29, -1, 0.03840083195628168], [8, 2, 1, 7.948058381099502], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-143, -353, -1, 0.3064364530181797], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [204, 334, 1, 0.2536653901348506], [-150, 330, -1, -0.4296675363602512], [-57, 13, 1, 0.6091036430282893], [27, -9, -1, -0.1208126784478473], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-355, -209, 1, -0.15088575224728748], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-45, 17, -1, 1.1484185472393635], [-9, -7, 1, 4.050939801980472], [2, 7, 0, 7.322092710284346], [-3, -1, 1, 3.0463867895388717], [-56, -12, -1, -0.0630955898699088], [11, -1, 1, 5.5426711564217985], [8, -5, 0, 1.5062791719753927], [5, 3, 1, 8.697205599455456], [2, 4, -1, 8.179000096744932], [2, 7, 0, -0.12026464355831305], [-18, 48, -1, -0.014724795879237983], [173, 385, 1, -0.08164229710174188]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 178, "state": [[8, -5, 0, 4.324474873056523], [-61, -4, 1, 1.3027967993710663], [5, -6, -1, 6.311449838810777], [-334, 203, 1, 0.2674389145361011], [54, 27, -1, 0.04429276639145238], [6, 3, 1, 7.982860624736034], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-144, -355, -1, 0.30650953642362055], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [205, 336, 1, 0.2537418453352015], [-151, 332, -1, -0.4297036504833191], [-58, 11, 1, 0.6149614423555455], [29, -8, -1, -0.12918153262613435], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-357, -210, 1, -0.15094451714668172], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-43, 18, -1, 1.1540267739590968], [-7, -6, 1, 4.058512888074656], [2, 7, 0, 7.322092710284346], [-2, -3, 1, 3.151595077458589], [-57, -14, -1, -0.0678309463115957], [12, 1, 1, 5.570332463639746], [8, -5, 0, 1.5062791719753927], [3, 4, 1, 8.758778782294574], [4, 3, -1, 8.252791905570149], [2, 7, 0, -0.12026464355831305], [-19, 50, -1, -0.015421311971259581], [174, 387, 1, -0.08167695453700029]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 179, "state": [[8, -5, 0, 4.324474873056523], [-59, -5, 1, 1.3058308863281627], [3, -7, -1, 6.357580340418046], [-336, 204, 1, 0.267513500929028], [52, 26, -1, 0.04429276639145238], [4, 4, 1, 8.034068815910818], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-145, -357, -1, 0.3065817742074156], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [206, 338, 1, 0.25381743979022103], [-152, 334, -1, -0.42973932478257787], [-59, 9, 1, 0.6206995619472835], [28, -10, -1, -0.11742691390581592], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-359, -211, 1, -0.1510026523966562], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-42, 20, -1, 1.1616626981499423], [-6, -4, 1, 4.039315034966254], [2, 7, 0, 7.322092710284346], [0, -4, 1, 3.245178598364088], [-58, -16, -1, -0.07233837943026038], [10, 2, 1, 5.588516604704451], [8, -5, 0, 1.5062791719753927], [1, 3, 1, 8.809986973469357], [3, 1, -1, 8.304000096744932], [2, 7, 0, -0.12026464355831305], [-17, 51, -1, -0.008832861444067308], [175, 389, 1, -0.08171124891680788]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 180, "state": [[8, -5, 0, 4.324474873056523], [-57, -6, 1, 1.309067012945979], [1, -8, -1, 6.402229157542342], [-338, 205, 1, 0.2675872463603517], [53, 24, -1, 0.050411094618579615], [3, 6, 1, 8.085277007085601], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-146, -359, -1, 0.306653180932464], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [207, 340, 1, 0.2538921879206259], [-153, 336, -1, -0.4297745672406139], [-60, 7, 1, 0.6263071980635979], [29, -12, -1, -0.10957799629734424], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-361, -212, 1, -0.1510601680477928], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-40, 21, -1, 1.1678741641115629], [-4, -3, 1, 4.048147896410321], [2, 7, 0, 7.322092710284346], [2, -3, 1, 3.3387621192695875], [-56, -15, -1, -0.0711520400148085], [8, 3, 1, 5.614200251219905], [8, -5, 0, 1.5062791719753927], [-1, 4, 1, 8.900184729832825], [4, -1, -1, 8.3941978531084], [2, 7, 0, -0.12026464355831305], [-16, 53, -1, -0.004286814106243086], [176, 391, 1, -0.0817451859131092]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 181, "state": [[8, -5, 0, 4.324474873056523], [-55, -7, 1, 1.3125230925438423], [-1, -9, -1, 6.439632513361263], [-340, 206, 1, 0.2676601649419668], [52, 22, -1, 0.05438429622336406], [1, 7, 1, 8.136485198260385], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-147, -361, -1, 0.30672377082984276], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [208, 342, 1, 0.2539661038275272], [-154, 338, -1, -0.4298093856480855], [-61, 5, 1, 0.6317753236372198], [27, -13, -1, -0.10060433134259937], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-363, -213, 1, -0.15111707393822071], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-39, 23, -1, 1.175735922700116], [-2, -4, 1, 4.121939705235538], [2, 7, 0, 7.322092710284346], [3, -1, 1, 3.4439704071893047], [-58, -14, -1, -0.06719469350365714], [6, 4, 1, 5.65068364651545], [8, -5, 0, 1.5062791719753927], [-3, 3, 1, 8.98619516464414], [3, -3, -1, 8.480208287919716], [2, 7, 0, -0.12026464355831305], [-14, 52, -1, 0.0005184181765710413], [177, 393, 1, -0.08177877108037618]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 182, "state": [[8, -5, 0, 4.324474873056523], [-53, -8, 1, 1.316218722731033], [-2, -7, -1, 6.466313636014077], [-342, 207, 1, 0.2677322704724698], [50, 21, -1, 0.054800114854219886], [0, 5, 1, 8.159068815910818], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-148, -363, -1, 0.3067935578081852], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [209, 344, 1, 0.25403920130121566], [-155, 340, -1, -0.42984378760945446], [-62, 3, 1, 0.6370966681991712], [26, -11, -1, -0.10832059062932571], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-365, -214, 1, -0.15117337969919195], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-38, 25, -1, 1.183544260051624], [0, -3, 1, 4.195731514060754], [2, 7, 0, 7.322092710284346], [5, 0, 1, 3.495178598364088], [-57, -16, -1, -0.07305327610715089], [5, 6, 1, 5.696529094798103], [8, -5, 0, 1.5062791719753927], [-4, 1, 1, 9.072205599455456], [1, -4, -1, 8.566218722731032], [2, 7, 0, -0.12026464355831305], [-15, 54, -1, -0.0007472008158235482], [178, 395, 1, -0.08181200985863236]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 183, "state": [[8, -5, 0, 4.324474873056523], [-51, -9, 1, 1.320175273623609], [-4, -6, -1, 6.515604390528124], [-344, 208, 1, 0.26780357644578645], [48, 20, -1, 0.055251617027667836], [-2, 4, 1, 8.232860624736034], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-149, -365, -1, 0.3068625554627441], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [210, 346, 1, 0.254111493829659], [-156, 342, -1, -0.42987778054851294], [-63, 1, 1, 0.6422656552769519], [25, -9, -1, -0.11702399086006142], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-367, -215, 1, -0.15122909476048277], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-36, 26, -1, 1.1904802200732942], [-1, -5, 1, 4.164315034966254], [2, 7, 0, 7.322092710284346], [7, 1, 1, 3.5177622160145217], [-55, -17, -1, -0.0772098858108384], [3, 7, 1, 5.742659596405372], [8, -5, 0, 1.5062791719753927], [-3, -1, 1, 9.162403355818924], [-1, -3, -1, 8.6564164790945], [2, 7, 0, -0.12026464355831305], [-16, 52, -1, -0.005132250738873836], [179, 397, 1, -0.0818449075763838]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 184, "state": [[8, -5, 0, 4.324474873056523], [-49, -10, 1, 1.3244159426575073], [-6, -5, -1, 6.561449838810777], [-346, 209, 1, 0.2678740960595167], [46, 21, -1, 0.049924218337286254], [-3, 2, 1, 8.315485295005319], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-150, -367, -1, 0.30693077708415134], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [211, 348, 1, 0.25418299460672317], [-157, 344, -1, -0.4299113717137153], [-64, -1, 1, 0.647278305719758], [24, -7, -1, -0.1268536343217641], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-369, -216, 1, -0.15128422835562694], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-35, 28, -1, 1.198319540350549], [1, -6, 1, 4.222015742416382], [2, 7, 0, 7.322092710284346], [6, 3, 1, 3.568970407189305], [-54, -15, -1, -0.07262157298030371], [1, 8, 1, 5.787308413529668], [8, -5, 0, 1.5062791719753927], [-4, -3, 1, 9.213611546993707], [-3, -2, -1, 8.761624767014217], [2, 7, 0, -0.12026464355831305], [-17, 54, -1, -0.006165709869994103], [180, 399, 1, -0.08187746945346044]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 185, "state": [[8, -5, 0, 4.324474873056523], [-47, -11, 1, 1.3289657559066244], [-7, -3, -1, 6.607580340418046], [-348, 210, 1, 0.26794384222300655], [44, 22, -1, 0.04429276639145238], [-5, 1, 1, 8.377652336816318], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-151, -369, -1, 0.30699823566688583], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [212, 350, 1, 0.2542537165401271], [-158, 346, -1, -0.4299445681833219], [-62, -2, 1, 0.6499239628191567], [23, -9, -1, -0.11265802998556626], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-371, -217, 1, -0.15133878952698696], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-34, 30, -1, 1.2059969219364173], [3, -7, 1, 4.260172043265333], [2, 7, 0, 7.322092710284346], [4, 4, 1, 3.6201785983640886], [-53, -13, -1, -0.06778125697724639], [-1, 9, 1, 5.824711769348589], [8, -5, 0, 1.5062791719753927], [-3, -5, 1, 9.275184729832825], [-1, -3, -1, 8.6564164790945], [2, 7, 0, -0.12026464355831305], [-15, 53, -1, -0.0015205423635492842], [181, 401, 1, -0.08190970060377135]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 186, "state": [[8, -5, 0, 4.324474873056523], [-45, -12, 1, 1.3338514885588761], [-8, -1, -1, 6.652229157542342], [-350, 211, 1, 0.2680128275651592], [43, 20, -1, 0.04879594948493408], [-4, -1, 1, 8.448058381099504], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-152, -371, -1, 0.30706494391746114], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [213, 352, 1, 0.25432367225914115], [-159, 348, -1, -0.4299773768703632], [-60, -3, 1, 0.6527428377083709], [22, -7, -1, -0.12299274678949143], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-373, -218, 1, -0.1513927871306687], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-33, 32, -1, 1.2134828396542372], [2, -5, 1, 4.256290984856177], [2, 7, 0, 7.322092710284346], [2, 3, 1, 3.6515950774585892], [-52, -11, -1, -0.06267731240167061], [-2, 7, 1, 5.851392892001403], [8, -5, 0, 1.5062791719753927], [-2, -3, 1, 9.26761164373864], [-3, -2, -1, 8.761624767014217], [2, 7, 0, -0.12026464355831305], [-17, 54, -1, -0.006165709869994103], [182, 403, 1, -0.08194160603797648]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 187, "state": [[8, -5, 0, 4.324474873056523], [-43, -13, 1, 1.339101468314163], [-9, 1, -1, 6.689632513361263], [-352, 212, 1, 0.26808106444199314], [41, 19, -1, 0.04901875140624716], [-3, -3, 1, 8.53406881591082], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-153, -373, -1, 0.30713091426234357], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [214, 354, 1, 0.25439287412203904], [-160, 350, -1, -0.43000980452743115], [-58, -4, 1, 0.6557505627164982], [21, -5, -1, -0.13481948697332205], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-375, -219, 1, -0.15144622984128625], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-31, 33, -1, 1.2209031580009821], [1, -3, 1, 4.246939705235539], [2, 7, 0, 7.322092710284346], [0, 4, 1, 3.7451785983640886], [-50, -10, -1, -0.06091552152826467], [-4, 6, 1, 5.90068364651545], [8, -5, 0, 1.5062791719753927], [-1, -5, 1, 9.32977868554964], [-4, 0, -1, 8.855208287919716], [2, 7, 0, -0.12026464355831305], [-18, 56, -1, -0.007121583920736081], [183, 405, 1, -0.08197319066607782]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 188, "state": [[8, -5, 0, 4.324474873056523], [-41, -14, 1, 1.3447452151874362], [-7, 2, -1, 6.716313636014077], [-354, 213, 1, 0.26814856494395783], [42, 21, -1, 0.044292766391452375], [-2, -5, 1, 8.598509345115398], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-154, -375, -1, 0.3071961588556108], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [215, 356, 1, 0.25446133422331213], [-161, 352, -1, -0.4300418577513047], [-56, -5, 1, 0.6589643933368333], [22, -3, -1, -0.1504509640158936], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-377, -220, 1, -0.15149912615658045], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-29, 34, -1, 1.2285361077222616], [-1, -4, 1, 4.156741948872071], [2, 7, 0, 7.322092710284346], [-2, 3, 1, 3.838762119269588], [-51, -8, -1, -0.05426272842584148], [-6, 5, 1, 5.946529094798103], [8, -5, 0, 1.5062791719753927], [0, -3, 1, 9.36119516464414], [-3, 2, -1, 8.948791808825215], [2, 7, 0, -0.12026464355831305], [-19, 58, -1, -0.008008231812609802], [184, 407, 1, -0.08200445929993315]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 189, "state": [[8, -5, 0, 4.324474873056523], [-39, -15, 1, 1.350812860356888], [-6, 4, -1, 6.765604390528124], [-356, 214, 1, 0.26821534090301646], [41, 19, -1, 0.04901875140624716], [0, -4, 1, 8.65906881591082], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-155, -377, -1, 0.307260689586361], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [216, 358, 1, 0.25452906440065515], [-162, 354, -1, -0.43007354298741646], [-55, -3, 1, 0.6534642966972709], [20, -4, -1, -0.14060439052813006], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-379, -221, 1, -0.15155148440189817], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-27, 35, -1, 1.2363544600888887], [0, -6, 1, 4.195731514060755], [2, 7, 0, 7.322092710284346], [-3, 1, 1, 3.943970407189305], [-49, -7, -1, -0.052082660084197416], [-7, 3, 1, 5.992659596405372], [8, -5, 0, 1.5062791719753927], [2, -4, 1, 9.434986973469357], [-1, 3, -1, 9.054000096744932], [2, 7, 0, -0.12026464355831305], [-18, 56, -1, -0.007121583920736082], [185, 409, 1, -0.08203541665569493]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 190, "state": [[8, -5, 0, 4.324474873056523], [-37, -16, 1, 1.3573342771118657], [-5, 6, -1, 6.811449838810777], [-358, 215, 1, 0.2682814038995026], [40, 17, -1, 0.05412487519298002], [2, -3, 1, 8.752652336816318], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-156, -379, -1, 0.3073245180858819], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [217, 360, 1, 0.25459607624173136], [-163, 356, -1, -0.43010486653416646], [-53, -4, 1, 0.6567806774132429], [21, -6, -1, -0.12772810323117828], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-381, -222, 1, -0.15160331273453553], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-25, 36, -1, 1.2443260969603993], [-2, -5, 1, 4.135172043265333], [2, 7, 0, 7.322092710284346], [-4, -1, 1, 4.034168163552773], [-50, -5, -1, -0.045361801149040884], [-8, 1, 1, 6.037308413529668], [8, -5, 0, 1.5062791719753927], [3, -2, 1, 9.517611643738642], [0, 5, -1, 9.105208287919716], [2, 7, 0, -0.12026464355831305], [-17, 58, -1, -0.0030025671851685544], [186, 411, 1, -0.08206606735617662]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 191, "state": [[8, -5, 0, 4.324474873056523], [-35, -17, 1, 1.3643378519515896], [-3, 7, -1, 6.857580340418046], [-360, 216, 1, 0.26834676526876106], [41, 19, -1, 0.04901875140624716], [3, -1, 1, 8.857860624736036], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-157, -381, -1, 0.30738765573458887], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [218, 362, 1, 0.2546623810907255], [-164, 358, -1, -0.43013583454708965], [-52, -2, 1, 0.6509100403074101], [23, -7, -1, -0.12499999999999997], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-383, -223, 1, -0.15165461914795145], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-23, 37, -1, 1.2524145793847332], [-4, -4, 1, 4.070731514060755], [2, 7, 0, 7.322092710284346], [-5, -3, 1, 4.081189033175404], [-52, -6, -1, -0.04778222203148081], [-9, -1, 1, 6.074711769348589], [8, -5, 0, 1.5062791719753927], [4, 0, 1, 9.61119516464414], [1, 3, -1, 9.1564164790945], [2, 7, 0, -0.12026464355831305], [-19, 57, -1, -0.00883286144406731], [187, 413, 1, -0.08209641593314938]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 192, "state": [[8, -5, 0, 4.324474873056523], [-33, -18, 1, 1.3718488288028419], [-1, 8, -1, 6.902229157542342], [-362, 217, 1, 0.2684114361075796], [39, 20, -1, 0.04266879272282688], [5, 0, 1, 8.90906881591082], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-158, -383, -1, 0.30745011366874037], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [219, 364, 1, 0.25472799005469215], [-165, 360, -1, -0.430166453042882], [-51, 0, 1, 0.644791712080283], [21, -8, -1, -0.11409181951269079], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-385, -224, 1, -0.15170541147585462], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-21, 38, -1, 1.2605800012134833], [-2, -3, 1, 4.102147993155255], [2, 7, 0, 7.322092710284346], [-3, -4, 1, 4.142762216014522], [-54, -7, -1, -0.05001582896506206], [-7, -2, 1, 6.101392892001403], [8, -5, 0, 1.5062791719753927], [6, 1, 1, 9.637479392999767], [3, 4, -1, 9.207624670269283], [2, 7, 0, -0.12026464355831305], [-20, 55, -1, -0.013133299496783882], [188, 415, 1, -0.08212646682957116]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 193, "state": [[8, -5, 0, 4.324474873056523], [-31, -19, 1, 1.3798871817285057], [1, 9, -1, 6.939632513361263], [-364, 218, 1, 0.2684754272804195], [41, 19, -1, 0.04901875140624716], [3, 1, 1, 8.960277007085603], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-159, -385, -1, 0.3075119027869393], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [220, 366, 1, 0.25479291400970705], [-166, 362, -1, -0.4301967279032914], [-52, -2, 1, 0.6509100403074101], [22, -6, -1, -0.1296455398919146], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-387, -225, 1, -0.1517556973961693], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-20, 40, -1, 1.2671393752639712], [0, -4, 1, 4.195731514060755], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 4.193970407189306], [-55, -9, -1, -0.05531378854320056], [-6, -4, 1, 6.15068364651545], [8, -5, 0, 1.5062791719753927], [8, 2, 1, 9.650184729832825], [5, 5, -1, 9.230208287919716], [2, 7, 0, -0.12026464355831305], [-19, 57, -1, -0.00883286144406731], [189, 417, 1, -0.08215622440175091]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 194, "state": [[8, -5, 0, 4.324474873056523], [-29, -20, 1, 1.388465020529355], [0, 7, -1, 6.922020869622624], [-366, 219, 1, 0.2685387494254521], [42, 21, -1, 0.044292766391452375], [2, 3, 1, 9.06548529500532], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-160, -387, -1, 0.307573033756428], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [221, 368, 1, 0.25485716360682786], [-167, 364, -1, -0.43022666487887884], [-50, -3, 1, 0.6543295741982009], [20, -5, -1, -0.13303130443394598], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-389, -226, 1, -0.15180548443488326], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-19, 42, -1, 1.273317045376153], [2, -3, 1, 4.289315034966255], [2, 7, 0, 7.322092710284346], [1, -4, 1, 4.284168163552773], [-57, -10, -1, -0.057139672122518526], [-5, -6, 1, 6.196529094798103], [8, -5, 0, 1.5062791719753927], [9, 4, 1, 9.677757634017969], [7, 6, -1, 9.242426913905815], [2, 7, 0, -0.12026464355831305], [-18, 59, -1, -0.004752859459662211], [190, 419, 1, -0.08218569292144941]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 195, "state": [[8, -5, 0, 4.324474873056523], [-27, -21, 1, 1.3975836176504335], [2, 6, -1, 6.973229060797408], [-368, 220, 1, 0.2686014129604089], [40, 20, -1, 0.044292766391452375], [0, 4, 1, 9.15906881591082], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-161, -389, -1, 0.30763351701918484], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [222, 370, 1, 0.2549207492778722], [-168, 366, -1, -0.4302562695926542], [-48, -4, 1, 0.6580240501100778], [22, -4, -1, -0.14339629609828056], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-391, -227, 1, -0.15185477996978305], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-17, 43, -1, 1.2810108863357028], [3, -1, 1, 4.394523322885973], [2, 7, 0, 7.322092710284346], [3, -3, 1, 4.370178598364089], [-58, -12, -1, -0.06196951236553962], [-3, -7, 1, 6.242659596405372], [8, -5, 0, 1.5062791719753927], [8, 6, 1, 9.713611546993707], [6, 4, -1, 9.261624767014217], [2, 7, 0, -0.12026464355831305], [-20, 60, -1, -0.00883286144406731], [191, 421, 1, -0.08221487657791972]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 196, "state": [[8, -5, 0, 4.324474873056523], [-25, -22, 1, 1.4072302664520877], [4, 7, -1, 7.004645539891908], [-370, 221, 1, 0.268663428088251], [39, 18, -1, 0.04926474030324701], [-2, 3, 1, 9.252652336816318], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-162, -391, -1, 0.30769336279782894], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [223, 372, 1, 0.2549836812410186], [-169, 368, -1, -0.4302855475435917], [-46, -5, 1, 0.6620235118072045], [21, -6, -1, -0.12772810323117828], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-393, -228, 1, -0.15190359123407907], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-15, 44, -1, 1.28864032292741], [5, 0, 1, 4.445731514060756], [2, 7, 0, 7.322092710284346], [4, -1, 1, 4.456189033175405], [-60, -11, -1, -0.05835698081006861], [-1, -8, 1, 6.287308413529668], [8, -5, 0, 1.5062791719753927], [6, 7, 1, 9.74841379063024], [7, 2, -1, 9.310915521528264], [2, 7, 0, -0.12026464355831305], [-22, 59, -1, -0.01442896918815223], [192, 423, 1, -0.08224377947988872]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 197, "state": [[8, -5, 0, 4.324474873056523], [-23, -23, 1, 1.4173753297307163], [6, 6, -1, 7.047020869622624], [-372, 222, 1, 0.2687248048026652], [37, 19, -1, 0.04258148886812117], [-3, 1, 1, 9.357860624736036], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-163, -393, -1, 0.30775258110134074], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [224, 374, 1, 0.255045969506237], [-170, 370, -1, -0.43031450411003036], [-44, -6, 1, 0.6663616176870198], [20, -4, -1, -0.14060439052813006], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-395, -229, 1, -0.15195192531992527], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-13, 45, -1, 1.2961716889972732], [7, 1, 1, 4.468315131711189], [2, 7, 0, 7.322092710284346], [5, 1, 1, 4.52659507745859], [-61, -9, -1, -0.05281272350985435], [1, -9, 1, 6.324711769348589], [8, -5, 0, 1.5062791719753927], [4, 8, 1, 9.787403355818924], [8, 0, -1, 9.355208287919716], [2, 7, 0, -0.12026464355831305], [-24, 60, -1, -0.018184141064705624], [193, 425, 1, -0.08227240565748162]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 198, "state": [[8, -5, 0, 4.324474873056523], [-21, -24, 1, 1.4279699820481895], [7, 4, -1, 7.089396199353341], [-374, 223, 1, 0.26878555289339184], [36, 21, -1, 0.03403891642908772], [-4, -1, 1, 9.448058381099504], [4, 1, -1, 0.018110560421269434], [2, 1, 0, 0.09173296543276846], [-164, -395, -1, 0.30781118173060473], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [225, 376, 1, 0.25510762388055463], [-171, 372, -1, -0.4303431445529625], [-42, -7, 1, 0.6710759404359096], [22, -3, -1, -0.1504509640158936], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-397, -230, 1, -0.15199978918183668], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-12, 47, -1, 1.3011458508164002], [8, 3, 1, 4.50283163967071], [2, 7, 0, 7.322092710284346], [4, 3, 1, 4.597594980713656], [-63, -8, -1, -0.04960160361700859], [2, -7, 1, 6.351392892001403], [8, -5, 0, 1.5062791719753927], [3, 6, 1, 9.787403355818924], [7, -2, -1, 9.399501054311168], [2, 7, 0, -0.12026464355831305], [-25, 58, -1, -0.022396082454714687], [194, 427, 1, -0.08230075906409196]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 199, "state": [[8, -5, 0, 4.324474873056523], [-19, -25, 1, 1.4389452353374532], [8, 2, -1, 7.13303130443394], [-376, 224, 1, 0.26884568195139186], [37, 23, -1, 0.02956797051221435], [-3, -3, 1, 9.53406881591082], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-165, -397, -1, 0.3078691742837807], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [226, 378, 1, 0.25516865397316385], [-172, 374, -1, -0.4303714740192158], [-43, -9, 1, 0.6776291796930807], [24, -4, -1, -0.14573664126700395], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-399, -231, 1, -0.15204718964000793], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-11, 49, -1, 1.3057851938098601], [7, 1, 1, 4.468315131711189], [2, 7, 0, 7.322092710284346], [3, 1, 1, 4.5463867895388725], [-61, -9, -1, -0.05281272350985435], [4, -6, 1, 6.40068364651545], [8, -5, 0, 1.5062791719753927], [1, 5, 1, 9.82977868554964], [6, -4, -1, 9.448791808825215], [2, 7, 0, -0.12026464355831305], [-23, 59, -1, -0.01678398707215549], [195, 429, 1, -0.0823288435781982]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 200, "state": [[8, -5, 0, 4.324474873056523], [-17, -26, 1, 1.4502127973435142], [9, 0, -1, 7.172020869622624], [-378, 225, 1, 0.26890520137385726], [39, 22, -1, 0.036341640763364186], [-1, -4, 1, 9.620079250722135], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-166, -399, -1, 0.30792656816150976], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [227, 380, 1, 0.2552290692003755], [-173, 376, -1, -0.4303994975445323], [-42, -11, 1, 0.6855594707954217], [26, -3, -1, -0.15373769002491397], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-401, -232, 1, -0.15209413338353653], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-9, 50, -1, 1.3125868126399332], [6, -1, 1, 4.419447285705129], [2, 7, 0, 7.322092710284346], [4, 3, 1, 4.597594980713656], [-60, -7, -1, -0.04798355645044907], [6, -5, 1, 6.446529094798103], [8, -5, 0, 1.5062791719753927], [0, 3, 1, 9.86119516464414], [4, -3, -1, 9.457624670269283], [2, 7, 0, -0.12026464355831305], [-22, 57, -1, -0.01624922189408846], [196, 431, 1, -0.08235666300512898]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 201, "state": [[8, -5, 0, 4.324474873056523], [-15, -27, 1, 1.4616680961221686], [7, -1, -1, 7.1946044872730575], [-380, 226, 1, 0.2689641203690711], [38, 20, -1, 0.040977517991502274], [1, -3, 1, 9.710277007085603], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-167, -401, -1, 0.3079833725719613], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [228, 382, 1, 0.25528887879042605], [-174, 378, -1, -0.430427220056548], [-43, -13, 1, 0.6915178506637295], [25, -5, -1, -0.14060439052813006], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-403, -233, 1, -0.15214062697355393], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-7, 51, -1, 1.3192220353481687], [7, 1, 1, 4.468315131711189], [2, 7, 0, 7.322092710284346], [3, 1, 1, 4.5463867895388725], [-61, -9, -1, -0.05281272350985435], [7, -3, 1, 6.492659596405372], [8, -5, 0, 1.5062791719753927], [-2, 4, 1, 9.934986973469357], [2, -4, -1, 9.5314164790945], [2, 7, 0, -0.12026464355831305], [-23, 59, -1, -0.01678398707215549], [197, 433, 1, -0.08238422107877894]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 202, "state": [[8, -5, 0, 4.324474873056523], [-13, -28, 1, 1.4731954163748964], [6, -3, -1, 7.245812678447841], [-382, 227, 1, 0.2690224479611224], [39, 18, -1, 0.04926474030324701], [3, -4, 1, 9.761485198260386], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-168, -403, -1, 0.3080395965357256], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [229, 384, 1, 0.25534809178814044], [-175, 380, -1, -0.43045464637767783], [-42, -15, 1, 0.6993856677970975], [26, -7, -1, -0.13016395806848563], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-405, -234, 1, -0.15218667684626722], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-6, 53, -1, 1.322990027481636], [6, 3, 1, 4.519523322885973], [2, 7, 0, 7.322092710284346], [4, 3, 1, 4.597594980713656], [-60, -7, -1, -0.04798355645044907], [8, -1, 1, 6.537308413529668], [8, -5, 0, 1.5062791719753927], [-3, 2, 1, 10.017611643738642], [0, -3, -1, 9.605208287919716], [2, 7, 0, -0.12026464355831305], [-24, 61, -1, -0.01728242299022945], [198, 435, 1, -0.08241152146327631]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 203, "state": [[8, -5, 0, 4.324474873056523], [-11, -29, 1, 1.484674622280589], [7, -5, -1, 7.270736641266998], [-384, 228, 1, 0.2690801929944808], [38, 20, -1, 0.040977517991502274], [4, -6, 1, 9.752652336816318], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-169, -405, -1, 0.3080952488905589], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [230, 386, 1, 0.25540671705945833], [-176, 382, -1, -0.4304817812279079], [-43, -17, 1, 0.7047120098337678], [25, -5, -1, -0.14060439052813006], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-407, -235, 1, -0.15223228931591476], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-5, 55, -1, 1.3265022149010355], [5, 5, 1, 4.570731514060756], [2, 7, 0, 7.322092710284346], [2, 4, 1, 4.6713867895388725], [-61, -9, -1, -0.05281272350985435], [9, 1, 1, 6.574711769348589], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 10.11119516464414], [-2, -4, -1, 9.679000096744932], [2, 7, 0, -0.12026464355831305], [-22, 60, -1, -0.013558846458862066], [199, 437, 1, -0.08243856775460401]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 204, "state": [[8, -5, 0, 4.324474873056523], [-9, -30, 1, 1.4959885401918451], [5, -6, -1, 7.311449838810777], [-386, 229, 1, 0.26913736413843564], [40, 19, -1, 0.047507580469589916], [3, -4, 1, 9.761485198260386], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-170, -407, -1, 0.3081503382959849], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [231, 388, 1, 0.25546476329582635], [-177, 384, -1, -0.4305086292275001], [-42, -19, 1, 0.7124058507933175], [26, -7, -1, -0.13016395806848563], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-409, -236, 1, -0.15227747057763816], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-4, 57, -1, 1.3297806960463794], [3, 4, 1, 4.593315131711189], [2, 7, 0, 7.322092710284346], [0, 3, 1, 4.745178598364089], [-59, -10, -1, -0.056220508544038705], [7, 2, 1, 6.601392892001403], [8, -5, 0, 1.5062791719753927], [-5, -2, 1, 10.171754635439562], [-4, -3, -1, 9.752791905570149], [2, 7, 0, -0.12026464355831305], [-21, 58, -1, -0.012912863428472372], [200, 439, 1, -0.08246536348217588]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 205, "state": [[8, -5, 0, 4.324474873056523], [-7, -31, 1, 1.5070298972712097], [3, -7, -1, 7.357580340418046], [-388, 230, 1, 0.2691939698914041], [41, 21, -1, 0.04274762131622828], [4, -2, 1, 9.835277007085603], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-171, -409, -1, 0.3082048732377586], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [232, 390, 1, 0.25552223901846244], [-178, 386, -1, -0.4305351948996106], [-43, -21, 1, 0.7170961348344869], [24, -6, -1, -0.133031304433946], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-411, -237, 1, -0.15232222671027376], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-3, 59, -1, 1.332845523460944], [2, 6, 1, 4.644523322885973], [2, 7, 0, 7.322092710284346], [-2, 4, 1, 4.818970407189306], [-57, -9, -1, -0.05442300525292075], [6, 4, 1, 6.65068364651545], [8, -5, 0, 1.5062791719753927], [-3, -3, 1, 10.23619516464414], [-5, -1, -1, 9.823791808825215], [2, 7, 0, -0.12026464355831305], [-19, 59, -1, -0.007208887775441793], [201, 441, 1, -0.08249191211036941]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 206, "state": [[8, -5, 0, 4.324474873056523], [-5, -32, 1, 1.5177068320903824], [1, -8, -1, 7.402229157542342], [-390, 231, 1, 0.2692500185851136], [39, 22, -1, 0.036341640763364186], [3, 0, 1, 9.90906881591082], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-172, -411, -1, 0.30825886203219605], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [233, 392, 1, 0.2555791525824957], [-179, 388, -1, -0.4305614826728272], [-42, -23, 1, 0.7245304691452858], [22, -5, -1, -0.13645346388572302], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-413, -238, 1, -0.15236656367906606], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-2, 61, -1, 1.3357148578467284], [1, 8, 1, 4.675939801980473], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 4.901595077458589], [-58, -7, -1, -0.04861494140775564], [5, 6, 1, 6.696529094798103], [8, -5, 0, 1.5062791719753927], [-1, -4, 1, 10.322205599455456], [-3, 0, -1, 9.855208287919716], [2, 7, 0, -0.12026464355831305], [-18, 61, -1, -0.0032923911628399798], [202, 443, 1, -0.08251821704001602]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 207, "state": [[8, -5, 0, 4.324474873056523], [-3, -33, 1, 1.5279463605425643], [-1, -9, -1, 7.439632513361263], [-392, 232, 1, 0.2693055183886614], [40, 20, -1, 0.044292766391452375], [5, 1, 1, 9.94048529500532], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-173, -413, -1, 0.30831231283037674], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [234, 394, 1, 0.2556355121809859], [-180, 390, -1, -0.43058749688362724], [-43, -25, 1, 0.7286070454959614], [23, -3, -1, -0.15137806970270704], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-415, -239, 1, -0.15241048733830567], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-1, 63, -1, 1.3384051272858568], [0, 10, 1, 4.695731514060755], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 4.995178598364089], [-60, -6, -1, -0.04536180114904088], [3, 7, 1, 6.742659596405372], [8, -5, 0, 1.5062791719753927], [1, -3, 1, 10.412403355818924], [-4, 2, -1, 9.929000096744932], [2, 7, 0, -0.12026464355831305], [-16, 60, -1, 0.0008991709025562063], [203, 445, 1, -0.08254428160985107]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 208, "state": [[8, -5, 0, 4.324474873056523], [-1, -34, 1, 1.5376956510698934], [-2, -7, -1, 7.466313636014077], [-394, 233, 1, 0.2693604773124573], [39, 22, -1, 0.036341640763364186], [4, 3, 1, 10.011485198260386], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-174, -415, -1, 0.3083652336222206], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [235, 396, 1, 0.2556913258488278], [-181, 392, -1, -0.43061324177875887], [-42, -27, 1, 0.7357228961694705], [22, -1, -1, -0.16479153017124232], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-417, -240, 1, -0.15245400343389373], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [1, 64, -1, 1.3434177777286629], [-2, 9, 1, 4.7305337576972875], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 5.088762119269588], [-62, -7, -1, -0.047392376043028095], [1, 8, 1, 6.787308413529668], [8, -5, 0, 1.5062791719753927], [3, -2, 1, 10.517611643738642], [-2, 3, -1, 10.011624767014217], [2, 7, 0, -0.12026464355831305], [-18, 61, -1, -0.0032923911628399798], [204, 447, 1, -0.08257010909792399]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 209, "state": [[8, -5, 0, 4.324474873056523], [1, -35, 1, 1.5469213770685406], [-4, -6, -1, 7.515604390528124], [-396, 234, 1, 0.2694149032120513], [41, 21, -1, 0.04274762131622828], [2, 4, 1, 10.085277007085603], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-175, -417, -1, 0.30841763224044566], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [236, 398, 1, 0.2557466014665426], [-182, 394, -1, -0.43063872151754945], [-43, -29, 1, 0.739226320825423], [21, 1, -1, -0.17959395571681475], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-419, -241, 1, -0.1524971176058365], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [3, 63, -1, 1.3485042701833718], [-3, 7, 1, 4.760172043265333], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 5.193970407189306], [-63, -5, -1, -0.04210396606683811], [-1, 9, 1, 6.824711769348589], [8, -5, 0, 1.5062791719753927], [4, 0, 1, 10.61119516464414], [0, 4, -1, 10.105208287919716], [2, 7, 0, -0.12026464355831305], [-19, 63, -1, -0.00424312622836923], [205, 449, 1, -0.08259570272297018]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 210, "state": [[8, -5, 0, 4.324474873056523], [3, -34, 1, 1.556382138256191], [-6, -5, -1, 7.561449838810777], [-398, 235, 1, 0.26946880379185223], [42, 19, -1, 0.05047043650363425], [0, 3, 1, 10.15906881591082], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-176, -419, -1, 0.30846951636440945], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [237, 400, 1, 0.2558013467639614], [-183, 396, -1, -0.4306639401741427], [-42, -31, 1, 0.7459885401918448], [20, 3, -1, -0.19571744076137548], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-421, -242, 1, -0.1525398353906704], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [4, 61, -1, 1.3513526537295377], [-4, 9, 1, 4.762293983434583], [2, 7, 0, 7.322092710284346], [1, -4, 1, 5.284168163552773], [-61, -4, -1, -0.03992051207411402], [-2, 7, 1, 6.851392892001403], [8, -5, 0, 1.5062791719753927], [6, 1, 1, 10.637479392999767], [2, 3, -1, 10.198791808825215], [2, 7, 0, -0.12026464355831305], [-20, 61, -1, -0.008048853287759348], [206, 451, 1, -0.08262106564574617]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 211, "state": [[8, -5, 0, 4.324474873056523], [5, -33, 1, 1.5663076857978389], [-7, -3, -1, 7.607580340418046], [-400, 236, 1, 0.26952218660873883], [41, 21, -1, 0.04274762131622828], [-2, 4, 1, 10.232860624736036], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-177, -421, -1, 0.30852089352383893], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [238, 402, 1, 0.2558555693238038], [-184, 398, -1, -0.4306889017396676], [-43, -33, 1, 0.7489698853032553], [19, 5, -1, -0.2129752108350494], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-423, -243, 1, -0.15258216222382182], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [6, 60, -1, 1.3567939428044646], [-6, 10, 1, 4.78174194887207], [2, 7, 0, 7.322092710284346], [3, -3, 1, 5.370178598364089], [-62, -6, -1, -0.044853320632808995], [-4, 6, 1, 6.90068364651545], [8, -5, 0, 1.5062791719753927], [5, 3, 1, 10.697205599455456], [3, 1, -1, 10.304000096744932], [2, 7, 0, -0.12026464355831305], [-22, 60, -1, -0.013558846458862066], [207, 453, 1, -0.08264620097032846]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 212, "state": [[8, -5, 0, 4.324474873056523], [7, -32, 1, 1.5766505721705113], [-8, -1, -1, 7.652229157542342], [-402, 237, 1, 0.26957505907556917], [43, 22, -1, 0.04281915162291401], [-3, 2, 1, 10.31548529500532], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-178, -423, -1, 0.30857177110245193], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [239, 404, 1, 0.2559092765851552], [-185, 400, -1, -0.4307136101243416], [-42, -35, 1, 0.7553627428921303], [18, 7, -1, -0.23105005158688968], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-425, -244, 1, -0.15262410344190167], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [7, 58, -1, 1.3600470830631795], [-8, 11, 1, 4.795807551241598], [2, 7, 0, 7.322092710284346], [5, -2, 1, 5.434619127568667], [-64, -7, -1, -0.04683769339880591], [-6, 5, 1, 6.946529094798103], [8, -5, 0, 1.5062791719753927], [3, 4, 1, 10.758778782294574], [5, 0, -1, 10.355208287919716], [2, 7, 0, -0.12026464355831305], [-20, 59, -1, -0.009640747617263284], [208, 455, 1, -0.08267111174537811]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 213, "state": [[8, -5, 0, 4.324474873056523], [9, -31, 1, 1.5873453471113468], [-9, 1, -1, 7.689632513361263], [-404, 238, 1, 0.2696274284645893], [41, 23, -1, 0.036719680297268305], [-4, 0, 1, 10.40906881591082], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-179, -425, -1, 0.308622156341474], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [240, 406, 1, 0.25596247584684606], [-186, 402, -1, -0.43073806915950974], [-43, -37, 1, 0.7578773972780075], [16, 6, -1, -0.22912099523258475], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-427, -245, 1, -0.1526656642849386], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [9, 57, -1, 1.3658551469083446], [-10, 10, 1, 4.820731514060754], [2, 7, 0, 7.322092710284346], [4, 0, 1, 5.495178598364089], [-66, -8, -1, -0.04869689554216598], [-7, 3, 1, 6.992659596405372], [8, -5, 0, 1.5062791719753927], [1, 3, 1, 10.809986973469357], [4, -2, -1, 10.429000096744932], [2, 7, 0, -0.12026464355831305], [-21, 61, -1, -0.010393154034529941], [209, 457, 1, -0.0826958009653712]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 214, "state": [[8, -5, 0, 4.324474873056523], [11, -30, 1, 1.5983095059202945], [-7, 2, -1, 7.716313636014077], [-406, 239, 1, 0.2696793019107466], [40, 21, -1, 0.041141595194294014], [-3, -2, 1, 10.502652336816318], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-180, -427, -1, 0.3086720563430545], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [241, 408, 1, 0.25601517427073633], [-187, 404, -1, -0.4307622825996229], [-42, -39, 1, 0.7638997776451119], [17, 8, -1, -0.24202399086006143], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-429, -246, 1, -0.15270684989855182], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [10, 55, -1, 1.369555757613538], [-9, 8, 1, 4.830082793681393], [2, 7, 0, 7.322092710284346], [6, 1, 1, 5.5214628267197154], [-68, -7, -1, -0.045825133007772814], [-8, 1, 1, 7.037308413529668], [8, -5, 0, 1.5062791719753927], [-1, 4, 1, 10.900184729832825], [2, -3, -1, 10.511624767014217], [2, 7, 0, -0.12026464355831305], [-20, 59, -1, -0.009640747617263284], [210, 459, 1, -0.08272027157179676]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 215, "state": [[8, -5, 0, 4.324474873056523], [13, -29, 1, 1.6094462796207765], [-6, 4, -1, 7.765604390528124], [-408, 240, 1, 0.26973068641491005], [41, 19, -1, 0.04901875140624715], [-1, -3, 1, 10.607860624736036], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-181, -429, -1, 0.30872147807358485], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [242, 410, 1, 0.25606737888490827], [-188, 406, -1, -0.4307862541241568], [-43, -41, 1, 0.7660030244924967], [19, 7, -1, -0.22820103470920866], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-431, -247, 1, -0.15274766533606518], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [12, 54, -1, 1.3757334277257198], [-8, 6, 1, 4.843315131711187], [2, 7, 0, 7.322092710284346], [5, 3, 1, 5.581189033175404], [-69, -9, -1, -0.05014184235368776], [-9, -1, 1, 7.074711769348589], [8, -5, 0, 1.5062791719753927], [-3, 3, 1, 10.98619516464414], [0, -4, -1, 10.605208287919716], [2, 7, 0, -0.12026464355831305], [-21, 61, -1, -0.010393154034529941], [211, 461, 1, -0.08274452645432351]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 216, "state": [[8, -5, 0, 4.324474873056523], [15, -28, 1, 1.6206491911472696], [-5, 6, -1, 7.811449838810777], [-410, 241, 1, 0.2697815888469991], [42, 17, -1, 0.056872833716264976], [1, -4, 1, 10.698058381099504], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-182, -431, -1, 0.30877042836692226], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [243, 412, 1, 0.25611909658677046], [-189, 408, -1, -0.4308099873394733], [-42, -43, 1, 0.7716640367969062], [18, 9, -1, -0.2458126784478473], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-433, -248, 1, -0.1527881155605654], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [13, 52, -1, 1.3799207492778724], [-10, 5, 1, 4.871939705235538], [2, 7, 0, 7.322092710284346], [3, 2, 1, 5.588762119269588], [-67, -10, -1, -0.05307944210183275], [-7, -2, 1, 7.101392892001403], [8, -5, 0, 1.5062791719753927], [-4, 1, 1, 11.072205599455456], [-2, -3, -1, 10.698791808825215], [2, 7, 0, -0.12026464355831305], [-19, 62, -1, -0.004951803034910682], [212, 463, 1, -0.08276856845193509]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 217, "state": [[8, -5, 0, 4.324474873056523], [17, -27, 1, 1.6318079239938086], [-3, 7, -1, 7.857580340418046], [-412, 242, 1, 0.26983201594902756], [41, 15, -1, 0.06226448857248896], [3, -3, 1, 10.78406881591082], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-183, -433, -1, 0.30881891392752264], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [244, 414, 1, 0.25617033414607576], [-190, 410, -1, -0.43083348578062713], [-40, -44, 1, 0.7773647981744667], [19, 11, -1, -0.2555447107944708], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-435, -249, 1, -0.15282820544690498], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [15, 51, -1, 1.3864576850170622], [-11, 3, 1, 4.903356184330038], [2, 7, 0, 7.322092710284346], [2, 4, 1, 5.671386789538872], [-65, -9, -1, -0.05139665164690224], [-6, -4, 1, 7.15068364651545], [8, -5, 0, 1.5062791719753927], [-3, 3, 1, 10.98619516464414], [-4, -2, -1, 10.7814164790945], [2, 7, 0, -0.12026464355831305], [-17, 63, -1, 0.00042783483797872914], [213, 465, 1, -0.0827924003540364]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 218, "state": [[8, -5, 0, 4.324474873056523], [19, -26, 1, 1.6428147337301837], [-1, 8, -1, 7.902229157542342], [-414, 243, 1, 0.26988197433806144], [40, 17, -1, 0.05412487519298001], [4, -1, 1, 10.870079250722135], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-184, -435, -1, 0.3088669413334844], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [245, 416, 1, 0.2562210982078566], [-191, 412, -1, -0.4308567529131194], [-38, -45, 1, 0.7831827289638733], [21, 12, -1, -0.2546455398919146], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-437, -250, 1, -0.15286793978365212], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [16, 49, -1, 1.3911629768198785], [-10, 1, 1, 4.929868755345478], [2, 7, 0, 7.322092710284346], [0, 3, 1, 5.745178598364088], [-67, -10, -1, -0.05307944210183275], [-5, -6, 1, 7.196529094798103], [8, -5, 0, 1.5062791719753927], [-4, 1, 1, 11.072205599455456], [-3, 0, -1, 10.855208287919716], [2, 7, 0, -0.12026464355831305], [-19, 62, -1, -0.004951803034910682], [214, 467, 1, -0.08281602490153066]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 219, "state": [[8, -5, 0, 4.324474873056523], [21, -25, 1, 1.6535704943748541], [1, 9, -1, 7.939632513361263], [-416, 244, 1, 0.26993147050909577], [39, 15, -1, 0.059647044590497286], [3, 1, 1, 10.960277007085603], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-185, -437, -1, 0.30891451703950773], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [246, 418, 1, 0.25627139529527926], [-192, 414, -1, -0.4308797921345989], [-36, -46, 1, 0.7891054828252102], [19, 11, -1, -0.2555447107944708], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-439, -251, 1, -0.15290732327498985], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [17, 47, -1, 1.3961677538498973], [-11, -1, 1, 4.960160483248907], [2, 7, 0, 7.322092710284346], [-2, 4, 1, 5.818970407189305], [-66, -8, -1, -0.04869689554216598], [-3, -7, 1, 7.242659596405372], [8, -5, 0, 1.5062791719753927], [-3, -1, 1, 11.162403355818924], [-4, 2, -1, 10.929000096744932], [2, 7, 0, -0.12026464355831305], [-21, 61, -1, -0.010393154034529941], [215, 469, 1, -0.08283944478786852]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 220, "state": [[8, -5, 0, 4.324474873056523], [23, -24, 1, 1.6639895651886847], [0, 7, -1, 7.922020869622624], [-418, 245, 1, 0.2699805108378526], [41, 14, -1, 0.06571468975994926], [2, 3, 1, 11.06548529500532], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-186, -439, -1, 0.30896164737977044], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [247, 420, 1, 0.25632123181242056], [-193, 416, -1, -0.43090260677651426], [-34, -47, 1, 0.7951191086186042], [18, 9, -1, -0.24581267844784727], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-441, -252, 1, -0.15294636054256405], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [19, 46, -1, 1.4032721656594498], [-10, -3, 1, 4.992118303599626], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 5.901595077458588], [-67, -10, -1, -0.05307944210183275], [-1, -8, 1, 7.287308413529668], [8, -5, 0, 1.5062791719753927], [-2, -3, 1, 11.267611643738642], [-2, 3, -1, 11.011624767014217], [2, 7, 0, -0.12026464355831305], [-23, 60, -1, -0.01588437421739726], [216, 471, 1, -0.08286266266007028]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 221, "state": [[8, -5, 0, 4.324474873056523], [25, -23, 1, 1.6740029520373516], [2, 6, -1, 7.973229060797408], [-420, 246, 1, 0.2700291015835024], [39, 15, -1, 0.05964704459049729], [4, 4, 1, 11.03406881591082], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-187, -441, -1, 0.3090083385707243], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [248, 422, 1, 0.2563706140469689], [-194, 418, -1, -0.4309252001057183], [-32, -48, 1, 0.8012081911747833], [20, 10, -1, -0.24581267844784727], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-443, -253, 1, -0.1529850561272847], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [21, 45, -1, 1.4104225548616878], [-8, -2, 1, 4.984721079249439], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 5.995178598364088], [-66, -12, -1, -0.05812361595811418], [1, -9, 1, 7.324711769348589], [8, -5, 0, 1.5062791719753927], [0, -4, 1, 11.36119516464414], [-3, 5, -1, 11.019197853108402], [2, 7, 0, -0.12026464355831305], [-24, 62, -1, -0.01640594753825137], [217, 473, 1, -0.08288568111972172]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 222, "state": [[8, -5, 0, 4.324474873056523], [27, -22, 1, 1.6835596131461488], [4, 7, -1, 8.004645539891909], [-422, 247, 1, 0.2700772488913109], [37, 14, -1, 0.06051357836788973], [3, 6, 1, 11.085277007085603], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-188, -443, -1, 0.30905459671381397], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [249, 424, 1, 0.2564195481728526], [-195, 420, -1, -0.43094757532602523], [-30, -49, 1, 0.807356047220327], [19, 8, -1, -0.2354476867835127], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-445, -254, 1, -0.15302341449107867], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [22, 43, -1, 1.4161966076829426], [-10, -1, 1, 4.961594272776032], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 6.088762119269587], [-68, -13, -1, -0.059562962506561595], [2, -7, 1, 7.351392892001403], [8, -5, 0, 1.5062791719753927], [2, -3, 1, 11.45477868554964], [-1, 4, -1, 11.066218722731033], [2, 7, 0, -0.12026464355831305], [-25, 64, -1, -0.016893723857632964], [218, 475, 1, -0.08290850272394423]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 223, "state": [[8, -5, 0, 4.324474873056523], [29, -21, 1, 1.6926260989552224], [6, 6, -1, 8.047020869622624], [-424, 248, 1, 0.2701249587952153], [38, 12, -1, 0.0694024408452166], [1, 7, 1, 11.136485198260386], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-189, -445, -1, 0.30910042779812075], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [250, 426, 1, 0.25646804025279674], [-196, 422, -1, -0.4309697355797239], [-28, -50, 1, 0.813544972256541], [17, 9, -1, -0.2495132891530407], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-447, -255, 1, -0.1530614400185982], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [23, 41, -1, 1.4222960790085883], [-9, -3, 1, 4.996939705235539], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 6.193970407189305], [-67, -15, -1, -0.06455271547107182], [4, -6, 1, 7.40068364651545], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 11.559986973469357], [1, 3, -1, 11.156416479094501], [2, 7, 0, -0.12026464355831305], [-26, 66, -1, -0.017350876724972552], [219, 477, 1, -0.0829311299863405]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 224, "state": [[8, -5, 0, 4.324474873056523], [31, -20, 1, 1.7011849358656812], [7, 4, -1, 8.08939619935334], [-426, 249, 1, 0.27017223722032974], [36, 11, -1, 0.07088784385004078], [-1, 6, 1, 11.185353044266446], [4, 1, -1, 0.018110560421269434], [2, 1, 0, 0.09173296543276846], [-190, -447, -1, 0.30914583770293413], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [251, 428, 1, 0.2565160962408123], [-197, 424, -1, -0.43099168394904674], [-26, -51, 1, 0.8197565305582312], [15, 10, -1, -0.26560439052813], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-449, -256, 1, -0.15309913701888497], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [24, 39, -1, 1.428729801439879], [-10, -5, 1, 5.019523322885972], [2, 7, 0, 7.322092710284346], [1, -4, 1, 6.284168163552772], [-69, -16, -1, -0.06576361805542132], [6, -5, 1, 7.446529094798103], [8, -5, 0, 1.5062791719753927], [5, 0, 1, 11.61119516464414], [3, 2, -1, 11.261624767014219], [2, 7, 0, -0.12026464355831305], [-27, 64, -1, -0.0211626291321359], [220, 479, 1, -0.08295356537791608]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 225, "state": [[8, -5, 0, 4.324474873056523], [33, -19, 1, 1.709232241284861], [8, 2, -1, 8.133031304433938], [-428, 250, 1, 0.2702190899853847], [34, 10, -1, 0.07255807428879461], [-3, 5, 1, 11.245079250722135], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-191, -449, -1, 0.3091908322002529], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [252, 430, 1, 0.25656372198461824], [-198, 426, -1, -0.43101342345759774], [-24, -52, 1, 0.8259718771668606], [13, 11, -1, -0.2837885315928357], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-451, -257, 1, -0.1531365097269911], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [25, 37, -1, 1.43550323230197], [-11, -7, 1, 5.035929270424223], [2, 7, 0, 7.322092710284346], [3, -3, 1, 6.370178598364088], [-70, -18, -1, -0.06955674556573907], [7, -3, 1, 7.492659596405372], [8, -5, 0, 1.5062791719753927], [3, 1, 1, 11.662403355818924], [4, 0, -1, 11.355208287919718], [2, 7, 0, -0.12026464355831305], [-26, 66, -1, -0.017350876724972552], [221, 481, 1, -0.08297581132797739]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 226, "state": [[8, -5, 0, 4.324474873056523], [35, -18, 1, 1.7167750198493064], [9, 0, -1, 8.172020869622623], [-430, 251, 1, 0.27026552280509986], [35, 12, -1, 0.06551611850541558], [-4, 3, 1, 11.306652433561252], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-192, -451, -1, 0.3092354169572185], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [253, 432, 1, 0.2566109232279994], [-199, 428, -1, -0.4310349570717394], [-22, -53, 1, 0.832172098191233], [14, 13, -1, -0.2911289351874599], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-453, -258, 1, -0.15317356230555887], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [26, 35, -1, 1.4426175030130974], [-9, -6, 1, 5.039315034966254], [2, 7, 0, 7.322092710284346], [1, -4, 1, 6.284168163552772], [-68, -19, -1, -0.07286289947176318], [8, -1, 1, 7.537308413529668], [8, -5, 0, 1.5062791719753927], [2, 3, 1, 11.767611643738642], [3, -2, -1, 11.448791808825217], [2, 7, 0, -0.12026464355831305], [-27, 64, -1, -0.0211626291321359], [222, 483, 1, -0.08299787022500757]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 227, "state": [[8, -5, 0, 4.324474873056523], [37, -17, 1, 1.723828487590891], [7, -1, -1, 8.194604487273056], [-432, 252, 1, 0.27031154129249507], [37, 13, -1, 0.0643095913952948], [-5, 1, 1, 11.377652336816318], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-193, -453, -1, 0.30927959753848233], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [254, 434, 1, 0.2566577056131021], [-200, 430, -1, -0.43105628770194027], [-20, -54, 1, 0.8383385542201078], [12, 12, -1, -0.29702086962263063], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-455, -259, 1, -0.1532102988463603], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [28, 34, -1, 1.4505769058901428], [-7, -5, 1, 5.044447285705128], [2, 7, 0, 7.322092710284346], [3, -3, 1, 6.370178598364088], [-70, -20, -1, -0.07379180882521652], [9, 1, 1, 7.574711769348589], [8, -5, 0, 1.5062791719753927], [0, 4, 1, 11.86119516464414], [1, -3, -1, 11.554000096744934], [2, 7, 0, -0.12026464355831305], [-29, 65, -1, -0.02441417935086119], [223, 485, 1, -0.08301974441751996]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 228, "state": [[8, -5, 0, 4.324474873056523], [39, -16, 1, 1.7304136490226394], [6, -3, -1, 8.24581267844784], [-434, 253, 1, 0.27035715096113966], [39, 12, -1, 0.07057699474707908], [-4, -1, 1, 11.448058381099504], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-194, -455, -1, 0.3093233794085094], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [255, 436, 1, 0.2567040746826689], [-201, 432, -1, -0.43107741820408535], [-18, -55, 1, 0.8444532113916678], [13, 14, -1, -0.30291280405780135], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-457, -260, 1, -0.1532467233717975], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [30, 33, -1, 1.4583580979950037], [-5, -4, 1, 5.053119870322116], [2, 7, 0, 7.322092710284346], [4, -1, 1, 6.456189033175404], [-69, -18, -1, -0.07011258129107428], [7, 2, 1, 7.601392892001403], [8, -5, 0, 1.5062791719753927], [-2, 3, 1, 11.95477868554964], [-1, -4, -1, 11.644197853108402], [2, 7, 0, -0.12026464355831305], [-31, 66, -1, -0.02751162003603851], [224, 487, 1, -0.08304143621489035]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 229, "state": [[8, -5, 0, 4.324474873056523], [41, -15, 1, 1.736555243086536], [7, -5, -1, 8.270736641266996], [-436, 254, 1, 0.2704023572273415], [41, 11, -1, 0.07636690679680604], [-5, -3, 1, 11.495079250722135], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-195, -457, -1, 0.3093667679338201], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [256, 438, 1, 0.25675003588221545], [-202, 434, -1, -0.4310983513807491], [-16, -56, 1, 0.8504989456888303], [11, 15, -1, -0.3213157647963951], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-459, -261, 1, -0.1532828398363652], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [32, 32, -1, 1.4659311840891878], [-4, -2, 1, 5.019523322885972], [2, 7, 0, 7.322092710284346], [3, 1, 1, 6.546386789538872], [-71, -17, -1, -0.06690239825268554], [6, 4, 1, 7.65068364651545], [8, -5, 0, 1.5062791719753927], [-4, 2, 1, 12.037403355818924], [-2, -6, -1, 11.656416479094501], [2, 7, 0, -0.12026464355831305], [-29, 65, -1, -0.02441417935086119], [225, 489, 1, -0.0830629478881688]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 230, "state": [[8, -5, 0, 4.324474873056523], [43, -14, 1, 1.7422800920442443], [5, -6, -1, 8.311449838810775], [-438, 255, 1, 0.2704471654122802], [40, 13, -1, 0.06807301520024295], [-6, -5, 1, 11.519639846722667], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-196, -459, -1, 0.30940976838517237], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [257, 440, 1, 0.2567955945621495], [-203, 436, -1, -0.4311190899824332], [-14, -57, 1, 0.8564598082024512], [10, 17, -1, -0.3373943559574643], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-461, -262, 1, -0.15331865212807633], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [34, 31, -1, 1.473271587683812], [-3, 0, 1, 4.945731514060755], [2, 7, 0, 7.322092710284346], [2, 3, 1, 6.651595077458589], [-70, -15, -1, -0.0630955898699088], [5, 6, 1, 7.696529094798103], [8, -5, 0, 1.5062791719753927], [-6, 1, 1, 12.084910936288514], [-4, -7, -1, 11.687832958189002], [2, 7, 0, -0.12026464355831305], [-30, 67, -1, -0.02462740115662443], [226, 491, 1, -0.08308428167087097]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 231, "state": [[8, -5, 0, 4.324474873056523], [45, -13, 1, 1.7476158346388013], [3, -7, -1, 8.357580340418044], [-440, 256, 1, 0.270491580744083], [41, 15, -1, 0.062264488572488966], [-4, -4, 1, 11.53406881591082], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-197, -461, -1, 0.30945238593968555], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [258, 442, 1, 0.25684075597983563], [-204, 438, -1, -0.43113963670877037], [-12, -58, 1, 0.8623212421485071], [9, 15, -1, -0.3360104348113153], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-463, -263, 1, -0.1533541640698519], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [35, 29, -1, 1.4808084758748967], [-5, -1, 1, 4.977147993155255], [2, 7, 0, 7.322092710284346], [0, 4, 1, 6.745178598364089], [-69, -13, -1, -0.05913732800181045], [3, 7, 1, 7.742659596405372], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 12.11119516464414], [-3, -5, -1, 11.691218722731033], [2, 7, 0, -0.12026464355831305], [-32, 68, -1, -0.027627791506714676], [227, 493, 1, -0.08310543975975006]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 232, "state": [[8, -5, 0, 4.324474873056523], [47, -12, 1, 1.7525899964579283], [1, -8, -1, 8.40222915754234], [-442, 257, 1, 0.27053560835984775], [43, 16, -1, 0.06139045623388016], [-2, -5, 1, 11.598509345115398], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-198, -463, -1, 0.3094946256829081], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [259, 444, 1, 0.25688552530160613], [-205, 440, -1, -0.43115999420969436], [-10, -59, 1, 0.868070245970008], [10, 17, -1, -0.3373943559574643], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-465, -264, 1, -0.1533893794208764], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [36, 27, -1, 1.488514801739621], [-4, -3, 1, 5.048147896410321], [2, 7, 0, 7.322092710284346], [-2, 3, 1, 6.838762119269589], [-67, -12, -1, -0.057705338489875926], [1, 8, 1, 7.787308413529668], [8, -5, 0, 1.5062791719753927], [-6, -1, 1, 12.137479392999767], [-5, -4, -1, 11.747819931658357], [2, 7, 0, -0.12026464355831305], [-33, 70, -1, -0.02773725156035833], [228, 495, 1, -0.08312642431554997]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 233, "state": [[8, -5, 0, 4.324474873056523], [49, -11, 1, 1.7572293394513883], [-1, -9, -1, 8.439632513361262], [-444, 258, 1, 0.27057925330761223], [42, 18, -1, 0.05364404601209071], [0, -4, 1, 11.65906881591082], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-199, -465, -1, 0.309536492610831], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [260, 446, 1, 0.25692990760472], [-206, 442, -1, -0.4311801650865783], [-8, -60, 1, 0.873695480500862], [9, 15, -1, -0.3360104348113153], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-467, -265, 1, -0.1534243018779193], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [38, 26, -1, 1.495430226522952], [-2, -4, 1, 5.121939705235538], [2, 7, 0, 7.322092710284346], [-3, 1, 1, 6.9439704071893065], [-68, -14, -1, -0.06181469243082086], [-1, 9, 1, 7.824711769348589], [8, -5, 0, 1.5062791719753927], [-5, -3, 1, 12.197205599455456], [-7, -5, -1, 11.756492516275346], [2, 7, 0, -0.12026464355831305], [-34, 72, -1, -0.027840565368042122], [229, 497, 1, -0.08314723746373978]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 234, "state": [[8, -5, 0, 4.324474873056523], [51, -10, 1, 1.7615594324763886], [-2, -7, -1, 8.466313636014076], [-446, 259, 1, 0.27062252054827407], [41, 16, -1, 0.05886815222927582], [2, -3, 1, 11.752652336816318], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-200, -467, -1, 0.3095779916318483], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [261, 448, 1, 0.2569739078792719], [-207, 444, -1, -0.4312001518933415], [-6, -61, 1, 0.8791873215521526], [7, 14, -1, -0.348229060797414], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-469, -266, 1, -0.15345893507662375], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [40, 25, -1, 1.5020273418445114], [0, -3, 1, 5.195731514060754], [2, 7, 0, 7.322092710284346], [-5, 0, 1, 6.99517859836409], [-67, -12, -1, -0.057705338489875926], [-2, 7, 1, 7.851392892001403], [8, -5, 0, 1.5062791719753927], [-3, -4, 1, 12.258778782294574], [-6, -3, -1, 11.781416479094503], [2, 7, 0, -0.12026464355831305], [-35, 74, -1, -0.027938236385600994], [230, 499, 1, -0.08316788129523037]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 235, "state": [[8, -5, 0, 4.324474873056523], [53, -9, 1, 1.76560439052813], [-4, -6, -1, 8.515604390528123], [-448, 260, 1, 0.2706654149574598], [42, 18, -1, 0.05364404601209071], [3, -1, 1, 11.857860624736036], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-201, -469, -1, 0.309619127568666], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [262, 450, 1, 0.2570175310300518], [-208, 446, -1, -0.4312199571375265], [-4, -62, 1, 0.8845378621179181], [6, 16, -1, -0.3649207440126766], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-471, -267, 1, -0.15349328259276382], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [41, 23, -1, 1.509566289169787], [2, -4, 1, 5.269523322885971], [2, 7, 0, 7.322092710284346], [-6, -2, 1, 7.046386789538873], [-65, -13, -1, -0.06091552152826467], [-4, 6, 1, 7.90068364651545], [8, -5, 0, 1.5062791719753927], [-1, -3, 1, 12.309986973469357], [-5, -1, -1, 11.823791808825218], [2, 7, 0, -0.12026464355831305], [-36, 76, -1, -0.028030714552469208], [231, 501, 1, -0.08318835786707385]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 236, "state": [[8, -5, 0, 4.324474873056523], [55, -8, 1, 1.769386738544396], [-6, -5, -1, 8.561449838810777], [-450, 261, 1, 0.27070794132734743], [40, 19, -1, 0.04750758046958992], [5, 0, 1, 11.90906881591082], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-202, -471, -1, 0.3096599051601621], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [263, 452, 1, 0.25706078187835807], [-209, 448, -1, -0.43123958328134654], [-2, -63, 1, 0.889740870512361], [7, 14, -1, -0.348229060797414], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-473, -268, 1, -0.1535273479434706], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [43, 22, -1, 1.5156657604954327], [3, -6, 1, 5.269523322885971], [2, 7, 0, 7.322092710284346], [-4, -1, 1, 7.034168163552775], [-64, -11, -1, -0.056589111716135704], [-6, 5, 1, 7.946529094798103], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 12.400184729832825], [-3, 0, -1, 11.85520828791972], [2, 7, 0, -0.12026464355831305], [-38, 77, -1, -0.030587554594514812], [232, 503, 1, -0.08320866920314572]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 237, "state": [[8, -5, 0, 4.324474873056523], [57, -7, 1, 1.7729273642932288], [-7, -3, -1, 8.607580340418046], [-452, 262, 1, 0.27075010436844116], [41, 17, -1, 0.05552744854195544], [3, 1, 1, 11.960277007085603], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-203, -473, -1, 0.30970032906319767], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [264, 454, 1, 0.25710366516376365], [-210, 450, -1, -0.4312590327427055], [0, -64, 1, 0.8947917120802827], [8, 12, -1, -0.32843734871713126], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-475, -269, 1, -0.15356113458842827], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [44, 20, -1, 1.5230313096991417], [1, -5, 1, 5.2271479931552545], [2, 7, 0, 7.322092710284346], [-3, -3, 1, 7.120178598364091], [-65, -9, -1, -0.05139665164690225], [-7, 3, 1, 7.992659596405372], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 12.48619516464414], [-4, 2, -1, 11.929000096744936], [2, 7, 0, -0.12026464355831305], [-40, 76, -1, -0.03473172749445068], [233, 505, 1, -0.08322881729481106]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 238, "state": [[8, -5, 0, 4.324474873056523], [59, -6, 1, 1.776245532770906], [-8, -1, -1, 8.652229157542342], [-454, 263, 1, 0.27079190871130243], [40, 15, -1, 0.06098444960671494], [2, 3, 1, 12.06548529500532], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-204, -475, -1, 0.3097404038543818], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [265, 456, 1, 0.2571461855458384], [-211, 452, -1, -0.43127830789618904], [1, -62, 1, 0.8973585047268736], [7, 10, -1, -0.3248208135155233], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-477, -270, 1, -0.1535946459310416], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [46, 19, -1, 1.5285902025189255], [3, -4, 1, 5.29814789641032], [2, 7, 0, 7.322092710284346], [-2, -5, 1, 7.184619127568669], [-64, -7, -1, -0.04683769339880592], [-8, 1, 1, 8.037308413529667], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 12.550635693848719], [-2, 3, -1, 12.01162476701422], [2, 7, 0, -0.12026464355831305], [-41, 78, -1, -0.034647607553503705], [234, 507, 1, -0.08324880410157423]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 239, "state": [[8, -5, 0, 4.324474873056523], [61, -5, 1, 1.7793589412876527], [-9, 1, -1, 8.689632513361264], [-456, 264, 1, 0.2708333589082363], [41, 17, -1, 0.05552744854195544], [1, 5, 1, 12.12765233681632], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-205, -477, -1, 0.30978013403179067], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [266, 458, 1, 0.2571883476058277], [-212, 454, -1, -0.431297411074031], [2, -60, 1, 0.9000949132830505], [9, 11, -1, -0.31288362833790745], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-479, -271, 1, -0.1536278853195741], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [48, 18, -1, 1.5338310584792336], [4, -2, 1, 5.371939705235537], [2, 7, 0, 7.322092710284346], [0, -4, 1, 7.245178598364091], [-65, -9, -1, -0.05139665164690225], [-9, -1, 1, 8.074711769348589], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 12.559986973469357], [-1, 5, -1, 12.07379180882522], [2, 7, 0, -0.12026464355831305], [-42, 80, -1, -0.034567650291658945], [235, 509, 1, -0.08326863155171359]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 240, "state": [[8, -5, 0, 4.324474873056523], [63, -4, 1, 1.7822837998988041], [-7, 2, -1, 8.716313636014078], [-458, 265, 1, 0.27087445943493527], [43, 18, -1, 0.05498898534676003], [-1, 4, 1, 12.198058381099505], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-206, -479, -1, 0.3098195240166434], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [267, 460, 1, 0.25723015584828923], [-213, 456, -1, -0.4313163445670528], [3, -58, 1, 0.9030165346751821], [11, 12, -1, -0.30393629440596165], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-481, -272, 1, -0.15366085604825985], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [49, 16, -1, 1.540699391358497], [3, 0, 1, 5.445731514060753], [2, 7, 0, 7.322092710284346], [2, -5, 1, 7.305738069159513], [-66, -7, -1, -0.04631624213963863], [-7, -2, 1, 8.101392892001403], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 12.550635693848719], [1, 6, -1, 12.131492516275348], [2, 7, 0, -0.12026464355831305], [-41, 82, -1, -0.03141647909450056], [236, 511, 1, -0.08328830154290061]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 241, "state": [[8, -5, 0, 4.324474873056523], [65, -3, 1, 1.7850349261360916], [-6, 4, -1, 8.765604390528125], [-460, 266, 1, 0.2709152146920827], [45, 17, -1, 0.06059721206649323], [-3, 3, 1, 12.284068815910821], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-207, -481, -1, 0.30985857815493445], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [268, 462, 1, 0.2572716147026888], [-214, 458, -1, -0.4313351106255783], [4, -56, 1, 0.906140647580213], [10, 14, -1, -0.32330509797825735], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-483, -273, 1, -0.1536935613583876], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [50, 14, -1, 1.5474804994858302], [4, 2, 1, 5.51952332288597], [2, 7, 0, 7.322092710284346], [1, -3, 1, 7.296386789538874], [-67, -5, -1, -0.04135430160123857], [-6, -4, 1, 8.15068364651545], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 12.559986973469357], [2, 4, -1, 12.179000096744938], [2, 7, 0, -0.12026464355831305], [-42, 80, -1, -0.03456765029165894], [237, 513, 1, -0.08330781594280463]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 242, "state": [[8, -5, 0, 4.324474873056523], [67, -2, 1, 1.7876258462747672], [-5, 6, -1, 8.811449838810779], [-462, 267, 1, 0.2709556290069155], [43, 16, -1, 0.06139045623388016], [-4, 1, 1, 12.370079250722137], [4, 1, -1, 0.018110560421269434], [2, 1, 0, 0.09173296543276846], [-208, -483, -1, 0.3098973007190252], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [269, 464, 1, 0.2573127285249565], [-215, 460, -1, -0.43135371146032453], [5, -54, 1, 0.9094863820952029], [8, 13, -1, -0.33422225227193925], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-485, -274, 1, -0.15372600443935944], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [51, 12, -1, 1.5541519621025566], [6, 3, 1, 5.51952332288597], [2, 7, 0, 7.322092710284346], [3, -2, 1, 7.401595077458592], [-65, -6, -1, -0.04414875342640788], [-5, -6, 1, 8.196529094798104], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 12.550635693848719], [3, 2, -1, 12.261624767014222], [2, 7, 0, -0.12026464355831305], [-44, 79, -1, -0.038502854341725345], [238, 515, 1, -0.08332717658968337]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 243, "state": [[8, -5, 0, 4.324474873056523], [69, -1, 1, 1.7900688978244437], [-3, 7, -1, 8.857580340418048], [-464, 268, 1, 0.2709957066347481], [45, 15, -1, 0.06687638404188564], [-3, -1, 1, 12.460277007085605], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-209, -485, -1, 0.30993569590919506], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [270, 466, 1, 0.25735350159900483], [-216, 462, -1, -0.43137214924326933], [6, -52, 1, 0.9130748916779994], [6, 14, -1, -0.3575803404180523], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-487, -275, 1, -0.15375818842972402], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [53, 11, -1, 1.5583614284915068], [5, 1, 1, 5.477147993155254], [2, 7, 0, 7.322092710284346], [1, -3, 1, 7.296386789538874], [-66, -8, -1, -0.04869689554216598], [-3, -7, 1, 8.242659596405373], [8, -5, 0, 1.5062791719753927], [7, -1, 1, 12.588611546993707], [1, 3, -1, 12.156416479094505], [2, 7, 0, -0.12026464355831305], [-43, 77, -1, -0.038682464859561304], [239, 517, 1, -0.08334638529295922]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 244, "state": [[8, -5, 0, 4.324474873056523], [71, 0, 1, 1.792375329730716], [-1, 8, -1, 8.902229157542344], [-466, 269, 1, 0.27103545176045873], [46, 13, -1, 0.07424914935690403], [-2, -3, 1, 12.565485295005322], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-210, -487, -1, 0.30997376785515346], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [271, 468, 1, 0.2573939381382085], [-217, 464, -1, -0.4313904261084958], [7, -50, 1, 0.9169295187311753], [5, 12, -1, -0.35918791143362944], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-489, -276, 1, -0.15379011641818507], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [55, 10, -1, 1.5623066105648376], [4, 3, 1, 5.5481478964103195], [2, 7, 0, 7.322092710284346], [-1, -4, 1, 7.206189033175407], [-67, -10, -1, -0.05307944210183275], [-1, -8, 1, 8.287308413529669], [8, -5, 0, 1.5062791719753927], [5, 0, 1, 12.61119516464414], [3, 4, -1, 12.207624670269288], [2, 7, 0, -0.12026464355831305], [-45, 78, -1, -0.040907001849420976], [240, 519, 1, -0.08336544383378237]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 245, "state": [[8, -5, 0, 4.324474873056523], [69, 1, 1, 1.7946817616369881], [1, 9, -1, 8.939632513361266], [-468, 270, 1, 0.2710748684999394], [47, 15, -1, 0.06891672024814903], [0, -4, 1, 12.659068815910821], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-211, -489, -1, 0.31001152061751447], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [272, 470, 1, 0.25743404228684896], [-218, 466, -1, -0.431408544153015], [8, -48, 1, 0.9210759404359093], [3, 11, -1, -0.3796455398919146], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-491, -277, 1, -0.1538217914445865], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [57, 9, -1, 1.566007221270031], [2, 4, 1, 5.621939705235536], [2, 7, 0, 7.322092710284346], [1, -3, 1, 7.296386789538874], [-65, -9, -1, -0.05139665164690224], [1, -9, 1, 8.32471176934859], [8, -5, 0, 1.5062791719753927], [7, 1, 1, 12.633778782294574], [5, 3, -1, 12.269197853108405], [2, 7, 0, -0.12026464355831305], [-43, 79, -1, -0.03695694937572788], [241, 521, 1, -0.0833843539655808]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 246, "state": [[8, -5, 0, 4.324474873056523], [67, 2, 1, 1.7971248131866646], [0, 7, -1, 8.922020869622628], [-470, 271, 1, 0.2711139609015092], [45, 14, -1, 0.0700804130727339], [2, -3, 1, 12.75265233681632], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-212, -491, -1, 0.3100489581892341], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [273, 472, 1, 0.2574738181215228], [-219, 468, -1, -0.4314265054375671], [9, -46, 1, 0.9255422747967809], [5, 12, -1, -0.35918791143362944], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-493, -278, 1, -0.1538532165008737], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [58, 7, -1, 1.571815285115196], [0, 3, 1, 5.6957315140607525], [2, 7, 0, 7.322092710284346], [3, -2, 1, 7.401595077458592], [-67, -8, -1, -0.048413070710468], [2, -7, 1, 8.351392892001405], [8, -5, 0, 1.5062791719753927], [6, 3, 1, 12.684986973469357], [6, 1, -1, 12.328924059564095], [2, 7, 0, -0.12026464355831305], [-41, 78, -1, -0.03464760755350369], [242, 523, 1, -0.08340311741459705]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 247, "state": [[8, -5, 0, 4.324474873056523], [65, 3, 1, 1.7997157333253402], [2, 6, -1, 8.973229060797411], [-472, 272, 1, 0.2711527329472945], [46, 12, -1, 0.07747103635935886], [3, -1, 1, 12.857860624736038], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-213, -493, -1, 0.3100860844970123], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [274, 474, 1, 0.25751326965251664], [-220, 470, -1, -0.43144431198740235], [10, -44, 1, 0.9303591178171903], [7, 11, -1, -0.3318231132591626], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-495, -279, 1, -0.15388439453203234], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [60, 6, -1, 1.575068425373911], [-2, 4, 1, 5.769523322885969], [2, 7, 0, 7.322092710284346], [1, -3, 1, 7.296386789538874], [-66, -6, -1, -0.04392801162191633], [4, -6, 1, 8.400683646515452], [8, -5, 0, 1.5062791719753927], [4, 4, 1, 12.73619516464414], [7, -1, -1, 12.377791905570154], [2, 7, 0, -0.12026464355831305], [-39, 79, -1, -0.03060859292130461], [243, 525, 1, -0.08342173588041324]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 248, "state": [[8, -5, 0, 4.324474873056523], [63, 4, 1, 1.8024668595626276], [4, 7, -1, 9.004645539891913], [-474, 273, 1, 0.27119118855457414], [44, 11, -1, 0.07909501002798434], [4, -3, 1, 12.806652433561254], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-214, -495, -1, 0.31012290340265986], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [275, 476, 1, 0.25755240082514774], [-221, 472, -1, -0.4314619657930416], [11, -42, 1, 0.9355594707954216], [6, 13, -1, -0.3532010347092086], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-497, -280, 1, -0.15391532843700567], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [62, 5, -1, 1.578123824870686], [-4, 5, 1, 5.803119870322114], [2, 7, 0, 7.322092710284346], [3, -2, 1, 7.401595077458592], [-68, -5, -1, -0.04118058966073238], [6, -5, 1, 8.446529094798105], [8, -5, 0, 1.5062791719753927], [3, 6, 1, 12.787403355818924], [6, -3, -1, 12.429000096744938], [2, 7, 0, -0.12026464355831305], [-41, 80, -1, -0.03300005810838636], [244, 527, 1, -0.08344021103646342]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 249, "state": [[8, -5, 0, 4.324474873056523], [61, 5, 1, 1.805391718173779], [6, 6, -1, 9.047020869622628], [-476, 274, 1, 0.2712293315770929], [45, 9, -1, 0.08666809612216841], [3, -1, 1, 12.857860624736038], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-215, -497, -1, 0.31015941870443214], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [276, 478, 1, 0.25759121552107334], [-222, 474, -1, -0.4314794688110169], [13, -43, 1, 0.9415178506637294], [8, 12, -1, -0.3284373487171312], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-499, -281, 1, -0.15394602106958982], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [63, 3, -1, 1.5833580979950035], [-6, 4, 1, 5.852147993155253], [2, 7, 0, 7.322092710284346], [4, 0, 1, 7.495178598364092], [-69, -3, -1, -0.036414467217095084], [7, -3, 1, 8.492659596405375], [8, -5, 0, 1.5062791719753927], [2, 4, 1, 12.787403355818924], [4, -2, -1, 12.429000096744938], [2, 7, 0, -0.12026464355831305], [-42, 78, -1, -0.03623788073041271], [245, 529, 1, -0.08345854453053432]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 250, "state": [[8, -5, 0, 4.324474873056523], [59, 6, 1, 1.8085051266905259], [7, 4, -1, 9.089396199353343], [-478, 275, 1, 0.27126716580634286], [47, 8, -1, 0.09125153888766252], [4, -3, 1, 12.806652433561254], [4, 1, -1, 0.018110560421269434], [2, 1, 0, 0.09173296543276846], [-216, -499, -1, 0.31019563413832973], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [277, 480, 1, 0.2576297175595675], [-223, 476, -1, -0.43149682296459463], [15, -42, 1, 0.9493856677970974], [6, 11, -1, -0.34254737055050505], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-501, -282, 1, -0.1539764752393087], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [64, 1, -1, 1.5884445904497124], [-4, 3, 1, 5.8433151317111856], [2, 7, 0, 7.322092710284346], [6, 1, 1, 7.521462826719718], [-71, -4, -1, -0.03845604967409715], [8, -1, 1, 8.53730841352967], [8, -5, 0, 1.5062791719753927], [0, 3, 1, 12.86119516464414], [3, -4, -1, 12.502791905570154], [2, 7, 0, -0.12026464355831305], [-40, 77, -1, -0.033877441855206754], [246, 531, 1, -0.08347673798525485]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 251, "state": [[8, -5, 0, 4.324474873056523], [57, 7, 1, 1.811823295168203], [8, 2, -1, 9.133031304433942], [-480, 276, 1, 0.27130469497281373], [48, 6, -1, 0.09829286313638623], [6, -4, 1, 12.815485295005322], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-217, -501, -1, 0.3102315533793675], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [278, 482, 1, 0.25766791069876804], [-224, 478, -1, -0.4315140301444784], [17, -43, 1, 0.9547120098337677], [5, 13, -1, -0.36358333899645895], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-503, -283, 1, -0.15400669371226847], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [66, 0, -1, 1.5909311840891875], [-3, 1, 1, 5.894523322885969], [2, 7, 0, 7.322092710284346], [7, 3, 1, 7.55961912756867], [-69, -5, -1, -0.0410118861590538], [9, 1, 1, 8.574711769348593], [8, -5, 0, 1.5062791719753927], [-1, 5, 1, 12.892611643738642], [1, -3, -1, 12.554000096744938], [2, 7, 0, -0.12026464355831305], [-42, 78, -1, -0.03623788073041271], [247, 533, 1, -0.08349479299857411]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 252, "state": [[8, -5, 0, 4.324474873056523], [55, 8, 1, 1.8153639209170358], [9, 0, -1, 9.172020869622626], [-482, 277, 1, 0.2713419227472138], [50, 7, -1, 0.09594676856577633], [4, -3, 1, 12.806652433561254], [4, 5, -1, -0.08551151812868454], [2, 1, 0, 0.09173296543276846], [-218, -503, -1, 0.3102671800428124], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [279, 484, 1, 0.2577057986368936], [-225, 480, -1, -0.4315310922094958], [19, -42, 1, 0.9624058507933174], [6, 11, -1, -0.34254737055050505], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-505, -284, 1, -0.15403667921199227], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [68, -1, -1, 1.593271529257911], [-4, -1, 1, 5.984721079249437], [2, 7, 0, 7.322092710284346], [6, 5, 1, 7.605749629175939], [-67, -6, -1, -0.04371380590591032], [7, 2, 1, 8.601392892001407], [8, -5, 0, 1.5062791719753927], [-3, 4, 1, 12.963611546993707], [-1, -4, -1, 12.644197853108405], [2, 7, 0, -0.12026464355831305], [-40, 77, -1, -0.033877441855206754], [248, 535, 1, -0.08351271114422869]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 253, "state": [[8, -5, 0, 4.324474873056523], [53, 9, 1, 1.8191462689333018], [7, -1, -1, 9.19460448727306], [-484, 278, 1, 0.27137885274166085], [48, 8, -1, 0.09180034686104228], [5, -1, 1, 12.87765233681632], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-219, -505, -1, 0.31030251768539213], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [280, 486, 1, 0.2577433850134313], [-226, 482, -1, -0.4315480109872669], [21, -43, 1, 0.9670961348344868], [7, 9, -1, -0.31681258170291343], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-507, -285, 1, -0.1540664344202361], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [67, -3, -1, 1.5980527680099237], [-5, -3, 1, 6.031741948872067], [2, 7, 0, 7.322092710284346], [4, 4, 1, 7.620178598364092], [-66, -4, -1, -0.03913301259742283], [8, 4, 1, 8.630891934435171], [8, -5, 0, 1.5062791719753927], [-4, 2, 1, 13.037403355818924], [-3, -5, -1, 12.691218722731037], [2, 7, 0, -0.12026464355831305], [-38, 76, -1, -0.03141647909450054], [249, 537, 1, -0.08353049397219958]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 254, "state": [[8, -5, 0, 4.324474873056523], [51, 10, 1, 1.8231912269850432], [6, -3, -1, 9.245812678447843], [-486, 279, 1, 0.2714154885108456], [49, 6, -1, 0.09869274908658623], [7, 0, 1, 12.909068815910821], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-220, -507, -1, 0.3103375698064734], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [281, 488, 1, 0.2577806734102972], [-227, 484, -1, -0.4315647882748563], [23, -42, 1, 0.9745304691452857], [6, 7, -1, -0.3092394956087294], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-509, -286, 1, -0.1540959619777856], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [66, -5, -1, 1.6029653895980445], [-3, -2, 1, 6.039315034966251], [2, 7, 0, 7.322092710284346], [2, 3, 1, 7.651595077458592], [-67, -6, -1, -0.04371380590591033], [6, 5, 1, 8.667671156421802], [8, -5, 0, 1.5062791719753927], [-3, 0, 1, 13.11119516464414], [-2, -3, -1, 12.698791808825222], [2, 7, 0, -0.12026464355831305], [-39, 78, -1, -0.03141647909450054], [250, 539, 1, -0.08354814300915836]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 255, "state": [[8, -5, 0, 4.324474873056523], [49, 11, 1, 1.8275213200100435], [7, -5, -1, 9.270736641267], [-488, 280, 1, 0.271451833553167], [48, 4, -1, 0.10485223718687406], [8, 2, 1, 12.948058381099505], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-221, -509, -1, 0.31037233984921303], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [282, 490, 1, 0.25781766735296846], [-228, 486, -1, -0.43158142583940906], [25, -43, 1, 0.9786070454959614], [4, 8, -1, -0.348229060797414], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-511, -287, 1, -0.15412526448523484], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [65, -7, -1, 1.6080051442548726], [-1, -3, 1, 6.144523322885969], [2, 7, 0, 7.322092710284346], [0, 4, 1, 7.745178598364092], [-65, -7, -1, -0.04657300259944933], [5, 7, 1, 8.708384353965581], [8, -5, 0, 1.5062791719753927], [-5, 1, 1, 13.07977868554964], [-3, -1, -1, 12.80400009674494], [2, 7, 0, -0.12026464355831305], [-40, 80, -1, -0.03141647909450054], [251, 541, 1, -0.08356565975890373]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 256, "state": [[8, -5, 0, 4.324474873056523], [47, 12, 1, 1.8321606630035034], [5, -6, -1, 9.311449838810779], [-490, 281, 1, 0.2714878913118408], [50, 5, -1, 0.10222181650139221], [6, 1, 1, 12.935353044266447], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-222, -511, -1, 0.3104068312016806], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [283, 492, 1, 0.25785437031158936], [-229, 488, -1, -0.4315979254187707], [27, -42, 1, 0.9857228961694705], [3, 6, -1, -0.348229060797414], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-513, -288, 1, -0.15415434450374765], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [64, -9, -1, 1.613166542026112], [1, -4, 1, 6.234721079249437], [2, 7, 0, 7.322092710284346], [-2, 3, 1, 7.8387621192695915], [-63, -8, -1, -0.0496016036170086], [3, 8, 1, 8.75], [8, -5, 0, 1.5062791719753927], [-3, 0, 1, 13.11119516464414], [-4, 1, -1, 12.894197853108407], [2, 7, 0, -0.12026464355831305], [-41, 78, -1, -0.034647607553503684], [252, 543, 1, -0.08358304570278814]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 257, "state": [[8, -5, 0, 4.324474873056523], [45, 13, 1, 1.8371348248226305], [3, -7, -1, 9.357580340418048], [-492, 282, 1, 0.27152366517598264], [51, 7, -1, 0.0963754264756499], [5, 3, 1, 12.995079250722137], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-223, -513, -1, 0.3104410471979549], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [284, 494, 1, 0.25789078570205154], [-230, 490, -1, -0.43161428872209134], [29, -43, 1, 0.9892263208254231], [1, 7, -1, -0.39943725197219737], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-515, -289, 1, -0.15418320455580145], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [62, -10, -1, 1.616382148105081], [-1, -3, 1, 6.144523322885969], [2, 7, 0, 7.322092710284346], [-3, 1, 1, 7.943970407189309], [-64, -10, -1, -0.054167540074098096], [1, 9, 1, 8.789488481871315], [8, -5, 0, 1.5062791719753927], [-4, -2, 1, 13.184986973469357], [-3, 3, -1, 12.980208287919723], [2, 7, 0, -0.12026464355831305], [-42, 80, -1, -0.034567650291658925], [253, 545, 1, -0.08360030230013493]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 258, "state": [[8, -5, 0, 4.324474873056523], [43, 14, 1, 1.8424705674171875], [1, -8, -1, 9.402229157542344], [-494, 283, 1, 0.27155915848166456], [52, 5, -1, 0.10282811811353722], [3, 4, 1, 13.056652433561254], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-224, -515, -1, 0.3104749911191939], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [285, 496, 1, 0.2579269168870489], [-231, 492, -1, -0.431630517430416], [31, -42, 1, 0.9959885401918449], [3, 8, -1, -0.36492074401267655], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-517, -290, 1, -0.15421184712591424], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [60, -11, -1, 1.619789122465492], [1, -4, 1, 6.234721079249437], [2, 7, 0, 7.322092710284346], [-4, -1, 1, 8.034168163552778], [-66, -11, -1, -0.05578327078939086], [-1, 10, 1, 8.82296288432523], [8, -5, 0, 1.5062791719753927], [-2, -3, 1, 13.267611643738642], [-1, 4, -1, 13.066218722731039], [2, 7, 0, -0.12026464355831305], [-40, 79, -1, -0.03222028510405776], [254, 547, 1, -0.0836174309886461]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 259, "state": [[8, -5, 0, 4.324474873056523], [41, 15, 1, 1.8481954163748957], [-1, -9, -1, 9.439632513361266], [-496, 284, 1, 0.2715943745129483], [54, 6, -1, 0.10047293147803035], [5, 5, 1, 13.034068815910821], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-225, -517, -1, 0.3105086661946799], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [286, 498, 1, 0.25796276717710787], [-232, 494, -1, -0.43164661319725955], [33, -43, 1, 0.9989698853032554], [2, 10, -1, -0.39060439052813], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-519, -291, 1, -0.15424027466135568], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [59, -13, -1, 1.6254476920487082], [3, -3, 1, 6.3207315140607525], [2, 7, 0, 7.322092710284346], [-3, -3, 1, 8.120178598364094], [-65, -9, -1, -0.051396651646902256], [-2, 8, 1, 8.846089690798639], [8, -5, 0, 1.5062791719753927], [0, -4, 1, 13.36119516464414], [0, 6, -1, 13.105208287919723], [2, 7, 0, -0.12026464355831305], [-41, 77, -1, -0.035496481078905635], [255, 549, 1, -0.08363443318480131]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 260, "state": [[8, -5, 0, 4.324474873056523], [39, 16, 1, 1.8543370104387924], [-2, -7, -1, 9.46631363601408], [-498, 285, 1, 0.2716293165028934], [53, 4, -1, 0.10609560988370892], [3, 4, 1, 13.056652433561254], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-226, -519, -1, 0.31054207560283953], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [287, 500, 1, 0.2579983398315943], [-233, 496, -1, -0.4316625776491679], [35, -42, 1, 1.0053627428921306], [3, 8, -1, -0.36492074401267655], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-521, -292, 1, -0.1542684895728419], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [57, -14, -1, 1.629263087967019], [4, -1, 1, 6.406741948872068], [2, 7, 0, 7.322092710284346], [-1, -4, 1, 8.20618903317541], [-64, -7, -1, -0.046837693398805925], [-3, 6, 1, 8.880891934435171], [8, -5, 0, 1.5062791719753927], [2, -3, 1, 13.45477868554964], [-1, 8, -1, 13.08541657583944], [2, 7, 0, -0.12026464355831305], [-39, 78, -1, -0.031416479094500536], [256, 551, 1, -0.08365131028424778]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 261, "state": [[8, -5, 0, 4.324474873056523], [37, 17, 1, 1.8609221718705409], [-4, -6, -1, 9.515604390528127], [-500, 286, 1, 0.27166398763454247], [54, 6, -1, 0.10047293147803035], [1, 5, 1, 13.12765233681632], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-227, -521, -1, 0.3105752224722399], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [288, 502, 1, 0.2580336380596966], [-234, 498, -1, -0.43167841238626536], [37, -43, 1, 1.0078773972780077], [1, 9, -1, -0.404409225883992], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-523, -293, 1, -0.1542964942352147], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [56, -16, -1, 1.6352239504806396], [3, 1, 1, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -3, 1, 8.296386789538877], [-62, -6, -1, -0.04485332063280901], [-5, 7, 1, 8.905815897254328], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 13.559986973469357], [0, 6, -1, 13.105208287919723], [2, 7, 0, -0.12026464355831305], [-38, 76, -1, -0.031416479094500536], [257, 553, 1, -0.0836680636621818]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 262, "state": [[8, -5, 0, 4.324474873056523], [35, 18, 1, 1.8679756396121254], [-6, -5, -1, 9.56144983881078], [-502, 287, 1, 0.27169839104188404], [56, 5, -1, 0.10391189396011846], [-1, 6, 1, 13.185353044266447], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-228, -523, -1, 0.3106081098825619], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [289, 504, 1, 0.25806866502138665], [-235, 500, -1, -0.4316941189827891], [39, -42, 1, 1.0138997776451122], [3, 8, -1, -0.36492074401267655], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-525, -294, 1, -0.15432429098810643], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [54, -17, -1, 1.6394722236898975], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -2, 1, 8.401595077458595], [-63, -4, -1, -0.03959057226567577], [-6, 5, 1, 8.946529094798107], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 13.550635693848719], [1, 8, -1, 13.125000000000005], [2, 7, 0, -0.12026464355831305], [-39, 78, -1, -0.031416479094500536], [258, 555, 1, -0.08368469467372185]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 263, "state": [[8, -5, 0, 4.324474873056523], [33, 19, 1, 1.8755184181765707], [-7, -3, -1, 9.60758034041805], [-504, 288, 1, 0.27173252981079243], [58, 4, -1, 0.10712572458045354], [-3, 5, 1, 13.245079250722137], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-229, -525, -1, 0.31064074086555], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [290, 506, 1, 0.25810342382835866], [-236, 502, -1, -0.4317096989876103], [41, -43, 1, 1.016003024492497], [5, 7, -1, -0.32330509797825735], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-527, -295, 1, -0.15435188213658904], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [52, -18, -1, 1.643968661868314], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [5, -1, 1, 8.463762119269594], [-64, -6, -1, -0.044376334219472964], [-7, 3, 1, 8.992659596405376], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 13.559986973469357], [3, 7, -1, 13.169648817124301], [2, 7, 0, -0.12026464355831305], [-37, 79, -1, -0.027336477110095438], [259, 557, 1, -0.08370120465427368]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 264, "state": [[8, -5, 0, 4.324474873056523], [31, 20, 1, 1.8835657235957506], [-8, -1, -1, 9.652229157542346], [-506, 289, 1, 0.2717664069799471], [60, 5, -1, 0.10485223718687406], [-4, 3, 1, 13.306652433561254], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-230, -527, -1, 0.3106731184059409], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [291, 508, 1, 0.2581379175449467], [-237, 504, -1, -0.431725153924743], [43, -42, 1, 1.0216640367969063], [6, 5, -1, -0.28259190043447835], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-529, -296, 1, -0.15437926995180998], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [51, -20, -1, 1.65041165485272], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [6, 1, 1, 8.521462826719722], [-65, -4, -1, -0.039280857369659195], [-8, 1, 1, 9.037308413529672], [8, -5, 0, 1.5062791719753927], [5, 0, 1, 13.61119516464414], [5, 6, -1, 13.21577931873157], [2, 7, 0, -0.12026464355831305], [-39, 80, -1, -0.02981698577993113], [260, 559, 1, -0.0837175949198872]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 265, "state": [[8, -5, 0, 4.324474873056523], [29, 21, 1, 1.8921245605062094], [-9, 1, -1, 9.689632513361268], [-508, 290, 1, 0.27180002554172994], [61, 3, -1, 0.11026358442719336], [-5, 1, 1, 13.37765233681632], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-231, -529, -1, 0.3107052454423701], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [292, 510, 1, 0.25817214918902137], [-238, 506, -1, -0.4317404852938403], [44, -40, 1, 1.0273647981744667], [4, 4, -1, -0.2970208696226306], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-531, -297, 1, -0.15440645667161296], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [50, -22, -1, 1.6569020021249283], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [8, 2, 1, 8.53416816355278], [-63, -3, -1, -0.037072128527948195], [-9, -1, 1, 9.074711769348594], [8, -5, 0, 1.5062791719753927], [3, 1, 1, 13.662403355818924], [6, 4, -1, 13.261624767014224], [2, 7, 0, -0.12026464355831305], [-41, 79, -1, -0.033815618107277144], [261, 561, 1, -0.08373386676760598]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 266, "state": [[8, -5, 0, 4.324474873056523], [27, 22, 1, 1.901191046315283], [-7, 2, -1, 9.716313636014082], [-510, 291, 1, 0.2718333884431035], [60, 1, -1, 0.11543223840035736], [-4, -1, 1, 13.448058381099505], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-232, -531, -1, 0.3107371248682576], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [293, 512, 1, 0.2582061217328661], [-239, 508, -1, -0.4317556945706798], [45, -38, 1, 1.0331827289638733], [5, 6, -1, -0.3114498388107828], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-533, -298, 1, -0.1544334445011463], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [48, -23, -1, 1.662048371732081], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [7, 4, 1, 8.577803268633378], [-65, -4, -1, -0.039280857369659195], [-7, -2, 1, 9.101392892001408], [8, -5, 0, 1.5062791719753927], [5, 0, 1, 13.61119516464414], [7, 2, -1, 13.31091552152827], [2, 7, 0, -0.12026464355831305], [-39, 80, -1, -0.02981698577993113], [262, 563, 1, -0.08375002147580889]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 267, "state": [[8, -5, 0, 4.324474873056523], [25, 23, 1, 1.9107477074240802], [-6, 4, -1, 9.765604390528129], [-512, 292, 1, 0.271866498586468], [58, 0, -1, 0.118084575216669], [-3, -3, 1, 13.534068815910821], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-233, -533, -1, 0.31076875953267374], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [294, 514, 1, 0.2582398381040339], [-240, 510, -1, -0.4317707832076361], [46, -36, 1, 1.0391054828252102], [3, 7, -1, -0.35758034041805226], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-535, -299, 1, -0.15446023561345704], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [46, -24, -1, 1.6674667718022922], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [5, 5, 1, 8.620178598364094], [-64, -2, -1, -0.03447101634555875], [-6, -4, 1, 9.150683646515455], [8, -5, 0, 1.5062791719753927], [3, 1, 1, 13.662403355818924], [5, 1, -1, 13.323791808825222], [2, 7, 0, -0.12026464355831305], [-38, 82, -1, -0.026690494079705748], [263, 565, 1, -0.08376606030454467]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 268, "state": [[8, -5, 0, 4.324474873056523], [23, 24, 1, 1.920761094272747], [-5, 6, -1, 9.811449838810782], [-514, 293, 1, 0.2718993588304999], [59, -2, -1, 0.12347759296920893], [-1, -4, 1, 13.620079250722137], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-234, -535, -1, 0.3108001522411846], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [295, 516, 1, 0.2582733011861846], [-241, 512, -1, -0.4317857526341431], [47, -34, 1, 1.0451191086186042], [4, 5, -1, -0.3146325133612692], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-537, -300, 1, -0.1544868321500728], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [44, -25, -1, 1.6731657694947564], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 4, 1, 8.642762216014527], [-65, 0, -1, -0.029499042433764132], [-5, -6, 1, 9.196529094798109], [8, -5, 0, 1.5062791719753927], [2, 3, 1, 13.767611643738642], [3, 0, -1, 13.355208287919723], [2, 7, 0, -0.12026464355831305], [-39, 84, -1, -0.026804583625103847], [264, 567, 1, -0.08378198449585905]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 269, "state": [[8, -5, 0, 4.324474873056523], [21, 25, 1, 1.9311801650865776], [-3, 7, -1, 9.857580340418052], [-516, 294, 1, 0.2719319719909714], [60, 0, -1, 0.118084575216669], [1, -3, 1, 13.710277007085605], [7, 3, -1, -0.007340403594624213], [2, 1, 0, 0.09173296543276846], [-235, -537, -1, 0.31083130575667894], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [296, 518, 1, 0.2583065138199036], [-242, 514, -1, -0.43180060425714506], [48, -32, 1, 1.0512081911747833], [5, 7, -1, -0.3233050979782573], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-539, -301, 1, -0.1545132362215706], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [43, -27, -1, 1.6801672908680414], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, 3, 1, 8.69397040718931], [-63, -1, -1, -0.03202509923709507], [-3, -7, 1, 9.242659596405378], [8, -5, 0, 1.5062791719753927], [0, 4, 1, 13.86119516464414], [4, -2, -1, 13.42900009674494], [2, 7, 0, -0.12026464355831305], [-41, 83, -1, -0.030647620616229023], [265, 569, 1, -0.0837977952741153]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 270, "state": [[8, -5, 0, 4.324474873056523], [19, 26, 1, 1.941935925731248], [-1, 8, -1, 9.902229157542347], [-518, 295, 1, 0.27196434084155136], [58, 1, -1, 0.11534079632878064], [3, -2, 1, 13.815485295005322], [5, 4, -1, -0.05028823065140727], [2, 1, 0, 0.09173296543276846], [-236, -539, -1, 0.3108622228001753], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [297, 520, 1, 0.2583394788035026], [-243, 516, -1, -0.43181533946153694], [49, -30, 1, 1.0573560472203272], [7, 8, -1, -0.3076155219401038], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-541, -302, 1, -0.15453944990813384], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [41, -28, -1, 1.6862928985211407], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, 4, 1, 8.784168163552778], [-65, -2, -1, -0.03439457305504332], [-1, -8, 1, 9.287308413529674], [8, -5, 0, 1.5062791719753927], [-2, 3, 1, 13.95477868554964], [2, -3, -1, 13.511624767014224], [2, 7, 0, -0.12026464355831305], [-39, 82, -1, -0.028280826881554345], [266, 571, 1, -0.08381349384630739]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 271, "state": [[8, -5, 0, 4.324474873056523], [17, 27, 1, 1.9529427354676232], [1, 9, -1, 9.93963251336127], [-520, 296, 1, 0.2719964681145888], [60, 0, -1, 0.118084575216669], [4, 0, 1, 13.909068815910821], [3, 3, -1, -0.06789987439004591], [2, 1, 0, 0.09173296543276846], [-237, -541, -1, 0.31089290605161196], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [298, 522, 1, 0.2583721988938019], [-244, 518, -1, -0.4318299596105949], [50, -28, 1, 1.063544972256541], [6, 6, -1, -0.2970208696226306], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-543, -303, 1, -0.15456547526009684], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [40, -30, -1, 1.6933475664387538], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 3, 1, 8.870178598364094], [-66, -4, -1, -0.039133012597422835], [1, -9, 1, 9.324711769348596], [8, -5, 0, 1.5062791719753927], [-3, 1, 1, 14.059986973469357], [0, -4, -1, 13.605208287919723], [2, 7, 0, -0.12026464355831305], [-40, 84, -1, -0.02835618433003841], [267, 573, 1, -0.08382908140236703]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 272, "state": [[8, -5, 0, 4.324474873056523], [15, 28, 1, 1.9641014683141622], [0, 7, -1, 9.922020869622632], [-522, 297, 1, 0.27202835650187834], [61, -2, -1, 0.12330090145912834], [3, 2, 1, 14.00265233681632], [4, 1, -1, 0.018110560421269434], [2, 1, 0, 0.09173296543276846], [-238, -543, -1, 0.3109233581506185], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [299, 524, 1, 0.25840467680689605], [-245, 520, -1, -0.43184446604639587], [51, -26, 1, 1.0697565305582313], [5, 4, -1, -0.2794092258839919], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-545, -304, 1, -0.15459131429847797], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [39, -32, -1, 1.7002903986513114], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 1, 1, 8.95618903317541], [-64, -3, -1, -0.036953973432289046], [2, -7, 1, 9.35139289200141], [8, -5, 0, 1.5062791719753927], [-4, -1, 1, 14.150184729832825], [-2, -3, -1, 13.698791808825222], [2, 7, 0, -0.12026464355831305], [-39, 86, -1, -0.0253850574530705], [268, 575, 1, -0.08384455911546405]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 273, "state": [[8, -5, 0, 4.324474873056523], [13, 29, 1, 1.9753043798406553], [2, 6, -1, 9.973229060797415], [-524, 298, 1, 0.27206000865540964], [62, -4, -1, 0.12833842517903365], [1, 3, 1, 14.107860624736038], [3, -1, -1, 0.10830831678473747], [2, 1, 0, 0.09173296543276846], [-239, -545, -1, 0.3109535816972701], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [300, 526, 1, 0.25843691521890216], [-246, 522, -1, -0.43185886009022856], [52, -24, 1, 1.0759718771668607], [4, 6, -1, -0.32843734871713115], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-547, -305, 1, -0.15461696901550165], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [38, -34, -1, 1.7070983226451197], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-5, -1, 1, 9.026595077458595], [-65, -5, -1, -0.04171766841986281], [4, -6, 1, 9.400683646515457], [8, -5, 0, 1.5062791719753927], [-3, -3, 1, 14.23619516464414], [-4, -2, -1, 13.781416479094506], [2, 7, 0, -0.12026464355831305], [-40, 88, -1, -0.025524544659329833], [269, 577, 1, -0.08385992814230035]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 274, "state": [[8, -5, 0, 4.324474873056523], [11, 30, 1, 1.9864411535411373], [4, 7, -1, 10.004645539891916], [-526, 299, 1, 0.2720914271880992], [64, -5, -1, 0.13049335038719476], [-1, 4, 1, 14.198058381099505], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-240, -547, -1, 0.31098357925282505], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [301, 528, 1, 0.2584689167666922], [-247, 524, -1, -0.43187314304299396], [53, -22, 1, 1.082172098191233], [5, 4, -1, -0.2794092258839919], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-549, -306, 1, -0.15464244137510863], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [36, -35, -1, 1.7136897133805693], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, -3, 1, 9.09759498071366], [-67, -4, -1, -0.03898956518868448], [6, -5, 1, 9.44652909479811], [8, -5, 0, 1.5062791719753927], [-1, -4, 1, 14.322205599455456], [-5, 0, -1, 13.855208287919723], [2, 7, 0, -0.12026464355831305], [-39, 90, -1, -0.0227043725157989], [270, 579, 1, -0.08387518962339774]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 275, "state": [[8, -5, 0, 4.324474873056523], [9, 31, 1, 1.997405312350085], [6, 6, -1, 10.047020869622632], [-528, 300, 1, 0.27212261467450727], [65, -3, -1, 0.12542497881129322], [-3, 3, 1, 14.284068815910821], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-241, -549, -1, 0.31101335334044583], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [302, 530, 1, 0.25850068404860904], [-248, 526, -1, -0.431887316185597], [54, -20, 1, 1.0883385542201078], [3, 5, -1, -0.3360104348113152], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-551, -307, 1, -0.154667733313456], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [35, -37, -1, 1.7203510181758386], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, -4, 1, 9.171386789538877], [-69, -5, -1, -0.04101188615905381], [7, -3, 1, 9.49265959640538], [8, -5, 0, 1.5062791719753927], [1, -3, 1, 14.412403355818924], [-3, 1, -1, 13.906416479094506], [2, 7, 0, -0.12026464355831305], [-40, 88, -1, -0.025524544659329833], [271, 581, 1, -0.08389034468337989]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 276, "state": [[8, -5, 0, 4.324474873056523], [7, 32, 1, 2.0081000872909205], [7, 4, -1, 10.089396199353347], [-530, 301, 1, 0.2721535736515378], [67, -2, -1, 0.12283405867261768], [-4, 1, 1, 14.370079250722137], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-242, -551, -1, 0.3110429064459042], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [303, 532, 1, 0.25853221962516665], [-249, 528, -1, -0.4319013807793296], [55, -18, 1, 1.0944532113916678], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-553, -308, 1, -0.15469284673940653], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [33, -38, -1, 1.727120805384979], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -3, 1, 9.245178598364094], [-71, -4, -1, -0.03845604967409716], [8, -1, 1, 9.537308413529676], [8, -5, 0, 1.5062791719753927], [3, -2, 1, 14.517611643738642], [-2, 3, -1, 14.011624767014224], [2, 7, 0, -0.12026464355831305], [-41, 86, -1, -0.028428005147858156], [272, 583, 1, -0.08390539443124823]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 277, "state": [[8, -5, 0, 4.324474873056523], [5, 33, 1, 2.018442973663593], [8, 2, -1, 10.133031304433946], [-532, 302, 1, 0.2721843066191242], [66, -4, -1, 0.12771854538032773], [-3, -1, 1, 14.460277007085605], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-243, -553, -1, 0.3110722410182708], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [304, 534, 1, 0.25856352601973576], [-250, 530, -1, -0.4319153380662439], [56, -16, 1, 1.1004989456888303], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-555, -309, 1, -0.15471778353500737], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [31, -39, -1, 1.7340417445104563], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -5, 1, 9.276595077458595], [-69, -3, -1, -0.03641446721709509], [9, 1, 1, 9.574711769348598], [8, -5, 0, 1.5062791719753927], [4, 0, 1, 14.61119516464414], [0, 4, -1, 14.105208287919723], [2, 7, 0, -0.12026464355831305], [-42, 88, -1, -0.028496532567990167], [273, 585, 1, -0.08392033996065229]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 278, "state": [[8, -5, 0, 4.324474873056523], [3, 34, 1, 2.028368521205241], [9, 0, -1, 10.17202086962263], [-534, 303, 1, 0.2722148160408994], [67, -6, -1, 0.13229933868881522], [-2, -3, 1, 14.565485295005322], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-244, -555, -1, 0.31110135947058926], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [305, 536, 1, 0.25859460571921405], [-251, 532, -1, -0.43192918926951823], [57, -14, 1, 1.106459808202451], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-557, -310, 1, -0.15474254555595907], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [30, -41, -1, 1.740394497129285], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -4, 1, 9.34759498071366], [-67, -2, -1, -0.034248525889712784], [7, 2, 1, 9.601392892001412], [8, -5, 0, 1.5062791719753927], [3, 2, 1, 14.70477868554964], [2, 3, -1, 14.198791808825222], [2, 7, 0, -0.12026464355831305], [-44, 89, -1, -0.030699569785233364], [274, 587, 1, -0.08393518235015435]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 279, "state": [[8, -5, 0, 4.324474873056523], [1, 35, 1, 2.0378292823928916], [7, -1, -1, 10.194604487273063], [-536, 304, 1, 0.27224510434485216], [66, -4, -1, 0.12771854538032773], [0, -4, 1, 14.659068815910821], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-245, -557, -1, 0.31113026418053574], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [306, 538, 1, 0.2586254611746821], [-252, 534, -1, -0.43194293559381397], [58, -12, 1, 1.1123212421485071], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-559, -311, 1, -0.15476713463207503], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [29, -43, -1, 1.7464965753440467], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -2, 1, 9.421386789538877], [-66, 0, -1, -0.029499042433764198], [6, 4, 1, 9.650683646515459], [8, -5, 0, 1.5062791719753927], [1, 3, 1, 14.809986973469357], [3, 1, -1, 14.30400009674494], [2, 7, 0, -0.12026464355831305], [-42, 90, -1, -0.027116041041784004], [275, 589, 1, -0.08394992266348854]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 280, "state": [[8, -5, 0, 4.324474873056523], [-1, 36, 1, 2.0467951638173676], [6, -3, -1, 10.245812678447846], [-538, 305, 1, 0.27227517392396844], [67, -6, -1, 0.13229933868881522], [2, -5, 1, 14.719628286706243], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-246, -559, -1, 0.3111589574910642], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [307, 540, 1, 0.25865609480204543], [-253, 536, -1, -0.43195657822562455], [59, -10, 1, 1.118070245970008], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-561, -312, 1, -0.15479155256773042], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [28, -45, -1, 1.7523456513062823], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 0, 1, 9.495178598364094], [-68, 1, -1, -0.02715869726504086], [5, 6, 1, 9.696529094798112], [8, -5, 0, 1.5062791719753927], [-1, 4, 1, 14.900184729832825], [4, -1, -1, 14.394197853108407], [2, 7, 0, -0.12026464355831305], [-41, 88, -1, -0.027017002508772925], [276, 591, 1, -0.08396456194981487]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 281, "state": [[8, -5, 0, 4.324474873056523], [-3, 35, 1, 2.0559839198801266], [7, -5, -1, 10.270736641267003], [-540, 306, 1, 0.27230502713685956], [69, -7, -1, 0.13417567659175833], [4, -6, 1, 14.75265233681632], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-247, -561, -1, 0.3111874417110372], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [308, 542, 1, 0.25868650898266254], [-254, 538, -1, -0.4319701183336166], [60, -8, 1, 1.1236954805008619], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-563, -313, 1, -0.15481580114230303], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [27, -47, -1, 1.7579423155011609], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 2, 1, 9.56897040718931], [-69, 3, -1, -0.022583617650433232], [3, 7, 1, 9.742659596405382], [8, -5, 0, 1.5062791719753927], [-3, 3, 1, 14.98619516464414], [6, 0, -1, 14.355208287919723], [2, 7, 0, -0.12026464355831305], [-40, 86, -1, -0.026913296001018838], [277, 593, 1, -0.08397910124396787]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 282, "state": [[8, -5, 0, 4.324474873056523], [-5, 34, 1, 2.0656139022974735], [5, -6, -1, 10.311449838810782], [-542, 307, 1, 0.27233466630837627], [71, -6, -1, 0.13150240843414107], [3, -4, 1, 14.761485198260388], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-248, -563, -1, 0.3112157191158432], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [309, 544, 1, 0.2587167060639596], [-255, 540, -1, -0.43198355706896346], [61, -6, 1, 1.1291873215521524], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-565, -314, 1, -0.15483988211060407], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [26, -49, -1, 1.7632896034561587], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 4, 1, 9.642762216014527], [-71, 2, -1, -0.025016989842427565], [1, 8, 1, 9.787308413529678], [8, -5, 0, 1.5062791719753927], [-4, 1, 1, 15.072205599455456], [4, -1, -1, 14.394197853108407], [2, 7, 0, -0.12026464355831305], [-38, 85, -1, -0.02453426001548474], [278, 595, 1, -0.0839935415667001]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 283, "state": [[8, -5, 0, 4.324474873056523], [-7, 33, 1, 2.075642364297948], [3, -7, -1, 10.357580340418052], [-544, 308, 1, 0.2723640937302107], [72, -8, -1, 0.13569621895530765], [4, -2, 1, 14.835277007085605], [2, -4, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-249, -565, -1, 0.31124379194800084], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [310, 546, 1, 0.25874668836003223], [-256, 542, -1, -0.4319968955656714], [62, -4, 1, 1.1345378621179179], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-567, -315, 1, -0.15486379720330037], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [25, -51, -1, 1.768392537893935], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, 3, 1, 9.69397040718931], [-72, 0, -1, -0.029499042433764198], [-1, 9, 1, 9.8247117693486], [8, -5, 0, 1.5062791719753927], [-3, -1, 1, 15.162403355818924], [3, -3, -1, 14.480208287919723], [2, 7, 0, -0.12026464355831305], [-40, 84, -1, -0.028356184330038413], [279, 597, 1, -0.08400788392492105]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 284, "state": [[8, -5, 0, 4.324474873056523], [-9, 32, 1, 2.0860104348113158], [1, -8, -1, 10.402229157542347], [-546, 309, 1, 0.2723933116614846], [71, -10, -1, 0.14035427819904492], [3, 0, 1, 14.909068815910821], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-250, -567, -1, 0.31127166241774945], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [311, 548, 1, 0.25877645815223443], [-257, 544, -1, -0.43201013494089807], [63, -2, 1, 1.1397408705123608], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-569, -316, 1, -0.15488754812732816], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [23, -52, -1, 1.7746529196687915], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, 4, 1, 9.784168163552778], [-73, 2, -1, -0.025139723531683703], [-2, 7, 1, 9.851392892001414], [8, -5, 0, 1.5062791719753927], [-2, -3, 1, 15.267611643738642], [1, -4, -1, 14.566218722731039], [2, 7, 0, -0.12026464355831305], [-42, 85, -1, -0.030665753798683523], [280, 599, 1, -0.0840221293119307]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 285, "state": [[8, -5, 0, 4.324474873056523], [-11, 31, 1, 2.096643815669962], [-1, -9, -1, 10.43963251336127], [-548, 310, 1, 0.27242232232932523], [72, -8, -1, 0.13569621895530765], [4, 2, 1, 14.982860624736038], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-251, -569, -1, 0.3112993327036276], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [312, 550, 1, 0.258806017689755], [-258, 546, -1, -0.4320232762952644], [64, 0, 1, 1.1447917120802826], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-571, -317, 1, -0.1549111365662981], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [21, -53, -1, 1.7808901314703363], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 3, 1, 9.870178598364094], [-74, 0, -1, -0.029499042433764198], [-4, 6, 1, 9.90068364651546], [8, -5, 0, 1.5062791719753927], [0, -4, 1, 15.36119516464414], [-1, -3, -1, 14.656416479094506], [2, 7, 0, -0.12026464355831305], [-44, 86, -1, -0.03289009386303895], [281, 601, 1, -0.08403627870764882]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 286, "state": [[8, -5, 0, 4.324474873056523], [-13, 30, 1, 2.1074550319772314], [-2, -7, -1, 10.466313636014084], [-550, 311, 1, 0.2724511279294295], [71, -6, -1, 0.13150240843414107], [2, 3, 1, 15.065485295005322], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-252, -571, -1, 0.31132680495303894], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [313, 552, 1, 0.2588353691901818], [-259, 548, -1, -0.4320363207131592], [62, 1, 1, 1.1473585047268735], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-573, -318, 1, -0.15493456418089183], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [19, -54, -1, 1.7870853072020818], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 1, 1, 9.95618903317541], [-73, -2, -1, -0.03385836133584469], [-6, 5, 1, 9.946529094798114], [8, -5, 0, 1.5062791719753927], [1, -6, 1, 15.387479392999767], [-3, -2, -1, 14.761624767014224], [2, 7, 0, -0.12026464355831305], [-42, 85, -1, -0.030665753798683526], [282, 603, 1, -0.08405033307883937]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 287, "state": [[8, -5, 0, 4.324474873056523], [-15, 29, 1, 2.1183472068975773], [-4, -6, -1, 10.51560439052813], [-552, 312, 1, 0.27247973062661607], [73, -5, -1, 0.12896859983907838], [0, 4, 1, 15.159068815910821], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-253, -573, -1, 0.3113540812828059], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [314, 554, 1, 0.2588645148400547], [-260, 550, -1, -0.43204926926303777], [60, 2, 1, 1.1500949132830505], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-575, -319, 1, -0.15495783260925122], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [18, -56, -1, 1.7914342704377348], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -1, 1, 10.046386789538877], [-71, -1, -1, -0.031740513142381854], [-7, 3, 1, 9.992659596405383], [8, -5, 0, 1.5062791719753927], [2, -4, 1, 15.434986973469357], [-4, 0, -1, 14.855208287919723], [2, 7, 0, -0.12026464355831305], [-44, 86, -1, -0.03289009386303895], [283, 605, 1, -0.0840642933793305]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 288, "state": [[8, -5, 0, 4.324474873056523], [-17, 28, 1, 2.129219028881765], [-6, -5, -1, 10.561449838810784], [-554, 313, 1, 0.27250813255536555], [75, -4, -1, 0.12656480442442575], [-2, 3, 1, 15.25265233681632], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-254, -575, -1, 0.31138116377971176], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [315, 556, 1, 0.25889345679540615], [-261, 552, -1, -0.4320621229977128], [58, 3, 1, 1.1530165346751822], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-577, -320, 1, -0.15498094346735897], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [17, -58, -1, 1.7955532871733024], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, -3, 1, 10.151595077458595], [-72, -3, -1, -0.03612666474039974], [-8, 1, 1, 10.03730841352968], [8, -5, 0, 1.5062791719753927], [4, -3, 1, 15.508778782294574], [-3, 2, -1, 14.948791808825222], [2, 7, 0, -0.12026464355831305], [-43, 88, -1, -0.02996304969954449], [284, 607, 1, -0.08407816055023012]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 289, "state": [[8, -5, 0, 4.324474873056523], [-19, 27, 1, 2.139970310444371], [-7, -3, -1, 10.607580340418053], [-556, 314, 1, 0.2725363358203497], [76, -2, -1, 0.12227189676882169], [-3, 1, 1, 15.357860624736038], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-255, -577, -1, 0.3114080545010314], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [316, 558, 1, 0.258922197182291], [-262, 554, -1, -0.4320748829546398], [56, 4, 1, 1.1561406475802132], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-579, -321, 1, -0.15500389834941167], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [16, -60, -1, 1.799455025261027], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -4, 1, 10.245178598364094], [-70, -2, -1, -0.03404508977158841], [-9, -1, 1, 10.074711769348601], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 15.559986973469357], [-1, 3, -1, 15.05400009674494], [2, 7, 0, -0.12026464355831305], [-45, 89, -1, -0.032130173607010294], [285, 609, 1, -0.08409193552013731]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 290, "state": [[8, -5, 0, 4.324474873056523], [-21, 26, 1, 2.1505073952662506], [-8, -1, -1, 10.65222915754235], [-558, 315, 1, 0.27256434249694983], [78, -3, -1, 0.12420290344379624], [-4, -1, 1, 15.448058381099505], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-256, -579, -1, 0.3114347554750503], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [317, 560, 1, 0.25895073809730546], [-263, 556, -1, -0.4320875501561962], [54, 5, 1, 1.159486382095203], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-581, -322, 1, -0.15502669882818576], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [14, -61, -1, 1.8050256309650037], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -6, 1, 10.27146282671972], [-69, -4, -1, -0.038715101234694266], [-7, -2, 1, 10.101392892001416], [8, -5, 0, 1.5062791719753927], [4, 1, 1, 15.650184729832825], [1, 4, -1, 15.144197853108407], [2, 7, 0, -0.12026464355831305], [-47, 90, -1, -0.03422068126843495], [286, 611, 1, -0.08410561920534923]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 291, "state": [[8, -5, 0, 4.324474873056523], [-23, 25, 1, 2.160747707424081], [-9, 1, -1, 10.689632513361271], [-560, 316, 1, 0.27259215463176356], [79, -5, -1, 0.12814425495032827], [-3, -3, 1, 15.534068815910821], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-257, -581, -1, 0.3114612687015733], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [318, 562, 1, 0.25897908160809485], [-264, 558, -1, -0.4321001256099542], [52, 6, 1, 1.1630748916779996], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-583, -323, 1, -0.15504934645539592], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [12, -62, -1, 1.8105032323019692], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -5, 1, 10.33118903317541], [-67, -5, -1, -0.04135430160123864], [-6, -4, 1, 10.150683646515462], [8, -5, 0, 1.5062791719753927], [5, 3, 1, 15.697205599455456], [3, 5, -1, 15.191218722731039], [2, 7, 0, -0.12026464355831305], [-48, 92, -1, -0.03416025798238891], [287, 613, 1, -0.08411921251006424]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 292, "state": [[8, -5, 0, 4.324474873056523], [-25, 24, 1, 2.170622938974904], [-7, 2, -1, 10.716313636014085], [-562, 317, 1, 0.2726197742431024], [78, -7, -1, 0.13232955033292687], [-1, -4, 1, 15.620079250722137], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-258, -583, -1, 0.3114875961524222], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [319, 564, 1, 0.25900722975385143], [-265, 560, -1, -0.43211261030894743], [50, 7, 1, 1.1669295187311757], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-585, -324, 1, -0.15507184276204583], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [11, -64, -1, 1.8138411148068152], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -3, 1, 10.392762216014527], [-65, -6, -1, -0.04414875342640795], [-5, -6, 1, 10.196529094798116], [8, -5, 0, 1.5062791719753927], [3, 4, 1, 15.758778782294574], [2, 3, -1, 15.198791808825224], [2, 7, 0, -0.12026464355831305], [-49, 94, -1, -0.03410238346017914], [288, 615, 1, -0.08413271632658088]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 293, "state": [[8, -5, 0, 4.324474873056523], [-27, 23, 1, 2.1800806665637746], [-6, 4, -1, 10.765604390528132], [-564, 318, 1, 0.27264720332147774], [80, -8, -1, 0.13394733393194577], [1, -3, 1, 15.710277007085605], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-259, -585, -1, 0.3115137397719233], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [320, 566, 1, 0.2590351845458014], [-266, 562, -1, -0.4321250052319326], [48, 8, 1, 1.1710759404359097], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-587, -325, 1, -0.1550941892587728], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [9, -65, -1, 1.8190335748760487], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -1, 1, 10.44397040718931], [-67, -7, -1, -0.04606706215946726], [-3, -7, 1, 10.242659596405385], [8, -5, 0, 1.5062791719753927], [1, 3, 1, 15.809986973469357], [3, 1, -1, 15.304000096744941], [2, 7, 0, -0.12026464355831305], [-48, 92, -1, -0.03416025798238891], [289, 617, 1, -0.0841461315354929]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 294, "state": [[8, -5, 0, 4.324474873056523], [-29, 22, 1, 2.189084478471736], [-5, 6, -1, 10.811449838810786], [-566, 319, 1, 0.27267444383007766], [81, -10, -1, 0.13763441066995974], [3, -4, 1, 15.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-260, -587, -1, 0.3115397014773844], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [321, 568, 1, 0.2590629479676825], [-267, 564, -1, -0.43213731134364486], [46, 9, 1, 1.1755422747967812], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-589, -326, 1, -0.15511638743618483], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [8, -67, -1, 1.822017155812483], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 1, 1, 10.534168163552778], [-65, -8, -1, -0.048989325057994505], [-1, -8, 1, 10.287308413529681], [8, -5, 0, 1.5062791719753927], [-1, 4, 1, 15.900184729832825], [4, -1, -1, 15.394197853108409], [2, 7, 0, -0.12026464355831305], [-47, 94, -1, -0.03141647909450054], [290, 619, 1, -0.08415945900588061]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 295, "state": [[8, -5, 0, 4.324474873056523], [-31, 21, 1, 2.1976129048825466], [-3, 7, -1, 10.857580340418055], [-568, 320, 1, 0.2727014977052341], [82, -8, -1, 0.13356290244990177], [4, -6, 1, 15.75265233681632], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-261, -589, -1, 0.31156548315956245], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [322, 570, 1, 0.2590905219762116], [-268, 566, -1, -0.43214952959504815], [44, 10, 1, 1.1803591178171906], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-591, -327, 1, -0.15513843876519137], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [7, -69, -1, 1.8248400827140976], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 3, 1, 10.620178598364094], [-63, -7, -1, -0.0471106861724028], [1, -9, 1, 10.324711769348603], [8, -5, 0, 1.5062791719753927], [-3, 3, 1, 15.98619516464414], [3, -3, -1, 15.480208287919725], [2, 7, 0, -0.12026464355831305], [-48, 96, -1, -0.03141647909450054], [291, 621, 1, -0.08417269959549825]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 296, "state": [[8, -5, 0, 4.324474873056523], [-33, 20, 1, 2.205657544274199], [-1, 8, -1, 10.902229157542351], [-570, 321, 1, 0.2727283668568795], [83, -6, -1, 0.12956977347704796], [3, -4, 1, 15.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-262, -591, -1, 0.31159108668312097], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [323, 572, 1, 0.2591179085015427], [-269, 568, -1, -0.4321616609235799], [42, 11, 1, 1.1855594707954218], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-593, -328, 1, -0.15516034469732767], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [6, -71, -1, 1.8275133508717147], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, 4, 1, 10.70618903317541], [-62, -5, -1, -0.042306401652265874], [2, -7, 1, 10.351392892001417], [8, -5, 0, 1.5062791719753927], [-4, 1, 1, 16.072205599455454], [1, -4, -1, 15.56621872273104], [2, 7, 0, -0.12026464355831305], [-49, 94, -1, -0.03410238346017914], [292, 623, 1, -0.08418585415095796]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 297, "state": [[8, -5, 0, 4.324474873056523], [-35, 19, 1, 2.2132207780133695], [1, 9, -1, 10.939632513361273], [-572, 322, 1, 0.2727550531689955], [85, -7, -1, 0.13116194256214742], [1, -3, 1, 15.710277007085605], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-263, -593, -1, 0.3116165138870784], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [324, 574, 1, 0.259145109447716], [-270, 570, -1, -0.4321737062533905], [43, 13, 1, 1.1915178506637296], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-595, -329, 1, -0.15518210666507196], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [5, -73, -1, 1.8300471594667773], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, 3, 1, 10.796386789538877], [-61, -3, -1, -0.0373200332232398], [4, -6, 1, 10.400683646515464], [8, -5, 0, 1.5062791719753927], [-3, -1, 1, 16.162403355818924], [-1, -3, -1, 15.656416479094508], [2, 7, 0, -0.12026464355831305], [-50, 96, -1, -0.03404689977998236], [293, 625, 1, -0.08419892350791008]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 298, "state": [[8, -5, 0, 4.324474873056523], [-37, 18, 1, 2.2203133978144063], [0, 7, -1, 10.922020869622635], [-574, 323, 1, 0.27278155850005126], [84, -5, -1, 0.12754691898054324], [-1, -4, 1, 15.620079250722137], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-264, -595, -1, 0.3116417665852473], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [325, 576, 1, 0.25917212669309747], [-271, 572, -1, -0.43218566649557827], [42, 15, 1, 1.1993856677970975], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-597, -330, 1, -0.15520372608215774], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [3, -74, -1, 1.834482488006318], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 10.901595077458595], [-59, -2, -1, -0.03489206018630412], [6, -7, 1, 10.419881499623866], [8, -5, 0, 1.5062791719753927], [-2, -3, 1, 16.26761164373864], [-3, -2, -1, 15.761624767014226], [2, 7, 0, -0.12026464355831305], [-49, 98, -1, -0.03141647909450054], [294, 627, 1, -0.0842119084912199]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 299, "state": [[8, -5, 0, 4.324474873056523], [-39, 17, 1, 2.226952375083787], [2, 6, -1, 10.973229060797419], [-576, 324, 1, 0.272807884683434], [83, -7, -1, 0.13147559210025972], [1, -3, 1, 15.710277007085605], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-265, -597, -1, 0.3116668465666641], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [326, 578, 1, 0.2591989620908098], [-272, 574, -1, -0.4321975425484185], [43, 17, 1, 1.2047120098337678], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-599, -331, 1, -0.15522520434387857], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [2, -76, -1, 1.836743862537034], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-5, 1, 1, 10.963762119269594], [-58, 0, -1, -0.029499042433764125], [8, -6, 1, 10.454683743260398], [8, -5, 0, 1.5062791719753927], [0, -4, 1, 16.36119516464414], [-5, -1, -1, 15.823791808825225], [2, 7, 0, -0.12026464355831305], [-48, 96, -1, -0.03141647909450054], [295, 629, 1, -0.0842248099151411]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 300, "state": [[8, -5, 0, 4.324474873056523], [-41, 16, 1, 2.2331589067433235], [4, 7, -1, 11.00464553989192], [-578, 325, 1, 0.27283403352787006], [85, -6, -1, 0.12930043805271657], [3, -4, 1, 15.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-266, -599, -1, 0.31169175559601076], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [327, 580, 1, 0.25922561746915473], [-273, 576, -1, -0.43220933529758865], [42, 19, 1, 1.2124058507933175], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-601, -332, 1, -0.15524654282738792], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [1, -78, -1, 1.8388908478829233], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, -1, 1, 11.03416816355278], [-59, -2, -1, -0.03489206018630412], [9, -4, 1, 10.490537656236137], [8, -5, 0, 1.5062791719753927], [1, -6, 1, 16.38747939299977], [-4, 1, -1, 15.89419785310841], [2, 7, 0, -0.12026464355831305], [-49, 94, -1, -0.03410238346017914], [296, 631, 1, -0.08423762858348573]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 301, "state": [[8, -5, 0, 4.324474873056523], [-43, 15, 1, 2.2389567953538796], [6, 6, -1, 11.047020869622635], [-580, 326, 1, 0.27286000681783784], [87, -7, -1, 0.13086261873406702], [4, -6, 1, 15.75265233681632], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-267, -601, -1, 0.3117164954140272], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [328, 582, 1, 0.25925209463202686], [-274, 578, -1, -0.43222104561638824], [43, 21, 1, 1.2170961348344869], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-603, -333, 1, -0.1552677428919929], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-1, -79, -1, 1.842945696031018], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -3, 1, 11.120178598364095], [-58, -4, -1, -0.040457893069979614], [10, -2, 1, 10.525683646515464], [8, -5, 0, 1.5062791719753927], [2, -4, 1, 16.434986973469357], [-3, 3, -1, 15.980208287919726], [2, 7, 0, -0.12026464355831305], [-48, 92, -1, -0.03416025798238891], [297, 633, 1, -0.0842503652897911]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 302, "state": [[8, -5, 0, 4.324474873056523], [-45, 14, 1, 2.2443711675867815], [7, 4, -1, 11.08939619935335], [-582, 327, 1, 0.2728858063139727], [85, -6, -1, 0.12930043805271657], [3, -4, 1, 15.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-268, -603, -1, 0.31174106773791593], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [329, 584, 1, 0.2592783953593194], [-275, 580, -1, -0.4322326743659541], [42, 23, 1, 1.2245304691452858], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-605, -334, 1, -0.15528880587944188], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-2, -77, -1, 1.8450641494470417], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -4, 1, 11.206189033175411], [-60, -3, -1, -0.03745016806185234], [11, 0, 1, 10.557100125609965], [8, -5, 0, 1.5062791719753927], [4, -3, 1, 16.508778782294574], [-1, 4, -1, 16.06621872273104], [2, 7, 0, -0.12026464355831305], [-46, 91, -1, -0.03211452261452538], [298, 635, 1, -0.08426302081748341]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 303, "state": [[8, -5, 0, 4.324474873056523], [-47, 13, 1, 2.2494275026739334], [8, 2, -1, 11.133031304433949], [-584, 328, 1, 0.2729114337534633], [86, -4, -1, 0.1254817995668555], [4, -6, 1, 15.75265233681632], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-269, -605, -1, 0.3117654742617381], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [330, 586, 1, 0.2593045214073214], [-276, 582, -1, -0.4322442223954718], [43, 25, 1, 1.2286070454959614], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-607, -335, 1, -0.15530973311420737], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-4, -76, -1, 1.8493000382674738], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -6, 1, 11.245178598364095], [-62, -4, -1, -0.03975289239612886], [12, 2, 1, 10.583384353965592], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 16.559986973469357], [1, 3, -1, 16.15641647909451], [2, 7, 0, -0.12026464355831305], [-47, 89, -1, -0.03495267359465812], [299, 637, 1, -0.0842755959400382]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 304, "state": [[8, -5, 0, 4.324474873056523], [-49, 12, 1, 2.2541509266424073], [9, 0, -1, 11.172020869622633], [-586, 329, 1, 0.2729368908504404], [87, -6, -1, 0.12904342585288445], [3, -4, 1, 15.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-270, -607, -1, 0.31178971665680183], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [331, 588, 1, 0.2593304745091077], [-277, 584, -1, -0.4322556905423818], [42, 27, 1, 1.2357228961694706], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-609, -336, 1, -0.15533052590376273], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-6, -75, -1, 1.8536365209222447], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -8, 1, 11.264970310444378], [-60, -3, -1, -0.03745016806185234], [11, 4, 1, 10.612608754837465], [8, -5, 0, 1.5062791719753927], [4, 1, 1, 16.650184729832826], [3, 2, -1, 16.261624767014226], [2, 7, 0, -0.12026464355831305], [-49, 90, -1, -0.036974216918579966], [300, 639, 1, -0.08428809142113772]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 305, "state": [[8, -5, 0, 4.324474873056523], [-51, 11, 1, 2.2585657235957513], [7, -1, -1, 11.194604487273066], [-588, 330, 1, 0.2729621792963579], [85, -5, -1, 0.12743585483730732], [4, -6, 1, 15.75265233681632], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-271, -609, -1, 0.31181379657204256], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [332, 590, 1, 0.2593562563749207], [-278, 586, -1, -0.43226707963258193], [43, 29, 1, 1.239226320825423], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-611, -337, 1, -0.15535118553885396], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-8, -74, -1, 1.858070559353158], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -7, 1, 11.309619127568673], [-58, -2, -1, -0.03498497024176968], [9, 5, 1, 10.637807359218513], [8, -5, 0, 1.5062791719753927], [3, 3, 1, 16.73619516464414], [4, 0, -1, 16.355208287919726], [2, 7, 0, -0.12026464355831305], [-48, 88, -1, -0.03709816934140949], [301, 641, 1, -0.08430050801482565]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 306, "state": [[8, -5, 0, 4.324474873056523], [-53, 10, 1, 2.2626950175084866], [6, -3, -1, 11.24581267844785], [-590, 331, 1, 0.2729873007603663], [87, -4, -1, 0.125396894297187], [3, -4, 1, 15.761485198260388], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-272, -611, -1, 0.311837715634396], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [333, 592, 1, 0.2593818686925451], [-279, 588, -1, -0.4322783904806257], [42, 31, 1, 1.245988540191845], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-613, -338, 1, -0.15537171329376634], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-10, -73, -1, 1.8625983726563582], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -5, 1, 11.352566954625457], [-57, 0, -1, -0.029499042433764198], [7, 6, 1, 10.669881499623866], [8, -5, 0, 1.5062791719753927], [1, 4, 1, 16.822205599455454], [6, -1, -1, 16.381492516275355], [2, 7, 0, -0.12026464355831305], [-49, 90, -1, -0.036974216918579966], [302, 643, 1, -0.08431284646565831]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 307, "state": [[8, -5, 0, 4.324474873056523], [-55, 9, 1, 2.26656058362128], [7, -5, -1, 11.270736641267007], [-592, 332, 1, 0.2730122568896789], [89, -5, -1, 0.12701647519374737], [4, -6, 1, 15.75265233681632], [4, -8, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-273, -613, -1, 0.31186147544916376], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [334, 594, 1, 0.25940731312767473], [-280, 590, -1, -0.43228962388991615], [43, 33, 1, 1.2489698853032554], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-615, -339, 1, -0.15539211042658557], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-12, -72, -1, 1.8672154124448135], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -3, 1, 11.370178598364095], [-58, 2, -1, -0.024013114625758718], [5, 7, 1, 10.708384353965592], [8, -5, 0, 1.5062791719753927], [-1, 3, 1, 16.912403355818924], [7, -3, -1, 16.419648817124305], [2, 7, 0, -0.12026464355831305], [-48, 88, -1, -0.03709816934140949], [303, 645, 1, -0.08432510750885376]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 308, "state": [[8, -5, 0, 4.324474873056523], [-57, 8, 1, 2.2701827553796137], [5, -6, -1, 11.311449838810786], [-594, 333, 1, 0.27303704930993045], [88, -7, -1, 0.13071802635312849], [3, -4, 1, 15.761485198260388], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-274, -615, -1, 0.31188507760037104], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [335, 596, 1, 0.25943259132427277], [-281, 592, -1, -0.43230078065289623], [42, 35, 1, 1.2553627428921306], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-617, -340, 1, -0.15541237817945455], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-13, -70, -1, 1.87015558496106], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -1, 1, 11.456189033175411], [-57, 0, -1, -0.029499042433764198], [3, 8, 1, 10.75000000000001], [8, -5, 0, 1.5062791719753927], [-3, 2, 1, 17.01761164373864], [6, -1, -1, 16.381492516275355], [2, 7, 0, -0.12026464355831305], [-47, 86, -1, -0.03722777431527874], [304, 647, 1, -0.08433729187043738]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 309, "state": [[8, -5, 0, 4.324474873056523], [-59, 7, 1, 2.273580399668069], [3, -7, -1, 11.357580340418055], [-596, 334, 1, 0.27306167962552935], [89, -5, -1, 0.12701647519374737], [4, -6, 1, 15.75265233681632], [5, -7, -1, 0.20838435396558083], [2, 1, 0, 0.09173296543276846], [-275, -617, -1, 0.3119085236511181], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [336, 598, 1, 0.2594577049049244], [-282, 594, -1, -0.43231186155123463], [43, 37, 1, 1.2578773972780077], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-619, -341, 1, -0.15543251777882483], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-15, -69, -1, 1.8749999999999991], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 1, 1, 11.546386789538879], [-56, -2, -1, -0.035180732680673135], [1, 9, 1, 10.789488481871325], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 17.11119516464414], [7, -3, -1, 16.419648817124305], [2, 7, 0, -0.12026464355831305], [-45, 87, -1, -0.03359654743614469], [305, 649, 1, -0.08434940026738527]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 310, "state": [[8, -5, 0, 4.324474873056523], [-61, 6, 1, 2.2767709392025863], [1, -8, -1, 11.402229157542351], [-598, 335, 1, 0.2730861494200028], [88, -3, -1, 0.12350821146500125], [3, -4, 1, 15.761485198260388], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-276, -619, -1, 0.3119318151439243], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [337, 600, 1, 0.2594826554711833], [-283, 596, -1, -0.43232286735600867], [42, 39, 1, 1.2638997776451122], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-621, -342, 1, -0.15545253043570337], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-16, -67, -1, 1.8782395976188582], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 3, 1, 11.651595077458596], [-58, -3, -1, -0.03772386502866348], [-1, 10, 1, 10.822962884325241], [8, -5, 0, 1.5062791719753927], [-3, -2, 1, 17.20477868554964], [9, -4, -1, 16.421770757293555], [2, 7, 0, -0.12026464355831305], [-47, 88, -1, -0.035697641993733605], [306, 651, 1, -0.08436143340776465]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 311, "state": [[8, -5, 0, 4.324474873056523], [-63, 5, 1, 2.2797704060976423], [-1, -9, -1, 11.439632513361273], [-600, 336, 1, 0.2731104602563349], [86, -4, -1, 0.1254817995668555], [4, -2, 1, 15.835277007085605], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-277, -621, -1, 0.3119549536010656], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [338, 602, 1, 0.2595074446039107], [-284, 598, -1, -0.432333798827883], [43, 41, 1, 1.266003024492497], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-623, -343, 1, -0.155472417345895], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-18, -66, -1, 1.883306513819903], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 4, 1, 11.745178598364095], [-56, -4, -1, -0.0408479779336944], [-2, 8, 1, 10.84608969079865], [8, -5, 0, 1.5062791719753927], [-1, -3, 1, 17.309986973469357], [7, -5, -1, 16.4539240595641], [2, 7, 0, -0.12026464355831305], [-46, 86, -1, -0.035795784803344284], [307, 653, 1, -0.08437339199087189]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 312, "state": [[8, -5, 0, 4.324474873056523], [-65, 4, 1, 2.2825935147948213], [-2, -7, -1, 11.466313636014087], [-602, 337, 1, 0.2731346136772986], [87, -2, -1, 0.1217426652327614], [3, 0, 1, 15.909068815910821], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-278, -623, -1, 0.3119779405249052], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [339, 604, 1, 0.25953207386360827], [-285, 600, -1, -0.43234465671728434], [42, 43, 1, 1.2716640367969065], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-625, -344, 1, -0.15549217969023993], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-20, -65, -1, 1.8884387645587768], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 3, 1, 11.838762119269594], [-57, -6, -1, -0.04619072564902678], [-3, 6, 1, 10.880891934435182], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 17.400184729832826], [6, -7, -1, 16.492426913905824], [2, 7, 0, -0.12026464355831305], [-47, 84, -1, -0.03881370344468707], [308, 655, 1, -0.08438527670736783]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 313, "state": [[8, -5, 0, 4.324474873056523], [-67, 3, 1, 2.2852537458099804], [-4, -6, -1, 11.515604390528134], [-604, 338, 1, 0.27315861120578105], [89, -1, -1, 0.11987275775604506], [4, 2, 1, 15.982860624736038], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-279, -625, -1, 0.3120007773982178], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [340, 606, 1, 0.2595565447907448], [-286, 602, -1, -0.43235544176457363], [40, 44, 1, 1.277364798174467], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-627, -345, 1, -0.15551181863484703], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-21, -63, -1, 1.8921393752639704], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 1, 1, 11.943970407189312], [-58, -4, -1, -0.040457893069979614], [-5, 7, 1, 10.905815897254339], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 17.48619516464414], [4, -6, -1, 16.511624767014226], [2, 7, 0, -0.12026464355831305], [-48, 82, -1, -0.041911472725504974], [309, 657, 1, -0.08439708823941056]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 314, "state": [[8, -5, 0, 4.324474873056523], [-69, 2, 1, 2.28776343426132], [-6, -5, -1, 11.561449838810788], [-606, 339, 1, 0.27318245434510285], [90, 1, -1, 0.11631625972788154], [2, 3, 1, 16.06548529500532], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-280, -627, -1, 0.3120234656845079], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [341, 608, 1, 0.25958085890607624], [-287, 604, -1, -0.432366154700214], [38, 45, 1, 1.2831827289638735], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-629, -346, 1, -0.15553133533132282], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-23, -62, -1, 1.8974679317227114], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, -1, 1, 12.03416816355278], [-56, -3, -1, -0.038017057714669435], [-6, 5, 1, 10.946529094798118], [8, -5, 0, 1.5062791719753927], [4, -1, 1, 17.572205599455454], [2, -7, -1, 16.560915521528273], [2, 7, 0, -0.12026464355831305], [-47, 84, -1, -0.03881370344468707], [310, 659, 1, -0.084408827260786]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 315, "state": [[8, -5, 0, 4.324474873056523], [-71, 1, 1, 2.2901338590220988], [-7, -3, -1, 11.607580340418057], [-608, 340, 1, 0.2732061445793309], [92, 2, -1, 0.11462523003120137], [0, 4, 1, 16.15906881591082], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-281, -629, -1, 0.31204600682832145], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [342, 610, 1, 0.2596050177109598], [-288, 606, -1, -0.43237679624493547], [36, 46, 1, 1.2891054828252104], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-631, -347, 1, -0.15555073091699595], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-25, -61, -1, 1.9028355942192778], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -3, 1, 12.120178598364095], [-55, -5, -1, -0.0439280116219164], [-7, 3, 1, 10.992659596405387], [8, -5, 0, 1.5062791719753927], [5, 1, 1, 17.64261164373864], [1, -5, -1, 16.573791808825224], [2, 7, 0, -0.12026464355831305], [-46, 86, -1, -0.035795784803344284], [311, 661, 1, -0.08442049443703577]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 316, "state": [[8, -5, 0, 4.324474873056523], [-73, 0, 1, 2.2923753297307163], [-8, -1, -1, 11.652229157542353], [-610, 341, 1, 0.27322968337358555], [94, 3, -1, 0.11300688564915509], [-2, 3, 1, 16.252652336816322], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-282, -631, -1, 0.31206840225555155], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [343, 612, 1, 0.25962902268766197], [-289, 608, -1, -0.4323873671098968], [34, 47, 1, 1.2951191086186045], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-633, -348, 1, -0.15557000651513767], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-27, -60, -1, 1.9082304766390594], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, -5, 1, 12.184619127568673], [-54, -3, -1, -0.038331903877831516], [-8, 1, 1, 11.037308413529683], [8, -5, 0, 1.5062791719753927], [3, 2, 1, 17.704778685549638], [0, -3, -1, 16.605208287919723], [2, 7, 0, -0.12026464355831305], [-48, 85, -1, -0.03944042784406433], [312, 663, 1, -0.08443209042558297]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 317, "state": [[8, -5, 0, 4.324474873056523], [-71, -1, 1, 2.294616800439334], [-9, 1, -1, 11.689632513361275], [-612, 342, 1, 0.27325307217434186], [93, 1, -1, 0.1163732976933378], [-3, 1, 1, 16.357860624736038], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-283, -633, -1, 0.31209065337373865], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [344, 614, 1, 0.25965287529966097], [-290, 610, -1, -0.43239786799684354], [32, 48, 1, 1.3012081911747835], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-635, -349, 1, -0.15558916323517843], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-28, -58, -1, 1.91251264971235], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -4, 1, 12.245178598364095], [-55, -5, -1, -0.0439280116219164], [-9, -1, 1, 11.074711769348605], [8, -5, 0, 1.5062791719753927], [1, 3, 1, 17.809986973469353], [-2, -4, -1, 16.67900009674494], [2, 7, 0, -0.12026464355831305], [-50, 86, -1, -0.0414400036849626], [313, 665, 1, -0.08444361587585553]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 318, "state": [[8, -5, 0, 4.324474873056523], [-69, -2, 1, 2.296987225200113], [-7, 2, -1, 11.716313636014089], [-614, 343, 1, 0.2732763124097247], [94, 3, -1, 0.11300688564915509], [-4, -1, 1, 16.448058381099507], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-284, -635, -1, 0.3121127615723644], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [345, 616, 1, 0.259676576991943], [-291, 612, -1, -0.43240829959826355], [30, 49, 1, 1.3073560472203274], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-637, -350, 1, -0.1556082021729201], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-30, -57, -1, 1.9180382413143535], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -6, 1, 12.271462826719722], [-57, -4, -1, -0.04064953047657261], [-7, -2, 1, 11.101392892001419], [8, -5, 0, 1.5062791719753927], [-1, 4, 1, 17.900184729832823], [-3, -2, -1, 16.761624767014222], [2, 7, 0, -0.12026464355831305], [-49, 88, -1, -0.03848538014953693], [314, 667, 1, -0.08445507142940736]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 319, "state": [[8, -5, 0, 4.324474873056523], [-67, -3, 1, 2.2994969136514523], [-6, 4, -1, 11.765604390528136], [-616, 344, 1, 0.2732994054897991], [93, 5, -1, 0.10953608799604572], [-3, -3, 1, 16.53406881591082], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-285, -637, -1, 0.3121347282231404], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [346, 618, 1, 0.25970012919129354], [-292, 614, -1, -0.43241866259753864], [28, 50, 1, 1.3135449722565413], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-639, -351, 1, -0.1556271244107446], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-31, -55, -1, 1.9226178203690025], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -5, 1, 12.331189033175411], [-58, -2, -1, -0.03498497024176968], [-6, -4, 1, 11.150683646515466], [8, -5, 0, 1.5062791719753927], [-3, 3, 1, 17.986195164644137], [-4, 0, -1, 16.855208287919723], [2, 7, 0, -0.12026464355831305], [-51, 87, -1, -0.042011131411973754], [315, 669, 1, -0.08446645772003732]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 320, "state": [[8, -5, 0, 4.324474873056523], [-65, -4, 1, 2.3021571446666114], [-5, 6, -1, 11.81144983881079], [-618, 345, 1, 0.27332235280685424], [95, 6, -1, 0.10804601757221442], [-1, -4, 1, 16.620079250722135], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-286, -639, -1, 0.312156554680291], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [347, 620, 1, 0.25972353330658243], [-293, 616, -1, -0.43242895766909434], [26, 51, 1, 1.3197565305582315], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-641, -352, 1, -0.15564593101781862], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-33, -54, -1, 1.9282355330192937], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -3, 1, 12.392762216014528], [-57, -4, -1, -0.04064953047657261], [-5, -6, 1, 11.19652909479812], [8, -5, 0, 1.5062791719753927], [-4, 1, 1, 18.07220559945545], [-3, 2, -1, 16.948791808825224], [2, 7, 0, -0.12026464355831305], [-50, 89, -1, -0.03908905774277501], [316, 671, 1, -0.08447777537390608]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 321, "state": [[8, -5, 0, 4.324474873056523], [-63, -5, 1, 2.3049802533637904], [-3, 7, -1, 11.857580340418059], [-620, 346, 1, 0.27334515573568285], [93, 7, -1, 0.1061277169930357], [1, -3, 1, 16.710277007085605], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-287, -641, -1, 0.31217824228083113], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [348, 622, 1, 0.2597467907290443], [-294, 618, -1, -0.4324391854785457], [24, 52, 1, 1.325971877166861], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-643, -353, 1, -0.15566462305029458], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-34, -52, -1, 1.9330937164763888], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -1, 1, 12.443970407189312], [-58, -6, -1, -0.04590498997201558], [-3, -7, 1, 11.242659596405389], [8, -5, 0, 1.5062791719753927], [-3, -1, 1, 18.16240335581892], [-1, 3, -1, 17.05400009674494], [2, 7, 0, -0.12026464355831305], [-51, 91, -1, -0.038924656977319186], [317, 673, 1, -0.08448902500965064]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 322, "state": [[8, -5, 0, 4.324474873056523], [-61, -6, 1, 2.3079797202588463], [-1, 8, -1, 11.902229157542354], [-622, 347, 1, 0.2733678156338544], [92, 5, -1, 0.10944335117919463], [3, -4, 1, 16.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-288, -643, -1, 0.31219979234483836], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [349, 624, 1, 0.2597699028325531], [-295, 620, -1, -0.4324493466828409], [22, 53, 1, 1.3321720981912333], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-645, -354, 1, -0.1556832015515077], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-35, -50, -1, 1.9381312401962942], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 1, 1, 12.53416816355278], [-59, -8, -1, -0.050948558545239095], [-1, -8, 1, 11.287308413529685], [8, -5, 0, 1.5062791719753927], [-2, -3, 1, 18.267611643738636], [1, 4, -1, 17.14419785310841], [2, 7, 0, -0.12026464355831305], [-49, 90, -1, -0.03697421691857997], [318, 675, 1, -0.08450020723849722]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 323, "state": [[8, -5, 0, 4.324474873056523], [-59, -7, 1, 2.311170259793364], [1, 9, -1, 11.939632513361277], [-624, 348, 1, 0.2733903338419847], [91, 3, -1, 0.11283960853127752], [4, -6, 1, 16.752652336816322], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-289, -645, -1, 0.31222120617572036], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [350, 626, 1, 0.2597928709738922], [-296, 622, -1, -0.4324594419304017], [20, 54, 1, 1.338338554220108], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-647, -355, 1, -0.15570166755217033], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-36, -48, -1, 1.9433475664387534], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [5, 3, 1, 12.581189033175411], [-60, -10, -1, -0.055783270789390924], [1, -9, 1, 11.324711769348607], [8, -5, 0, 1.5062791719753927], [0, -4, 1, 18.361195164644137], [3, 5, -1, 17.19121872273104], [2, 7, 0, -0.12026464355831305], [-50, 88, -1, -0.03985925567485309], [319, 677, 1, -0.08451132266437157]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 324, "state": [[8, -5, 0, 4.324474873056523], [-57, -8, 1, 2.314567904081819], [0, 7, -1, 11.922020869622639], [-626, 349, 1, 0.2734127116839986], [89, 2, -1, 0.11450866149021055], [3, -4, 1, 16.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-290, -647, -1, 0.3122424850604769], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [351, 628, 1, 0.2598156964930191], [-297, 624, -1, -0.4324694718612614], [18, 55, 1, 1.344453211391668], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-649, -356, 1, -0.15572002207056163], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-38, -47, -1, 1.9491420391940726], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 2, 1, 12.588762119269596], [-62, -9, -1, -0.052441925711205324], [2, -7, 1, 11.35139289200142], [8, -5, 0, 1.5062791719753927], [1, -6, 1, 18.387479392999765], [2, 3, -1, 17.198791808825224], [2, 7, 0, -0.12026464355831305], [-48, 87, -1, -0.03786517517736923], [320, 679, 1, -0.084522371884008]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 325, "state": [[8, -5, 0, 4.324474873056523], [-55, -9, 1, 2.318190075840153], [2, 6, -1, 11.973229060797422], [-628, 350, 1, 0.27343495046738936], [90, 0, -1, 0.11808457521666899], [2, -6, 1, 16.710277007085605], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-291, -649, -1, 0.3122636302699571], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [352, 630, 1, 0.259838380713325], [-298, 626, -1, -0.4324794371071999], [16, 56, 1, 1.3504989456888306], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-651, -357, 1, -0.15573826611271457], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-39, -45, -1, 1.9545822485892566], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 4, 1, 12.67138678953888], [-63, -7, -1, -0.0471106861724028], [4, -6, 1, 11.400683646515468], [8, -5, 0, 1.5062791719753927], [2, -4, 1, 18.434986973469353], [3, 1, -1, 17.30400009674494], [2, 7, 0, -0.12026464355831305], [-47, 89, -1, -0.034952673594658125], [321, 681, 1, -0.08453335548705573]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 326, "state": [[8, -5, 0, 4.324474873056523], [-53, -10, 1, 2.322055641952946], [4, 7, -1, 12.004645539891923], [-630, 351, 1, 0.27345705148347255], [88, 1, -1, 0.11627607416047597], [4, -7, 1, 16.741693486180104], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-292, -651, -1, 0.31228464305911197], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [353, 632, 1, 0.25986092494189006], [-299, 628, -1, -0.43248933829187647], [14, 57, 1, 1.3564598082024513], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-653, -358, 1, -0.15575640067259944], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-41, -44, -1, 1.9603162814770867], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 3, 1, 12.745178598364097], [-65, -6, -1, -0.044148753426407956], [6, -7, 1, 11.41988149962387], [8, -5, 0, 1.5062791719753927], [4, -3, 1, 18.50877878229457], [4, -1, -1, 17.39419785310841], [2, 7, 0, -0.12026464355831305], [-45, 88, -1, -0.03285675600364133], [322, 683, 1, -0.08454427405618392]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 327, "state": [[8, -5, 0, 4.324474873056523], [-51, -11, 1, 2.3261849358656814], [6, 6, -1, 12.047020869622639], [-632, 352, 1, 0.273479016007635], [87, -1, -1, 0.11991386182101234], [2, -6, 1, 16.710277007085605], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-293, -653, -1, 0.31230552466724176], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [354, 634, 1, 0.25988333046973366], [-300, 630, -1, -0.4324991760309597], [12, 58, 1, 1.3623212421485074], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-655, -359, 1, -0.15577442673230402], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-42, -42, -1, 1.9659311840891867], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 4, 1, 12.818970407189314], [-67, -7, -1, -0.046067062159467265], [8, -6, 1, 11.454683743260402], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 18.559986973469353], [3, -3, -1, 17.480208287919723], [2, 7, 0, -0.12026464355831305], [-47, 87, -1, -0.036455901064028205], [323, 685, 1, -0.0845551281671846]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 328, "state": [[8, -5, 0, 4.324474873056523], [-49, -12, 1, 2.3305997328190253], [7, 4, -1, 12.089396199353354], [-634, 353, 1, 0.27350084529957996], [88, -3, -1, 0.12350821146500124], [3, -4, 1, 16.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-294, -655, -1, 0.3123262763182395], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [355, 636, 1, 0.2599055985720603], [-301, 632, -1, -0.43250895093225505], [10, 59, 1, 1.3680702459700083], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-657, -360, 1, -0.15579234526221053], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-43, -40, -1, 1.971681269236523], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 12.901595077458598], [-69, -6, -1, -0.04330387778962614], [9, -4, 1, 11.49053765623614], [8, -5, 0, 1.5062791719753927], [4, 1, 1, 18.650184729832823], [5, -4, -1, 17.462596644181083], [2, 7, 0, -0.12026464355831305], [-49, 86, -1, -0.04004989835838897], [324, 687, 1, -0.08456591838907379]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 329, "state": [[8, -5, 0, 4.324474873056523], [-47, -13, 1, 2.3353231567874992], [8, 2, -1, 12.133031304433953], [-636, 354, 1, 0.2735225406035669], [89, -5, -1, 0.12701647519374734], [2, -6, 1, 16.710277007085605], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-295, -657, -1, 0.3123468992208291], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [356, 638, 1, 0.2599277305085007], [-302, 634, -1, -0.4325186635958301], [8, 60, 1, 1.373695480500862], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-659, -361, 1, -0.15581015722116928], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-45, -39, -1, 1.977280119589117], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 12.995178598364097], [-70, -8, -1, -0.047609602855033586], [10, -2, 1, 11.525683646515468], [8, -5, 0, 1.5062791719753927], [3, 3, 1, 18.736195164644137], [3, -3, -1, 17.480208287919723], [2, 7, 0, -0.12026464355831305], [-50, 88, -1, -0.03985925567485309], [325, 689, 1, -0.08457664528419076]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 330, "state": [[8, -5, 0, 4.324474873056523], [-45, -14, 1, 2.340379491874651], [9, 0, -1, 12.172020869622637], [-638, 355, 1, 0.2735441031486474], [88, -7, -1, 0.13071802635312846], [3, -4, 1, 16.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-296, -659, -1, 0.31236739456879975], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [357, 640, 1, 0.2599497275233487], [-303, 636, -1, -0.4325283146141369], [6, 61, 1, 1.3791873215521526], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-661, -362, 1, -0.15582786355666953], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-46, -37, -1, 1.98312178398708], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 13.088762119269596], [-69, -6, -1, -0.04330387778962614], [11, 0, 1, 11.557100125609969], [8, -5, 0, 1.5062791719753927], [1, 4, 1, 18.82220559945545], [4, -1, -1, 17.39419785310841], [2, 7, 0, -0.12026464355831305], [-48, 89, -1, -0.03634448148010582], [326, 691, 1, -0.08458730940829595]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 331, "state": [[8, -5, 0, 4.324474873056523], [-43, -15, 1, 2.345793864107553], [7, -1, -1, 12.19460448727307], [-640, 356, 1, 0.2735655341488968], [90, -8, -1, 0.13219459705004277], [4, -6, 1, 16.752652336816322], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-297, -661, -1, 0.3123877635412357], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [358, 642, 1, 0.2599715908457939], [-304, 638, -1, -0.4325379045721327], [4, 62, 1, 1.384537862117918], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-663, -363, 1, -0.15584546520500722], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-48, -36, -1, 1.98851480173962], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 13.193970407189314], [-71, -5, -1, -0.04068866372955625], [12, 2, 1, 11.583384353965595], [8, -5, 0, 1.5062791719753927], [-1, 3, 1, 18.91240335581892], [3, -3, -1, 17.480208287919723], [2, 7, 0, -0.12026464355831305], [-49, 91, -1, -0.036237880730412717], [327, 693, 1, -0.08459791131066656]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 332, "state": [[8, -5, 0, 4.324474873056523], [-41, -16, 1, 2.351591752718109], [6, -3, -1, 12.245812678447853], [-642, 357, 1, 0.27358683480364127], [91, -10, -1, 0.1355042347986166], [3, -4, 1, 16.761485198260388], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-298, -663, -1, 0.31240800730274193], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [359, 644, 1, 0.25999332169014994], [-305, 640, -1, -0.43254743404739826], [2, 63, 1, 1.389740870512361], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-665, -364, 1, -0.15586296309144954], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-49, -34, -1, 1.9943869825515717], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -5, 1, 13.245178598364097], [-69, -6, -1, -0.04330387778962614], [10, 3, 1, 11.60348691514884], [8, -5, 0, 1.5062791719753927], [-3, 2, 1, 19.017611643738636], [4, -5, -1, 17.497819931658363], [2, 7, 0, -0.12026464355831305], [-50, 89, -1, -0.03908905774277501], [328, 695, 1, -0.08460845153419094]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 333, "state": [[8, -5, 0, 4.324474873056523], [-39, -17, 1, 2.3577982843776457], [7, -5, -1, 12.27073664126701], [-644, 358, 1, 0.2736080062976811], [89, -9, -1, 0.1341243693907336], [4, -6, 1, 16.752652336816322], [4, -8, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-299, -665, -1, 0.31242812700366546], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [360, 646, 1, 0.26001492125607856], [-306, 642, -1, -0.43255690361025323], [0, 64, 1, 1.3947917120802829], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-667, -365, 1, -0.1558803581303969], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-51, -33, -1, 1.9995277315253313], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 13.193970407189314], [-71, -7, -1, -0.045139827871639907], [8, 4, 1, 11.630891934435185], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 19.111195164644137], [3, -7, -1, 17.540767758715145], [2, 7, 0, -0.12026464355831305], [-52, 88, -1, -0.04256696713730897], [329, 697, 1, -0.08461893061546129]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 334, "state": [[8, -5, 0, 4.324474873056523], [-37, -18, 1, 2.3644372616470264], [5, -6, -1, 12.31144983881079], [-646, 359, 1, 0.2736290498015097], [90, -7, -1, 0.13043842202247588], [3, -4, 1, 16.761485198260388], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-300, -667, -1, 0.3124481237803127], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [361, 648, 1, 0.26003639072881], [-307, 644, -1, -0.43256631382387034], [-2, 65, 1, 1.399687242701562], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-669, -366, 1, -0.15589765122554194], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-52, -31, -1, 2.005371611933251], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -4, 1, 13.14276221601453], [-69, -8, -1, -0.0478697659957496], [6, 5, 1, 11.667671156421816], [8, -5, 0, 1.5062791719753927], [-5, -2, 1, 19.17175463543956], [1, -6, -1, 17.578924059564095], [2, 7, 0, -0.12026464355831305], [-51, 86, -1, -0.04281613318515873], [330, 699, 1, -0.08462934908486443]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 335, "state": [[8, -5, 0, 4.324474873056523], [-35, -19, 1, 2.371529881448063], [3, -7, -1, 12.357580340418059], [-648, 360, 1, 0.27364996647152884], [89, -9, -1, 0.1341243693907336], [4, -2, 1, 16.835277007085605], [5, -7, -1, 0.20838435396558083], [2, 1, 0, 0.09173296543276846], [-301, -669, -1, 0.31246799875516323], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [362, 650, 1, 0.26005773127935927], [-308, 646, -1, -0.4325756652443868], [-3, 63, 1, 1.402364798174467], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-671, -367, 1, -0.15591484327002555], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-54, -30, -1, 2.010223950480639], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 13.193970407189314], [-68, -6, -1, -0.04350585095923891], [4, 6, 1, 11.71351660470447], [8, -5, 0, 1.5062791719753927], [-3, -3, 1, 19.236195164644137], [0, -4, -1, 17.605208287919723], [2, 7, 0, -0.12026464355831305], [-52, 88, -1, -0.04256696713730897], [331, 701, 1, -0.08463970746667143]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 336, "state": [[8, -5, 0, 4.324474873056523], [-33, -20, 1, 2.3790931151872337], [1, -8, -1, 12.402229157542354], [-650, 361, 1, 0.2736707574502599], [88, -7, -1, 0.13071802635312843], [3, 0, 1, 16.90906881591082], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-302, -671, -1, 0.312487753037079], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [363, 652, 1, 0.26007894406473814], [-309, 648, -1, -0.4325849584210136], [-4, 61, 1, 1.4052131817206328], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-673, -368, 1, -0.1559319351465906], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-56, -29, -1, 2.0148820097243765], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -4, 1, 13.284168163552781], [-67, -8, -1, -0.048413070710468076], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, -4, 1, 19.32220559945545], [-2, -3, -1, 17.698791808825224], [2, 7, 0, -0.12026464355831305], [-54, 89, -1, -0.044421696417830996], [332, 703, 1, -0.08465000627912538]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 337, "state": [[8, -5, 0, 4.324474873056523], [-31, -21, 1, 2.387137754578886], [-1, -9, -1, 12.439632513361277], [-652, 362, 1, 0.2736914238665516], [86, -6, -1, 0.12917044493452945], [4, 2, 1, 16.982860624736038], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-303, -673, -1, 0.31250738772151015], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [364, 654, 1, 0.260100030228164], [-310, 650, -1, -0.4325941938961435], [-5, 59, 1, 1.4082472686777292], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-675, -369, 1, -0.15594892772773258], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-57, -27, -1, 2.0205251398060016], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -3, 1, 13.370178598364097], [-66, -10, -1, -0.05343139850088671], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, -3, 1, 19.41240335581892], [-3, -1, -1, 17.80400009674494], [2, 7, 0, -0.12026464355831305], [-52, 88, -1, -0.04256696713730897], [333, 705, 1, -0.08466024603452775]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 338, "state": [[8, -5, 0, 4.324474873056523], [-29, -22, 1, 2.395666180989697], [-2, -7, -1, 12.46631363601409], [-654, 363, 1, 0.2737119668357832], [85, -4, -1, 0.125568698244047], [2, 3, 1, 17.06548529500532], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-304, -675, -1, 0.3125269038906974], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [365, 656, 1, 0.26012099089926466], [-311, 652, -1, -0.43260337220545597], [-6, 57, 1, 1.4114833952955455], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-677, -370, 1, -0.1559658218758478], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-58, -25, -1, 2.026159771903756], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -1, 1, 13.456189033175413], [-68, -9, -1, -0.050441945599067776], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -4, 1, 19.463611546993704], [-4, 1, -1, 17.89419785310841], [2, 7, 0, -0.12026464355831305], [-50, 87, -1, -0.0406428006593507], [334, 707, 1, -0.08467042723932343]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 339, "state": [[8, -5, 0, 4.324474873056523], [-27, -23, 1, 2.404669992897658], [-4, -6, -1, 12.515604390528138], [-656, 364, 1, 0.27373238746006545], [83, -3, -1, 0.12383466036400534], [0, 4, 1, 17.15906881591082], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-305, -677, -1, 0.31254630261387], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [366, 658, 1, 0.26014182719427936], [-312, 654, -1, -0.4326124938780212], [-7, 55, 1, 1.4149394748934088], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-679, -371, 1, -0.15598261844337916], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-59, -23, -1, 2.031771867286315], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [5, 1, 1, 13.526595077458598], [-67, -11, -1, -0.05539790848414753], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, -6, 1, 19.454778685549638], [-3, 3, -1, 17.980208287919723], [2, 7, 0, -0.12026464355831305], [-48, 86, -1, -0.0386458185458889], [335, 709, 1, -0.08468055039418396]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 340, "state": [[8, -5, 0, 4.324474873056523], [-25, -24, 1, 2.414127720486529], [-6, -5, -1, 12.561449838810791], [-658, 365, 1, 0.2737526868284367], [82, -5, -1, 0.12777714439943672], [-2, 3, 1, 17.252652336816322], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-306, -679, -1, 0.3125655849474408], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [367, 660, 1, 0.2601625402162566], [-313, 656, -1, -0.4326215594364013], [-8, 53, 1, 1.4186351050805994], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-681, -372, 1, -0.15599931827295926], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-60, -21, -1, 2.037347722369218], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 3, 1, 13.597594980713664], [-65, -12, -1, -0.05855434546967842], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [5, -4, 1, 19.503806808382777], [-1, 4, -1, 18.066218722731037], [2, 7, 0, -0.12026464355831305], [-47, 84, -1, -0.03881370344468708], [336, 711, 1, -0.08469061599408977]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 341, "state": [[8, -5, 0, 4.324474873056523], [-23, -25, 1, 2.424002952037352], [-7, -3, -1, 12.60758034041806], [-660, 366, 1, 0.2737728660170559], [83, -3, -1, 0.12383466036400535], [-3, 1, 1, 17.357860624736038], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-307, -681, -1, 0.3125847519351976], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [368, 662, 1, 0.26018313105524826], [-314, 658, -1, -0.43263056939675015], [-9, 51, 1, 1.4225916559731755], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-683, -373, 1, -0.15601592219755075], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-62, -20, -1, 2.0412681379896274], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 4, 1, 13.67138678953888], [-66, -14, -1, -0.06276607700099573], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 19.486195164644137], [1, 3, -1, 18.156416479094506], [2, 7, 0, -0.12026464355831305], [-46, 82, -1, -0.03898956518868462], [337, 713, 1, -0.08470062452841058]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 342, "state": [[8, -5, 0, 4.324474873056523], [-21, -26, 1, 2.434243264195182], [-8, -1, -1, 12.652229157542356], [-662, 367, 1, 0.27379292608939293], [81, -2, -1, 0.12201352858167495], [-4, -1, 1, 17.448058381099507], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-308, -683, -1, 0.3126038046084911], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [369, 664, 1, 0.26020360078850024], [-315, 660, -1, -0.4326395242689115], [-10, 49, 1, 1.4268323250070738], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-685, -374, 1, -0.15603243104058512], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-63, -18, -1, 2.0466384176977344], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 3, 1, 13.745178598364097], [-65, -12, -1, -0.05855434546967842], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, -1, 1, 19.57220559945545], [3, 4, -1, 18.20762467026929], [2, 7, 0, -0.12026464355831305], [-47, 84, -1, -0.03881370344468708], [338, 715, 1, -0.08471057648098478]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 343, "state": [[8, -5, 0, 4.324474873056523], [-19, -27, 1, 2.4447803490170616], [-9, 1, -1, 12.689632513361278], [-664, 368, 1, 0.27381286809641425], [79, -1, -1, 0.12009908715850022], [-3, -3, 1, 17.53406881591082], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-309, -685, -1, 0.31262274398641937], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [370, 666, 1, 0.26022395048063995], [-316, 662, -1, -0.432648424556515], [-11, 47, 1, 1.4313821382561909], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-687, -375, 1, -0.15604884561609816], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-64, -16, -1, 2.051941618900502], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 4, 1, 13.818970407189314], [-67, -13, -1, -0.06000084801757955], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, 1, 1, 19.66240335581892], [4, 2, -1, 18.281416479094506], [2, 7, 0, -0.12026464355831305], [-48, 86, -1, -0.0386458185458889], [339, 717, 1, -0.08472047233019743]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 344, "state": [[8, -5, 0, 4.324474873056523], [-17, -28, 1, 2.4555316305796677], [-7, 2, -1, 12.716313636014092], [-666, 369, 1, 0.2738326930767666], [81, 0, -1, 0.11808457521666896], [-1, -4, 1, 17.620079250722135], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-310, -687, -1, 0.3126415710760094], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [371, 668, 1, 0.2602441811838603], [-317, 664, -1, -0.4326572707570705], [-12, 45, 1, 1.4362678709084427], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-689, -376, 1, -0.15606516672886356], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-65, -14, -1, 2.0571674571524583], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 13.901595077458598], [-66, -15, -1, -0.06506644817067184], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, 3, 1, 19.713611546993704], [3, 0, -1, 18.355208287919723], [2, 7, 0, -0.12026464355831305], [-50, 87, -1, -0.0406428006593507], [340, 719, 1, -0.08473031254905664]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 345, "state": [[8, -5, 0, 4.324474873056523], [-15, -29, 1, 2.4664034525638554], [-6, 4, -1, 12.76560439052814], [-668, 370, 1, 0.27385240205695655], [83, 1, -1, 0.11616713855593262], [1, -3, 1, 17.710277007085605], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-311, -689, -1, 0.31266028687239483], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [372, 670, 1, 0.26026429393810074], [-318, 666, -1, -0.4326660633620608], [-13, 43, 1, 1.4415178506637296], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-691, -377, 1, -0.15608139517452443], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-66, -12, -1, 2.0623066105648364], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 13.995178598364097], [-67, -17, -1, -0.06904704372754496], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [2, 4, 1, 19.78740335581892], [4, 2, -1, 18.281416479094506], [2, 7, 0, -0.12026464355831305], [-52, 88, -1, -0.04256696713730897], [341, 721, 1, -0.08474009760526911]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 346, "state": [[8, -5, 0, 4.324474873056523], [-13, -30, 1, 2.4772956274842013], [-5, 6, -1, 12.811449838810793], [-670, 371, 1, 0.27387199605152707], [84, -1, -1, 0.11997918741992632], [3, -4, 1, 17.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-312, -691, -1, 0.3126788923589914], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [373, 672, 1, 0.260284289771225], [-319, 668, -1, -0.43267480285703264], [-15, 42, 1, 1.4493856677970975], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-693, -378, 1, -0.15609753173972232], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-67, -10, -1, 2.067350784421118], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 14.088762119269596], [-66, -15, -1, -0.06506644817067184], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, 3, 1, 19.861195164644137], [3, 0, -1, 18.355208287919723], [2, 7, 0, -0.12026464355831305], [-50, 87, -1, -0.0406428006593507], [342, 723, 1, -0.08474982796131408]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 347, "state": [[8, -5, 0, 4.324474873056523], [-11, -31, 1, 2.4881068437914706], [-3, 7, -1, 12.857580340418062], [-672, 372, 1, 0.27389147606323194], [85, -3, -1, 0.123699477828769], [4, -6, 1, 17.752652336816322], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-313, -693, -1, 0.31269738850766843], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [374, 674, 1, 0.26030416969919545], [-320, 670, -1, -0.4326834897216859], [-17, 43, 1, 1.4547120098337678], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-695, -379, 1, -0.15611357720222385], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-68, -8, -1, 2.0722927485120843], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 14.193970407189314], [-65, -17, -1, -0.07021223997754313], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-2, 4, 1, 19.934986973469353], [4, 2, -1, 18.281416479094506], [2, 7, 0, -0.12026464355831305], [-52, 86, -1, -0.04417829390357386], [343, 725, 1, -0.08475950407451609]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 348, "state": [[8, -5, 0, 4.324474873056523], [-9, -32, 1, 2.498740224650117], [-1, 8, -1, 12.902229157542358], [-674, 373, 1, 0.2739108430832055], [87, -2, -1, 0.12174266523276135], [3, -4, 1, 17.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-314, -695, -1, 0.31271577627891795], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [375, 676, 1, 0.26032393472624527], [-321, 672, -1, -0.4326921244299615], [-19, 42, 1, 1.4624058507933175], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-697, -380, 1, -0.15612953233104576], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-69, -6, -1, 2.077126348733325], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -4, 1, 14.284168163552781], [-67, -16, -1, -0.06680745596343544], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 2, 1, 20.017611643738636], [3, 0, -1, 18.355208287919723], [2, 7, 0, -0.12026464355831305], [-54, 85, -1, -0.04770121192420746], [344, 727, 1, -0.0847691263971167]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 349, "state": [[8, -5, 0, 4.324474873056523], [-7, -33, 1, 2.5091082951634847], [1, 9, -1, 12.93963251336128], [-676, 374, 1, 0.27393009809113106], [89, -3, -1, 0.12344731810879948], [4, -6, 1, 17.752652336816322], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-315, -697, -1, 0.3127340566220205], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [376, 678, 1, 0.2603435858450466], [-322, 674, -1, -0.4327007074501275], [-21, 43, 1, 1.4670961348344869], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-699, -381, 1, -0.15614539788657741], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-70, -4, -1, 2.0818464954136773], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -3, 1, 14.370178598364097], [-65, -17, -1, -0.07021223997754313], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 20.111195164644137], [4, 2, -1, 18.281416479094506], [2, 7, 0, -0.12026464355831305], [-52, 86, -1, -0.04417829390357386], [345, 729, 1, -0.0847786953763449]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 350, "state": [[8, -5, 0, 4.324474873056523], [-5, -34, 1, 2.519136757163959], [0, 7, -1, 12.922020869622642], [-678, 375, 1, 0.27394924205540533], [88, -1, -1, 0.11989307627286197], [3, -4, 1, 17.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-316, -699, -1, 0.312752230475208], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [377, 680, 1, 0.26036312403687667], [-323, 676, -1, -0.4327092392448636], [-23, 42, 1, 1.4745304691452858], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-701, -382, 1, -0.15616117462070153], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-72, -3, -1, 2.084303561782552], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -1, 1, 14.456189033175413], [-67, -16, -1, -0.06680745596343544], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -2, 1, 20.204778685549638], [3, 0, -1, 18.355208287919723], [2, 7, 0, -0.12026464355831305], [-50, 85, -1, -0.042251183934450265], [346, 731, 1, -0.08478821145448628]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 351, "state": [[8, -5, 0, 4.324474873056523], [-3, -35, 1, 2.528766739581306], [2, 6, -1, 12.973229060797426], [-680, 376, 1, 0.2739682759333004], [86, 0, -1, 0.11808457521666896], [4, -6, 1, 17.752652336816322], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-317, -701, -1, 0.3127702987658244], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [378, 682, 1, 0.26038255027178064], [-324, 678, -1, -0.43271772027134453], [-25, 43, 1, 1.4786070454959614], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-703, -383, 1, -0.15617686327691246], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-73, -1, -1, 2.0887511157475434], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 1, 1, 14.54638678953888], [-69, -17, -1, -0.06794541879947424], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, -3, 1, 20.309986973469353], [4, 2, -1, 18.281416479094506], [2, 7, 0, -0.12026464355831305], [-51, 83, -1, -0.045316256739612655], [347, 733, 1, -0.08479767506895111]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 352, "state": [[8, -5, 0, 4.324474873056523], [-1, -36, 1, 2.537955495644065], [4, 7, -1, 13.004645539891927], [-682, 377, 1, 0.2739872006711233], [84, 1, -1, 0.11618996301341158], [3, -4, 1, 17.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-318, -703, -1, 0.3127882624104825], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [379, 684, 1, 0.26040186550873184], [-325, 680, -1, -0.43272615098132144], [-27, 42, 1, 1.4857228961694706], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-705, -384, 1, -0.15619246459043312], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-74, 1, -1, 2.093081795658432], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 3, 1, 14.597594980713664], [-68, -15, -1, -0.06405338137500456], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 20.400184729832823], [3, 0, -1, 18.355208287919723], [2, 7, 0, -0.12026464355831305], [-52, 85, -1, -0.04500473515138181], [348, 735, 1, -0.08480708665234145]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 353, "state": [[8, -5, 0, 4.324474873056523], [1, -37, 1, 2.5466757677834333], [6, 6, -1, 13.047020869622642], [-684, 378, 1, 0.27400601720437195], [82, 2, -1, 0.11420351680751235], [4, -6, 1, 17.752652336816322], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-319, -705, -1, 0.31280612231521926], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [380, 686, 1, 0.2604210706957889], [-326, 682, -1, -0.432734531821202], [-29, 43, 1, 1.489226320825423], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-707, -385, 1, -0.15620797928832958], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-73, 3, -1, 2.097468119828377], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 4, 1, 14.67138678953888], [-69, -13, -1, -0.05913732800181053], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 20.486195164644137], [4, 2, -1, 18.281416479094506], [2, 7, 0, -0.12026464355831305], [-54, 86, -1, -0.046860777048138125], [349, 737, 1, -0.08481644663251695]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 354, "state": [[8, -5, 0, 4.324474873056523], [3, -36, 1, 2.5556076677605115], [7, 4, -1, 13.089396199353358], [-686, 379, 1, 0.2740247264578893], [81, 4, -1, 0.1102314513884432], [3, -4, 1, 17.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-320, -707, -1, 0.31282387937564726], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [381, 688, 1, 0.2604401667702509], [-327, 684, -1, -0.4327428632321294], [-31, 42, 1, 1.495988540191845], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-709, -386, 1, -0.15622340808962365], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-72, 5, -1, 2.101965895035717], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 3, 1, 14.745178598364097], [-70, -15, -1, -0.06309558986990887], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, -1, 1, 20.57220559945545], [3, 0, -1, 18.355208287919723], [2, 7, 0, -0.12026464355831305], [-55, 84, -1, -0.04988925775188722], [350, 739, 1, -0.08482575543265956]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 355, "state": [[8, -5, 0, 4.324474873056523], [5, -35, 1, 2.56495894738115], [8, 2, -1, 13.133031304433956], [-688, 380, 1, 0.2740433293460145], [79, 5, -1, 0.10802489548300968], [4, -6, 1, 17.752652336816322], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-321, -709, -1, 0.31284153447710444], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [382, 690, 1, 0.26045915465880914], [-328, 686, -1, -0.4327511456500597], [-33, 43, 1, 1.4989698853032554], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-711, -387, 1, -0.15623875170540394], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-70, 6, -1, 2.1045397742385976], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 4, 1, 14.818970407189314], [-69, -17, -1, -0.06794541879947424], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, 1, 1, 20.66240335581892], [4, 2, -1, 18.281416479094506], [2, 7, 0, -0.12026464355831305], [-56, 82, -1, -0.05298638470123758], [351, 741, 1, -0.08483501347133751]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 356, "state": [[8, -5, 0, 4.324474873056523], [7, -34, 1, 2.5746909797277735], [9, 0, -1, 13.17202086962264], [-690, 381, 1, 0.2740618267727312], [81, 4, -1, 0.1102314513884432], [3, -4, 1, 17.761485198260388], [6, -3, -1, 0.13089193443517072], [2, 1, 0, 0.09173296543276846], [-322, -711, -1, 0.31285908849480093], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [383, 692, 1, 0.260478035277697], [-329, 688, -1, -0.43275937950583754], [-35, 42, 1, 1.5053627428921306], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-713, -388, 1, -0.1562540108389349], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-69, 8, -1, 2.1093019076511728], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 14.901595077458598], [-70, -19, -1, -0.07168192371765673], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, 3, 1, 20.713611546993704], [3, 0, -1, 18.355208287919723], [2, 7, 0, -0.12026464355831305], [-58, 81, -1, -0.056526153548264776], [352, 743, 1, -0.08484422116256772]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 357, "state": [[8, -5, 0, 4.324474873056523], [9, -33, 1, 2.5847506594614327], [7, -1, -1, 13.194604487273073], [-692, 382, 1, 0.27408021963181417], [80, 2, -1, 0.11410653026065605], [4, -6, 1, 17.752652336816322], [4, -4, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-323, -713, -1, 0.3128765422939632], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [384, 694, 1, 0.26049680953283655], [-330, 690, -1, -0.4327675652252714], [-37, 43, 1, 1.5078773972780077], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-715, -389, 1, -0.15626918618576413], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-68, 10, -1, 2.1141697566559445], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 14.995178598364097], [-69, -21, -1, -0.07651991205639484], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [2, 4, 1, 20.78740335581892], [4, 2, -1, 18.281416479094506], [2, 7, 0, -0.12026464355831305], [-56, 82, -1, -0.05298638470123758], [353, 745, 1, -0.0848533789158777]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 358, "state": [[8, -5, 0, 4.324474873056523], [11, -32, 1, 2.5950709069765128], [6, -3, -1, 13.245812678447857], [-694, 383, 1, 0.2740985088069725], [78, 3, -1, 0.11196624698954172], [3, -4, 1, 17.761485198260388], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-324, -715, -1, 0.31289389672997625], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [385, 696, 1, 0.2605154783199837], [-331, 692, -1, -0.43277570322920617], [-39, 42, 1, 1.5138997776451122], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-717, -390, 1, -0.15628427843382767], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-67, 12, -1, 2.1191374801452993], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 15.088762119269596], [-67, -20, -1, -0.07566781163901991], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, 3, 1, 20.861195164644137], [3, 0, -1, 18.355208287919723], [2, 7, 0, -0.12026464355831305], [-54, 81, -1, -0.05120819117478329], [354, 747, 1, -0.08486248713636615]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 359, "state": [[8, -5, 0, 4.324474873056523], [13, -31, 1, 2.60557248623846], [7, -5, -1, 13.270736641267014], [-696, 384, 1, 0.27411669517199116], [80, 4, -1, 0.11013344958858076], [4, -6, 1, 17.752652336816322], [5, -7, -1, 0.20838435396558083], [2, 1, 0, 0.09173296543276846], [-325, -717, -1, 0.3129111526485227], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [386, 698, 1, 0.2605340425248697], [-332, 694, -1, -0.43278379393359606], [-41, 43, 1, 1.516003024492497], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-719, -391, 1, -0.15629928826355413], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-66, 14, -1, 2.124198218656419], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 15.193970407189314], [-68, -22, -1, -0.07929881955045096], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-2, 4, 1, 20.934986973469353], [5, 1, -1, 18.323791808825224], [2, 7, 0, -0.12026464355831305], [-56, 82, -1, -0.05298638470123758], [355, 749, 1, -0.08487154622476266]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 360, "state": [[8, -5, 0, 4.324474873056523], [15, -30, 1, 2.6161671385559333], [5, -6, -1, 13.311449838810793], [-698, 385, 1, 0.2741347795908693], [78, 3, -1, 0.11196624698954172], [3, -4, 1, 17.761485198260388], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-326, -719, -1, 0.3129283108857202], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [387, 700, 1, 0.26055250302334143], [-333, 696, -1, -0.43279183774957486], [-43, 42, 1, 1.5216640367969065], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-721, -392, 1, -0.15631421634796658], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-64, 15, -1, 2.1275717694008733], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -4, 1, 15.284168163552781], [-69, -24, -1, -0.08277406472768283], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 2, 1, 21.017611643738636], [3, 0, -1, 18.355208287919723], [2, 7, 0, -0.12026464355831305], [-54, 83, -1, -0.04942501713032622], [356, 751, 1, -0.08488055657748635]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 361, "state": [[8, -5, 0, 4.324474873056523], [17, -29, 1, 2.6267617908734064], [3, -7, -1, 13.357580340418062], [-700, 386, 1, 0.2741527629179574], [79, 5, -1, 0.10802489548300968], [4, -6, 1, 17.752652336816322], [5, -7, -1, 0.20838435396558083], [2, 1, 0, 0.09173296543276846], [-327, -721, -1, 0.3129453722682561], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [388, 702, 1, 0.26057086068149843], [-334, 698, -1, -0.4327998350835258], [-44, 40, 1, 1.527364798174467], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-723, -393, 1, -0.15632906335278296], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-62, 16, -1, 2.1311264454782597], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -3, 1, 15.370178598364097], [-71, -23, -1, -0.07935849519185824], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 21.111195164644137], [5, -1, -1, 18.386624767014222], [2, 7, 0, -0.12026464355831305], [-56, 84, -1, -0.05120819117478329], [357, 753, 1, -0.08488951858670389]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 362, "state": [[8, -5, 0, 4.324474873056523], [19, -28, 1, 2.637263370135354], [1, -8, -1, 13.402229157542358], [-702, 387, 1, 0.27417064599809143], [78, 3, -1, 0.11196624698954172], [3, -4, 1, 17.761485198260388], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-328, -723, -1, 0.3129623376135199], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [389, 704, 1, 0.26058911635582827], [-335, 700, -1, -0.43280778633715], [-45, 38, 1, 1.5331827289638735], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-725, -394, 1, -0.15634382993651505], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-61, 18, -1, 2.1365989049827436], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -1, 1, 15.456189033175413], [-73, -24, -1, -0.08005227869222359], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -2, 1, 21.204778685549638], [3, -2, -1, 18.44879180882522], [2, 7, 0, -0.12026464355831305], [-54, 85, -1, -0.047701211924207454], [358, 755, 1, -0.08489843264038617]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 363, "state": [[8, -5, 0, 4.324474873056523], [21, -27, 1, 2.647583617650434], [-1, -9, -1, 13.43963251336128], [-704, 388, 1, 0.2741884296667242], [80, 2, -1, 0.11410653026065605], [4, -2, 1, 17.835277007085605], [5, -7, -1, 0.20838435396558083], [2, 1, 0, 0.09173296543276846], [-329, -725, -1, 0.3129792077297337], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [390, 706, 1, 0.26060727089333935], [-336, 702, -1, -0.43281569190753355], [-46, 36, 1, 1.5391054828252104], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-727, -395, 1, -0.15635851675056553], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-60, 20, -1, 2.142139375263971], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 1, 1, 15.54638678953888], [-71, -23, -1, -0.07935849519185824], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, -3, 1, 21.309986973469353], [5, -1, -1, 18.386624767014222], [2, 7, 0, -0.12026464355831305], [-55, 83, -1, -0.050764863789098065], [359, 757, 1, -0.08490729912236429]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 364, "state": [[8, -5, 0, 4.324474873056523], [23, -26, 1, 2.657643297384093], [-2, -7, -1, 13.466313636014094], [-706, 389, 1, 0.2742061147500562], [79, 0, -1, 0.11808457521666896], [6, -1, 1, 17.882784587555193], [3, -6, -1, 0.23330831678473746], [2, 1, 0, 0.09173296543276846], [-330, -727, -1, 0.3129959834160801], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [391, 708, 1, 0.2606253251316917], [-337, 704, -1, -0.43282355218721363], [-47, 34, 1, 1.5451191086186045], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-729, -396, 1, -0.15637312443932364], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-59, 22, -1, 2.1477354830080557], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 3, 1, 15.651595077458598], [-73, -24, -1, -0.08005227869222359], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 21.400184729832823], [3, -2, -1, 18.44879180882522], [2, 7, 0, -0.12026464355831305], [-56, 85, -1, -0.05034087037047958], [360, 759, 1, -0.08491611841238471]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 365, "state": [[8, -5, 0, 4.324474873056523], [25, -25, 1, 2.667375329730717], [-4, -6, -1, 13.515604390528141], [-708, 390, 1, 0.27422370206516244], [80, 2, -1, 0.11410653026065605], [5, 1, 1, 17.94048529500532], [5, -5, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-331, -729, -1, 0.31301266546282835], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [392, 710, 1, 0.26064327989932534], [-338, 706, -1, -0.43283136756424356], [-48, 32, 1, 1.5512081911747835], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-731, -397, 1, -0.1563876536402593], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-58, 24, -1, 2.153374057414474], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 4, 1, 15.745178598364097], [-71, -25, -1, -0.08338185479087035], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 21.486195164644137], [1, -3, -1, 18.554000096744936], [2, 7, 0, -0.12026464355831305], [-57, 87, -1, -0.0499349787914488], [361, 761, 1, -0.08492489088616331]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 366, "state": [[8, -5, 0, 4.324474873056523], [27, -24, 1, 2.676726609351355], [-6, -5, -1, 13.561449838810795], [-710, 391, 1, 0.27424119242011835], [79, 0, -1, 0.11808457521666896], [4, 3, 1, 18.011485198260388], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-332, -731, -1, 0.31302925465145814], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [393, 712, 1, 0.26066113601558694], [-339, 708, -1, -0.4328391384222567], [-49, 30, 1, 1.5573560472203274], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-733, -398, 1, -0.15640210498401583], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-56, 25, -1, 2.1577571547836647], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 3, 1, 15.838762119269596], [-69, -26, -1, -0.08685179472534851], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [5, -2, 1, 21.550635693848715], [-1, -4, -1, 18.644197853108405], [2, 7, 0, -0.12026464355831305], [-59, 88, -1, -0.05162482619974848], [362, 763, 1, -0.08493361691543877]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 367, "state": [[8, -5, 0, 4.324474873056523], [29, -23, 1, 2.6856585093284333], [-7, -3, -1, 13.607580340418064], [-712, 392, 1, 0.27425858661412345], [81, 1, -1, 0.11611979919293491], [2, 4, 1, 18.085277007085605], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-333, -733, -1, 0.3130457517547814], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [394, 714, 1, 0.26067889429085406], [-340, 710, -1, -0.43284686514052867], [-50, 28, 1, 1.5635449722565413], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-735, -399, 1, -0.1564164790945007], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-55, 27, -1, 2.163561298632468], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 1, 1, 15.943970407189314], [-71, -25, -1, -0.08338185479087035], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, 0, 1, 21.611195164644137], [-3, -3, -1, 18.73020828791972], [2, 7, 0, -0.12026464355831305], [-57, 89, -1, -0.04828441355896641], [363, 765, 1, -0.08494229686802506]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 368, "state": [[8, -5, 0, 4.324474873056523], [31, -22, 1, 2.6941462689333027], [-8, -1, -1, 13.65222915754236], [-714, 393, 1, 0.2742758854376224], [82, 3, -1, 0.11226442920382494], [0, 3, 1, 18.15906881591082], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-334, -735, -1, 0.313062157537062], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [395, 716, 1, 0.2606965555266575], [-341, 712, -1, -0.4328545480940398], [-49, 30, 1, 1.5573560472203274], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-737, -400, 1, -0.15643077658897572], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-53, 28, -1, 2.168285568144155], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-5, 0, 1, 15.995178598364097], [-72, -23, -1, -0.07870957772925567], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [5, 2, 1, 21.67175463543956], [-1, -4, -1, 18.644197853108405], [2, 7, 0, -0.12026464355831305], [-55, 88, -1, -0.04652851251396029], [364, 767, 1, -0.08495093110786318]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 369, "state": [[8, -5, 0, 4.324474873056523], [33, -21, 1, 2.7021775733672486], [-9, 1, -1, 13.689632513361282], [-716, 394, 1, 0.27429308967242494], [84, 2, -1, 0.11429588762888307], [-2, 4, 1, 18.232860624736038], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-335, -737, -1, 0.3130784727541337], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [396, 718, 1, 0.2607141205158015], [-342, 714, -1, -0.4328621876535353], [-48, 32, 1, 1.5512081911747835], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-739, -401, 1, -0.1564449980781446], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-51, 29, -1, 2.1732193750646704], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, -2, 1, 16.068970407189315], [-71, -25, -1, -0.08338185479087035], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, 3, 1, 21.736195164644137], [-3, -3, -1, 18.73020828791972], [2, 7, 0, -0.12026464355831305], [-53, 89, -1, -0.04310810388386224], [365, 769, 1, -0.08495951999507174]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 370, "state": [[8, -5, 0, 4.324474873056523], [35, -20, 1, 2.7097506594614327], [-7, 2, -1, 13.716313636014096], [-718, 395, 1, 0.27431020009182305], [85, 0, -1, 0.11808457521666896], [-3, 2, 1, 18.31548529500532], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-336, -739, -1, 0.313094698153516], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [397, 720, 1, 0.2607315900424824], [-343, 716, -1, -0.4328697841855849], [-47, 34, 1, 1.5451191086186045], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-741, -402, 1, -0.15645914416624043], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-50, 31, -1, 2.1792614974900055], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, -3, 1, 16.151595077458598], [-73, -24, -1, -0.08005227869222359], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, 4, 1, 21.82220559945545], [-4, -1, -1, 18.816218722731033], [2, 7, 0, -0.12026464355831305], [-52, 91, -1, -0.04024934053856788], [366, 771, 1, -0.0849680638859973]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 371, "state": [[8, -5, 0, 4.324474873056523], [37, -19, 1, 2.7168722433821686], [-6, 4, -1, 13.765604390528143], [-720, 396, 1, 0.27432721746070676], [86, -2, -1, 0.1217851859218624], [-4, 0, 1, 18.40906881591082], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-337, -741, -1, 0.31311083447452787], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [398, 722, 1, 0.2607489648824048], [-344, 718, -1, -0.43287733805264156], [-46, 36, 1, 1.5391054828252104], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-743, -403, 1, -0.1564732154511106], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-49, 33, -1, 2.1852619058105107], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -4, 1, 16.2451785983641], [-72, -26, -1, -0.08465241568187819], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, 5, 1, 21.892611643738636], [-3, 1, -1, 18.906416479094503], [2, 7, 0, -0.12026464355831305], [-51, 89, -1, -0.04044178898539137], [367, 773, 1, -0.0849765631332634]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 372, "state": [[8, -5, 0, 4.324474873056523], [39, -18, 1, 2.7235554948172944], [-5, 6, -1, 13.811449838810796], [-722, 397, 1, 0.274344142535678], [84, -1, -1, 0.11997918741992632], [-3, -2, 1, 18.502652336816322], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-338, -743, -1, 0.31312688244840026], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [399, 724, 1, 0.2607662458028962], [-345, 720, -1, -0.43288484961309903], [-45, 38, 1, 1.5331827289638735], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-745, -404, 1, -0.15648721252430128], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-47, 34, -1, 2.190603787550866], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, -5, 1, 16.30573806915952], [-73, -28, -1, -0.08779042531121468], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 4, 1, 21.963611546993704], [-5, 0, -1, 18.85520828791972], [2, 7, 0, -0.12026464355831305], [-52, 87, -1, -0.04336580763355354], [368, 775, 1, -0.08498501808581922]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 373, "state": [[8, -5, 0, 4.324474873056523], [41, -17, 1, 2.729818203056003], [-3, 7, -1, 13.857580340418066], [-724, 398, 1, 0.2743609760651622], [83, 1, -1, 0.11616713855593262], [-1, -3, 1, 18.607860624736038], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-339, -745, -1, 0.31314284279838595], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [400, 726, 1, 0.2607834335630199], [-346, 722, -1, -0.4328923192213487], [-44, 40, 1, 1.527364798174467], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-747, -405, 1, -0.15650113597114002], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-45, 35, -1, 2.196139472008905], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -3, 1, 16.296386789538882], [-75, -29, -1, -0.08822077801336879], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-5, 3, 1, 22.025184729832823], [-3, 1, -1, 18.906416479094503], [2, 7, 0, -0.12026464355831305], [-53, 85, -1, -0.04636009464762672], [369, 777, 1, -0.08499342908898712]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 374, "state": [[8, -5, 0, 4.324474873056523], [43, -16, 1, 2.7356812107479276], [-1, 8, -1, 13.902229157542362], [-726, 399, 1, 0.27437771878951855], [85, 2, -1, 0.11434044388278396], [-2, -5, 1, 18.5985093451154], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-340, -747, -1, 0.3131587162398683], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [401, 728, 1, 0.2608005289136857], [-347, 724, -1, -0.432899747227835], [-43, 42, 1, 1.5216640367969065], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-749, -406, 1, -0.15651498637081712], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-43, 36, -1, 2.2018655817196597], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -2, 1, 16.401595077458598], [-76, -31, -1, -0.09113873381188237], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 2, 1, 22.01761164373864], [-2, 3, -1, 19.01162476701422], [2, 7, 0, -0.12026464355831305], [-55, 84, -1, -0.04988925775188722], [370, 779, 1, -0.08500179648450981]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 375, "state": [[8, -5, 0, 4.324474873056523], [45, -15, 1, 2.741167138555933], [1, 9, -1, 13.939632513361284], [-728, 400, 1, 0.27439437144114853], [87, 1, -1, 0.1162552886123256], [0, -6, 1, 18.65906881591082], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-341, -749, -1, 0.3131745034804677], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [402, 730, 1, 0.26081753259775914], [-348, 726, -1, -0.43290713397911024], [-44, 40, 1, 1.527364798174467], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-751, -407, 1, -0.15652876429646614], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-42, 38, -1, 2.2079800584610996], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 0, 1, 16.4951785983641], [-75, -33, -1, -0.09546986046950517], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 22.11119516464414], [0, 4, -1, 19.10520828791972], [2, 7, 0, -0.12026464355831305], [-56, 86, -1, -0.049487664221399656], [371, 781, 1, -0.08501012061059648]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 376, "state": [[8, -5, 0, 4.324474873056523], [47, -14, 1, 2.7462993892948067], [0, 7, -1, 13.922020869622646], [-730, 401, 1, 0.27441093474460204], [86, 3, -1, 0.11253490894867818], [2, -5, 1, 18.719628286706243], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-342, -751, -1, 0.31319020522014673], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [403, 732, 1, 0.26083444535016875], [-349, 728, -1, -0.43291447981788894], [-43, 42, 1, 1.5216640367969065], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-753, -408, 1, -0.15654247031524254], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-41, 40, -1, 2.2139664080654535], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 2, 1, 16.5887621192696], [-73, -32, -1, -0.09525053822465433], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -2, 1, 22.20477868554964], [2, 3, -1, 19.19879180882522], [2, 7, 0, -0.12026464355831305], [-58, 85, -1, -0.05292408094905048], [372, 783, 1, -0.08501840180196844]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 377, "state": [[8, -5, 0, 4.324474873056523], [49, -13, 1, 2.7511014007087033], [2, 6, -1, 13.97322906079743], [-732, 402, 1, 0.2744274094166826], [84, 2, -1, 0.11429588762888306], [3, -3, 1, 18.78406881591082], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-343, -753, -1, 0.3132058221513134], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [404, 734, 1, 0.2608512678980119], [-350, 730, -1, -0.43292178508310014], [-42, 44, 1, 1.5160911013750895], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-755, -409, 1, -0.15655610498840133], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-39, 41, -1, 2.2199092290452005], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 4, 1, 16.671386789538882], [-75, -31, -1, -0.09187942854471455], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, -3, 1, 22.309986973469357], [3, 1, -1, 19.304000096744936], [2, 7, 0, -0.12026464355831305], [-57, 83, -1, -0.053400269397410674], [373, 785, 1, -0.08502664038990392]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 378, "state": [[8, -5, 0, 4.324474873056523], [51, -12, 1, 2.7555961077440854], [4, 7, -1, 14.00464553989193], [-734, 403, 1, 0.27444379616655046], [83, 4, -1, 0.11042038727605707], [5, -2, 1, 18.8485093451154], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-344, -755, -1, 0.31322135495892245], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [405, 736, 1, 0.26086800096065843], [-351, 732, -1, -0.43292905010994004], [-41, 46, 1, 1.51065492686225], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-757, -410, 1, -0.1565696688713741], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-38, 43, -1, 2.2257431134888845], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 3, 1, 16.7451785983641], [-74, -33, -1, -0.09626095398777135], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, -5, 1, 22.36119516464414], [5, 0, -1, 19.35520828791972], [2, 7, 0, -0.12026464355831305], [-58, 85, -1, -0.05292408094905048], [374, 787, 1, -0.08503483670228215]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 379, "state": [[8, -5, 0, 4.324474873056523], [53, -11, 1, 2.759805574133036], [6, 6, -1, 14.047020869622646], [-736, 404, 1, 0.27446009569582425], [84, 2, -1, 0.11429588762888306], [4, 0, 1, 18.90906881591082], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-345, -757, -1, 0.31323680432057593], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [406, 738, 1, 0.2608846452498535], [-352, 734, -1, -0.4329362752299229], [-40, 48, 1, 1.5053627428921306], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-759, -411, 1, -0.1565831625138436], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-36, 44, -1, 2.2317939428044644], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 4, 1, 16.818970407189315], [-76, -34, -1, -0.09644969382587845], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, -3, 1, 22.412403355818924], [4, -2, -1, 19.429000096744936], [2, 7, 0, -0.12026464355831305], [-56, 84, -1, -0.05120819117478329], [375, 789, 1, -0.08504299106362698]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 380, "state": [[8, -5, 0, 4.324474873056523], [55, -10, 1, 2.7637507562063663], [7, 4, -1, 14.089396199353361], [-738, 405, 1, 0.2744763086986808], [85, 0, -1, 0.11808457521666894], [3, 2, 1, 19.002652336816322], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-346, -759, -1, 0.31325217090662105], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [407, 740, 1, 0.26090120146981793], [-353, 736, -1, -0.43294346077093165], [-39, 50, 1, 1.5002201311778731], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-761, -412, 1, -0.1565965864598186], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-35, 46, -1, 2.237413401030918], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 16.901595077458598], [-75, -32, -1, -0.09368328370674081], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [2, -5, 1, 22.421754635439562], [6, -3, -1, 19.429000096744936], [2, 7, 0, -0.12026464355831305], [-54, 83, -1, -0.04942501713032622], [376, 791, 1, -0.08505110379514957]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 381, "state": [[8, -5, 0, 4.324474873056523], [57, -9, 1, 2.7674513669115597], [8, 2, -1, 14.13303130443396], [-740, 406, 1, 0.2744924358619535], [83, 1, -1, 0.11616713855593261], [1, 3, 1, 19.107860624736038], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-347, -761, -1, 0.31326745538024703], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [408, 742, 1, 0.2609176703173473], [-354, 738, -1, -0.43295060705726746], [-38, 52, 1, 1.4952311160797505], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-763, -413, 1, -0.15660994124770625], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-33, 47, -1, 2.2435040882743316], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 16.9951785983641], [-77, -33, -1, -0.0939395716383425], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 22.48619516464414], [4, -2, -1, 19.429000096744936], [2, 7, 0, -0.12026464355831305], [-52, 84, -1, -0.04584544828265283], [377, 793, 1, -0.0850591752147906]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 382, "state": [[8, -5, 0, 4.324474873056523], [59, -8, 1, 2.7709258136192414], [9, 0, -1, 14.172020869622644], [-742, 407, 1, 0.27450847786522903], [85, 0, -1, 0.11808457521666894], [-1, 4, 1, 19.198058381099507], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-348, -763, -1, 0.31328265839758057], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [409, 744, 1, 0.26093405248190976], [-355, 740, -1, -0.4329577144096984], [-37, 54, 1, 1.4903982800776612], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-765, -414, 1, -0.15662322741038442], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-32, 49, -1, 2.2488561956662547], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 17.0887621192696], [-78, -35, -1, -0.09662856977539055], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, -1, 1, 22.572205599455454], [3, -4, -1, 19.502791905570152], [2, 7, 0, -0.12026464355831305], [-50, 85, -1, -0.04225118393445026], [378, 795, 1, -0.08506720563726183]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 383, "state": [[8, -5, 0, 4.324474873056523], [61, -7, 1, 2.774191188666011], [7, -1, -1, 14.194604487273077], [-744, 408, 1, 0.27452443538094295], [87, 1, -1, 0.1162552886123256], [-3, 3, 1, 19.28406881591082], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-349, -765, -1, 0.31329778060777935], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [410, 746, 1, 0.2609503486457417], [-356, 742, -1, -0.4329647831455075], [-36, 56, 1, 1.4857228961694706], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-767, -415, 1, -0.15663644547527242], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-31, 51, -1, 2.2540060757671876], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 17.193970407189315], [-77, -37, -1, -0.10079124093980191], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, 1, 1, 22.662403355818924], [1, -3, -1, 19.554000096744936], [2, 7, 0, -0.12026464355831305], [-48, 86, -1, -0.038645818545888895], [379, 797, 1, -0.08507519537408677]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 384, "state": [[8, -5, 0, 4.324474873056523], [63, -6, 1, 2.777263296311257], [6, -3, -1, 14.24581267844786], [-746, 409, 1, 0.2745403090744731], [89, 2, -1, 0.11450866149021051], [-4, 1, 1, 19.370079250722135], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-350, -767, -1, 0.31331282265312455], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [411, 748, 1, 0.26096655948394265], [-357, 744, -1, -0.4329718135785399], [-35, 58, 1, 1.4812050699373527], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-769, -416, 1, -0.15664959596440037], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-29, 52, -1, 2.259964317851096], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, -5, 1, 17.184619127568677], [-76, -39, -1, -0.1049573342596862], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [2, 3, 1, 22.76761164373864], [-1, -4, -1, 19.644197853108405], [2, 7, 0, -0.12026464355831305], [-47, 88, -1, -0.035697641993733605], [380, 799, 1, -0.08508314473364129]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 385, "state": [[8, -5, 0, 4.324474873056523], [65, -5, 1, 2.780156703744618], [7, -5, -1, 14.270736641267018], [-748, 410, 1, 0.274556099604232], [87, 1, -1, 0.1162552886123256], [-3, -1, 1, 19.460277007085605], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-351, -769, -1, 0.3133277851691112], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [412, 750, 1, 0.260982685664568], [-358, 746, -1, -0.4329788060192495], [-36, 56, 1, 1.4857228961694706], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-771, -417, 1, -0.15666267939447825], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-27, 53, -1, 2.265942744105614], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -4, 1, 17.2451785983641], [-75, -41, -1, -0.10912114551787956], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, 4, 1, 22.86119516464414], [-3, -5, -1, 19.691218722731037], [2, 7, 0, -0.12026464355831305], [-49, 89, -1, -0.03772328373523694], [381, 801, 1, -0.0850910540211929]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 386, "state": [[8, -5, 0, 4.324474873056523], [67, -4, 1, 2.782884806975796], [5, -6, -1, 14.311449838810796], [-750, 411, 1, 0.2745718076217581], [88, 3, -1, 0.1126609389683367], [-5, -2, 1, 19.469628286706243], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-352, -771, -1, 0.31334266878453787], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [413, 752, 1, 0.26099872784872086], [-359, 748, -1, -0.4329857607747441], [-37, 54, 1, 1.4903982800776612], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-773, -418, 1, -0.15667569627696318], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-26, 55, -1, 2.2706495767963553], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, -5, 1, 17.30573806915952], [-74, -43, -1, -0.11327698920622833], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-2, 3, 1, 22.95477868554964], [-5, -4, -1, 19.74781993165836], [2, 7, 0, -0.12026464355831305], [-51, 90, -1, -0.039676843212500874], [382, 803, 1, -0.08509892353894014]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 387, "state": [[8, -5, 0, 4.324474873056523], [69, -3, 1, 2.7854599049473854], [3, -7, -1, 14.357580340418066], [-752, 412, 1, 0.2745874337718044], [89, 5, -1, 0.10915267523959059], [-4, -4, 1, 19.53406881591082], [5, -5, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-353, -773, -1, 0.3133574741215946], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [414, 754, 1, 0.26101468669064193], [-360, 750, -1, -0.432992678148831], [-38, 52, 1, 1.4952311160797505], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-775, -419, 1, -0.15668864711812613], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-24, 56, -1, 2.2764906548846096], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -3, 1, 17.296386789538882], [-72, -44, -1, -0.11680339136387118], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 1, 1, 23.059986973469357], [-4, -2, -1, 19.781416479094503], [2, 7, 0, -0.12026464355831305], [-50, 88, -1, -0.039859255674853086], [383, 805, 1, -0.08510675358605074]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 388, "state": [[8, -5, 0, 4.324474873056523], [71, -2, 1, 2.78789327713938], [1, -8, -1, 14.402229157542362], [-754, 413, 1, 0.27460297869242745], [87, 4, -1, 0.11077225613615094], [-2, -5, 1, 19.5985093451154], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-354, -775, -1, 0.31337220179594927], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [415, 756, 1, 0.2610305628377985], [-361, 752, -1, -0.43299955844206084], [-39, 50, 1, 1.5002201311778731], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-777, -420, 1, -0.15670153241911744], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-22, 57, -1, 2.2823066324643833], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -2, 1, 17.401595077458598], [-71, -46, -1, -0.12099540505308501], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, -1, 1, 23.150184729832826], [-3, 0, -1, 19.85520828791972], [2, 7, 0, -0.12026464355831305], [-49, 90, -1, -0.036974216918579966], [384, 807, 1, -0.0851145444586998]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 389, "state": [[8, -5, 0, 4.324474873056523], [73, -1, 1, 2.7901952613890724], [-1, -9, -1, 14.439632513361284], [-756, 414, 1, 0.2746184430150733], [88, 6, -1, 0.10724987037671925], [0, -4, 1, 19.65906881591082], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-355, -777, -1, 0.3133868524168329], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [416, 758, 1, 0.2610463569309717], [-362, 754, -1, -0.4330064019517712], [-40, 48, 1, 1.5053627428921306], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-779, -421, 1, -0.15671435267603126], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-21, 59, -1, 2.2865081788362667], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 0, 1, 17.4951785983641], [-70, -44, -1, -0.11881097338177067], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-5, -3, 1, 23.197205599455458], [-4, 2, -1, 19.929000096744936], [2, 7, 0, -0.12026464355831305], [-47, 91, -1, -0.03350135908440129], [385, 809, 1, -0.08512229645010697]], "moves": [{"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 390, "state": [[8, -5, 0, 4.324474873056523], [75, 0, 1, 2.7923753297307163], [-2, -7, -1, 14.466313636014098], [-758, 415, 1, 0.2746338273646634], [87, 8, -1, 0.1034906786853849], [2, -5, 1, 19.719628286706243], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-356, -779, -1, 0.31340142658712355], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [417, 760, 1, 0.26106206960434264], [-363, 756, -1, -0.43301320897212936], [-41, 46, 1, 1.51065492686225], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-781, -422, 1, -0.15672710837996942], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-19, 60, -1, 2.2921221319271807], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 2, 1, 17.5887621192696], [-69, -46, -1, -0.1230825633392636], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -4, 1, 23.258778782294577], [-2, 3, -1, 20.01162476701422], [2, 7, 0, -0.12026464355831305], [-49, 92, -1, -0.03551398409688105], [386, 811, 1, -0.08513000985057309]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 391, "state": [[8, -5, 0, 4.324474873056523], [73, 1, 1, 2.7945553980723603], [-4, -6, -1, 14.515604390528145], [-760, 416, 1, 0.27464913235967797], [85, 7, -1, 0.10500720787119054], [3, -3, 1, 19.78406881591082], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-357, -781, -1, 0.3134159249034288], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [418, 762, 1, 0.2610777014855771], [-364, 758, -1, -0.4330199797941746], [-42, 44, 1, 1.5160911013750895], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-783, -423, 1, -0.15673980001710364], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-17, 61, -1, 2.2976741185424925], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 4, 1, 17.671386789538882], [-71, -47, -1, -0.12256414516269257], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, -3, 1, 23.30998697346936], [0, 4, -1, 20.10520828791972], [2, 7, 0, -0.12026464355831305], [-51, 93, -1, -0.0374574349684174], [387, 813, 1, -0.08513768494751678]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 392, "state": [[8, -5, 0, 4.324474873056523], [71, 2, 1, 2.796857382322053], [-6, -5, -1, 14.561449838810798], [-762, 417, 1, 0.2746643586122393], [84, 5, -1, 0.10862223145279472], [4, -1, 1, 19.870079250722135], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-358, -783, -1, 0.3134303479561671], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [419, 764, 1, 0.2610932531959088], [-365, 760, -1, -0.4330267147058595], [-43, 42, 1, 1.5216640367969065], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-785, -424, 1, -0.15675242806873765], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-16, 63, -1, 2.301347759928622], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 3, 1, 17.7451785983641], [-69, -48, -1, -0.12623373453642198], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, -5, 1, 23.361195164644144], [2, 3, -1, 20.19879180882522], [2, 7, 0, -0.12026464355831305], [-52, 91, -1, -0.04024934053856788], [388, 815, 1, -0.0851453220255097]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 393, "state": [[8, -5, 0, 4.324474873056523], [69, 3, 1, 2.7992907545140473], [-7, -3, -1, 14.607580340418068], [-764, 418, 1, 0.274679506728193], [83, 3, -1, 0.11233449006933255], [5, 1, 1, 19.94048529500532], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-359, -785, -1, 0.31344469632964783], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [420, 766, 1, 0.26110872535022184], [-366, 762, -1, -0.4330334139920909], [-44, 40, 1, 1.527364798174467], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-787, -425, 1, -0.15676499301136756], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-14, 64, -1, 2.306655941649393], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 4, 1, 17.818970407189315], [-68, -50, -1, -0.13040689230076485], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, -3, 1, 23.412403355818928], [4, 2, -1, 20.281416479094503], [2, 7, 0, -0.12026464355831305], [-53, 93, -1, -0.040064920061326156], [389, 817, 1, -0.08515292136631197]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 394, "state": [[8, -5, 0, 4.324474873056523], [67, 4, 1, 2.8018658524856366], [-8, -1, -1, 14.652229157542363], [-766, 419, 1, 0.2746945773071884], [85, 2, -1, 0.11434044388278394], [4, 3, 1, 20.011485198260388], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-360, -787, -1, 0.3134589706021499], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [421, 768, 1, 0.26112411855713125], [-367, 764, -1, -0.43304007793476973], [-45, 38, 1, 1.5331827289638735], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-789, -426, 1, -0.15677749531674204], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-13, 66, -1, 2.3099787122604676], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 17.901595077458598], [-70, -51, -1, -0.1297101856458992], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -2, 1, 23.517611643738643], [5, 0, -1, 20.35520828791972], [2, 7, 0, -0.12026464355831305], [-54, 95, -1, -0.03988803595357954], [390, 819, 1, -0.08516048324890674]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 395, "state": [[8, -5, 0, 4.324474873056523], [65, 5, 1, 2.8045939557168147], [-9, 1, -1, 14.689632513361286], [-768, 420, 1, 0.2747095709427569], [87, 3, -1, 0.11259864740866345], [2, 4, 1, 20.085277007085605], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-361, -789, -1, 0.31347317134599945], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [422, 770, 1, 0.261139433419063], [-368, 766, -1, -0.43304670681283103], [-46, 36, 1, 1.5391054828252104], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-791, -427, 1, -0.15678993545192096], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-12, 68, -1, 2.313131240196295], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 17.9951785983641], [-71, -49, -1, -0.1256411040574597], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, 0, 1, 23.611195164644144], [4, -2, -1, 20.429000096744936], [2, 7, 0, -0.12026464355831305], [-56, 96, -1, -0.04167032905686522], [391, 821, 1, -0.0851680079495343]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 396, "state": [[8, -5, 0, 4.324474873056523], [63, 6, 1, 2.8074873631501758], [-7, 2, -1, 14.7163136360141], [-770, 421, 1, 0.2747244882223907], [88, 5, -1, 0.10905139299343594], [0, 3, 1, 20.15906881591082], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-362, -791, -1, 0.3134872991276463], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [423, 772, 1, 0.261154670532332], [-369, 768, -1, -0.4330533009022825], [-47, 34, 1, 1.5451191086186045], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-793, -428, 1, -0.15680231387933385], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-11, 70, -1, 2.3161239893658014], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 18.0887621192696], [-70, -47, -1, -0.12360609744795763], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [5, 2, 1, 23.671754635439566], [3, -4, -1, 20.502791905570152], [2, 7, 0, -0.12026464355831305], [-58, 95, -1, -0.04486123600796457], [392, 823, 1, -0.08517549574172567]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 397, "state": [[8, -5, 0, 4.324474873056523], [61, 7, 1, 2.810559470795422], [-6, 4, -1, 14.765604390528146], [-772, 422, 1, 0.2747393297276185], [90, 6, -1, 0.10748992289919573], [-2, 4, 1, 20.232860624736038], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-363, -793, -1, 0.31350135450773886], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [424, 774, 1, 0.2611698304872197], [-370, 770, -1, -0.4330598604762429], [-48, 32, 1, 1.5512081911747835], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-795, -429, 1, -0.15681463105683682], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-9, 71, -1, 2.320863640494617], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 18.193970407189315], [-71, -45, -1, -0.1194063703913336], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, 3, 1, 23.736195164644144], [1, -3, -1, 20.554000096744936], [2, 7, 0, -0.12026464355831305], [-60, 96, -1, -0.04652851251396029], [393, 825, 1, -0.0851829468963358]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 398, "state": [[8, -5, 0, 4.324474873056523], [59, 8, 1, 2.8138248458421913], [-5, 6, -1, 14.8114498388108], [-774, 423, 1, 0.27475409603408146], [92, 5, -1, 0.10944335117919457], [-3, 2, 1, 20.31548529500532], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-364, -795, -1, 0.3135153380411985], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [425, 776, 1, 0.2611849138680501], [-371, 772, -1, -0.4330663858049798], [-49, 30, 1, 1.5573560472203274], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-797, -430, 1, -0.15682688743776912], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-7, 72, -1, 2.325506264552974], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, -5, 1, 18.184619127568677], [-73, -44, -1, -0.11582970808676214], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, 4, 1, 23.822205599455458], [-1, -4, -1, 20.644197853108405], [2, 7, 0, -0.12026464355831305], [-61, 94, -1, -0.04923855233999354], [394, 827, 1, -0.08519036168157623]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 399, "state": [[8, -5, 0, 4.324474873056523], [57, 9, 1, 2.817299292549873], [-3, 7, -1, 14.85758034041807], [-776, 424, 1, 0.2747687877116075], [93, 7, -1, 0.10612771699303565], [-4, 0, 1, 20.40906881591082], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-365, -797, -1, 0.3135292502772923], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [426, 778, 1, 0.26119992125326463], [-372, 774, -1, -0.43307287715594656], [-50, 28, 1, 1.5635449722565413], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-799, -431, 1, -0.15683908347100844], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-5, 73, -1, 2.330047159466778], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -4, 1, 18.2451785983641], [-75, -43, -1, -0.11235205536286072], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, 5, 1, 23.892611643738643], [-3, -5, -1, 20.691218722731037], [2, 7, 0, -0.12026464355831305], [-60, 92, -1, -0.04960062015920622], [395, 829, 1, -0.08519774036304707]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 400, "state": [[8, -5, 0, 4.324474873056523], [55, 10, 1, 2.8209999032550663], [-1, 8, -1, 14.902229157542365], [-778, 425, 1, 0.2747834053242842], [95, 8, -1, 0.10471360051192857], [-3, -2, 1, 20.502652336816322], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-366, -799, -1, 0.3135430917597049], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [427, 780, 1, 0.2612148532154959], [-373, 776, -1, -0.43307933479381905], [-51, 26, 1, 1.5697565305582313], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-801, -432, 1, -0.15685121960102605], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-4, 75, -1, 2.3324509548814305], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, -5, 1, 18.30573806915952], [-77, -44, -1, -0.11212371270304818], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-2, 3, 1, 23.95477868554964], [-4, -3, -1, 20.752791905570156], [2, 7, 0, -0.12026464355831305], [-61, 94, -1, -0.04923855233999354], [396, 831, 1, -0.08520508320376893]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 401, "state": [[8, -5, 0, 4.324474873056523], [53, 11, 1, 2.824945085328397], [1, 9, -1, 14.939632513361287], [-780, 426, 1, 0.27479794943053093], [97, 9, -1, 0.10335977933743092], [-1, -3, 1, 20.607860624736038], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-367, -801, -1, 0.3135568630266091], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [428, 782, 1, 0.2612297103216406], [-374, 778, -1, -0.4330857589805313], [-52, 24, 1, 1.5759718771668607], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-803, -433, 1, -0.1568632962679403], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-2, 76, -1, 2.3367438625370345], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -3, 1, 18.296386789538882], [-79, -45, -1, -0.11190658467528214], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 1, 1, 24.059986973469357], [-3, -1, -1, 20.80400009674494], [2, 7, 0, -0.12026464355831305], [-62, 92, -1, -0.052003959258886324], [397, 833, 1, -0.08521239046421408]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 402, "state": [[8, -5, 0, 4.324474873056523], [51, 12, 1, 2.8291545517173473], [0, 7, -1, 14.92202086962265], [-782, 427, 1, 0.27481242058316996], [95, 10, -1, 0.10139289200140637], [-2, -5, 1, 20.5985093451154], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-368, -803, -1, 0.31357056461073574], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [429, 784, 1, 0.26124449313293086], [-375, 780, -1, -0.43309214997531126], [-53, 22, 1, 1.582172098191233], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-805, -434, 1, -0.15687531390756998], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [-1, 78, -1, 2.338890847882924], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -2, 1, 18.401595077458598], [-77, -46, -1, -0.11520516606125591], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, -1, 1, 24.150184729832826], [-4, 1, -1, 20.89419785310841], [2, 7, 0, -0.12026464355831305], [-61, 94, -1, -0.04923855233999354], [398, 835, 1, -0.08521966240233717]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 403, "state": [[8, -5, 0, 4.324474873056523], [49, 13, 1, 2.8336492587527293], [2, 6, -1, 14.973229060797433], [-784, 428, 1, 0.27482681932949626], [96, 8, -1, 0.104852237186874], [0, -6, 1, 20.65906881591082], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-369, -805, -1, 0.31358419703944207], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [430, 786, 1, 0.26125920220500487], [-376, 782, -1, -0.43309850803471556], [-54, 20, 1, 1.5883385542201078], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-807, -435, 1, -0.1568872729514868], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [1, 79, -1, 2.3429456960310184], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 0, 1, 18.4951785983641], [-79, -45, -1, -0.11190658467528214], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-5, -3, 1, 24.197205599455458], [-3, 3, -1, 20.980208287919723], [2, 7, 0, -0.12026464355831305], [-59, 95, -1, -0.04607594043590948], [399, 837, 1, -0.08522689927360556]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 404, "state": [[8, -5, 0, 4.324474873056523], [47, 14, 1, 2.838451270166626], [4, 7, -1, 15.004645539891934], [-786, 429, 1, 0.2748411462113466], [94, 7, -1, 0.10625444709952908], [2, -5, 1, 20.719628286706243], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-370, -807, -1, 0.31359776083477936], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [431, 788, 1, 0.2612738380879766], [-377, 784, -1, -0.43310483341266354], [-55, 18, 1, 1.5944532113916678], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-809, -436, 1, -0.15689917382706656], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [2, 77, -1, 2.345064149447042], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 2, 1, 18.5887621192696], [-78, -43, -1, -0.10968559651574922], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -4, 1, 24.258778782294577], [-1, 4, -1, 21.066218722731037], [2, 7, 0, -0.12026464355831305], [-58, 93, -1, -0.04637459095354266], [400, 839, 1, -0.0852341013310294]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 405, "state": [[8, -5, 0, 4.324474873056523], [45, 15, 1, 2.8435835209055], [6, 6, -1, 15.04702086962265], [-788, 430, 1, 0.27485540176516715], [96, 8, -1, 0.104852237186874], [3, -3, 1, 20.78406881591082], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-371, -809, -1, 0.31361125651355953], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [432, 790, 1, 0.26128840132650394], [-378, 786, -1, -0.4331111263604714], [-56, 16, 1, 1.6004989456888303], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-811, -437, 1, -0.1569110169575405], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [4, 76, -1, 2.3493000382674745], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 4, 1, 18.671386789538882], [-79, -41, -1, -0.10568999027175746], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, -3, 1, 24.30998697346936], [1, 5, -1, 21.136624767014222], [2, 7, 0, -0.12026464355831305], [-56, 94, -1, -0.04313618839796852], [401, 841, 1, -0.08524126882519094]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 406, "state": [[8, -5, 0, 4.324474873056523], [43, 16, 1, 2.849069448713505], [7, 4, -1, 15.089396199353365], [-790, 431, 1, 0.27486958652208027], [98, 7, -1, 0.10673563971673873], [4, -1, 1, 20.870079250722135], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-372, -811, -1, 0.31362468458742054], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [433, 792, 1, 0.26130289245985633], [-379, 788, -1, -0.4331173871268853], [-57, 14, 1, 1.606459808202451], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-813, -438, 1, -0.15692280276204512], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [5, 74, -1, 2.3516685762276643], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 5, 1, 18.7451785983641], [-78, -43, -1, -0.10968559651574922], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, -5, 1, 24.361195164644144], [2, 3, -1, 21.19879180882522], [2, 7, 0, -0.12026464355831305], [-55, 92, -1, -0.04338045738895147], [402, 843, 1, -0.08524840200427355]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 407, "state": [[8, -5, 0, 4.324474873056523], [41, 17, 1, 2.8549324564054297], [8, 2, -1, 15.133031304433963], [-792, 432, 1, 0.2748837010079507], [99, 9, -1, 0.1036556060285167], [5, 1, 1, 20.94048529500532], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-373, -813, -1, 0.31363804556289115], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [434, 794, 1, 0.261317312021981], [-380, 790, -1, -0.43312361595811444], [-58, 12, 1, 1.6123212421485071], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-815, -439, 1, -0.15693453165567148], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [6, 72, -1, 2.354163522118982], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 4, 1, 18.818970407189315], [-77, -45, -1, -0.11367315554623111], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, -3, 1, 24.412403355818928], [4, 2, -1, 21.281416479094503], [2, 7, 0, -0.12026464355831305], [-54, 94, -1, -0.0406135388573101], [403, 845, 1, -0.08525550111409053]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 408, "state": [[8, -5, 0, 4.324474873056523], [39, 18, 1, 2.8611951646441383], [9, 0, -1, 15.172020869622648], [-794, 433, 1, 0.27489774574345005], [98, 11, -1, 0.10029470653226855], [4, 3, 1, 21.011485198260388], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-374, -815, -1, 0.3136513399414543], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [435, 796, 1, 0.26133166054156876], [-381, 792, -1, -0.4331298130978625], [-59, 10, 1, 1.618070245970008], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-817, -440, 1, -0.15694620404951423], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [8, 71, -1, 2.3587888167248257], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 18.901595077458598], [-75, -44, -1, -0.11393995275089218], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -2, 1, 24.517611643738643], [5, 0, -1, 21.35520828791972], [2, 7, 0, -0.12026464355831305], [-53, 92, -1, -0.04080712427038161], [404, 847, 1, -0.0852625663981131]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 409, "state": [[8, -5, 0, 4.324474873056523], [37, 19, 1, 2.867878416079264], [7, -1, -1, 15.19460448727308], [-796, 434, 1, 0.274911721244121], [100, 12, -1, 0.0990768712926941], [2, 4, 1, 21.085277007085605], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-375, -817, -1, 0.31366456821960986], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [436, 798, 1, 0.2613459385421182], [-382, 794, -1, -0.4331359787873606], [-60, 8, 1, 1.6236954805008619], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-819, -441, 1, -0.15695782035071917], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [9, 69, -1, 2.361573984009111], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 18.9951785983641], [-76, -42, -1, -0.10985022530946865], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, 0, 1, 24.611195164644144], [4, -2, -1, 21.429000096744936], [2, 7, 0, -0.12026464355831305], [-52, 90, -1, -0.04100902423486471], [405, 849, 1, -0.08526959809749844]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 410, "state": [[8, -5, 0, 4.324474873056523], [35, 20, 1, 2.875], [6, -3, -1, 15.245812678447864], [-798, 435, 1, 0.2749256280204402], [98, 11, -1, 0.10029470653226855], [0, 3, 1, 21.15906881591082], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-376, -819, -1, 0.3136777308889364], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [437, 800, 1, 0.26136014654199935], [-383, 796, -1, -0.4331421132653974], [-61, 6, 1, 1.6291873215521524], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-821, -442, 1, -0.15696938096253088], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [11, 68, -1, 2.3664557287485173], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 19.0887621192696], [-78, -43, -1, -0.1096855965157492], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [5, 2, 1, 24.671754635439566], [3, -4, -1, 21.502791905570152], [2, 7, 0, -0.12026464355831305], [-50, 91, -1, -0.037587498908211794], [406, 851, 1, -0.08527659645111704]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 411, "state": [[8, -5, 0, 4.324474873056523], [33, 21, 1, 2.882573086094184], [7, -5, -1, 15.270736641267021], [-800, 436, 1, 0.27493946657788015], [96, 12, -1, 0.09829286313638617], [-2, 4, 1, 21.232860624736038], [3, -5, -1, 0.22108969079863877], [2, 1, 0, 0.09173296543276846], [-377, -821, -1, 0.313690828436152], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [438, 802, 1, 0.26137428505451643], [-384, 798, -1, -0.4331482167683508], [-62, 4, 1, 1.6345378621179179], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-823, -443, 1, -0.1569808862843391], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [12, 66, -1, 2.3695557576135373], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 19.193970407189315], [-79, -45, -1, -0.11190658467528213], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, 3, 1, 24.736195164644144], [1, -3, -1, 21.554000096744936], [2, 7, 0, -0.12026464355831305], [-48, 92, -1, -0.034160257982388934], [407, 853, 1, -0.08528356169557966]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 412, "state": [[8, -5, 0, 4.324474873056523], [31, 22, 1, 2.89060439052813], [5, -6, -1, 15.3114498388108], [-802, 437, 1, 0.27495323741697064], [98, 11, -1, 0.10029470653226855], [-3, 2, 1, 21.31548529500532], [4, -3, -1, 0.15951650795952083], [2, 1, 0, 0.09173296543276846], [-378, -823, -1, 0.3137038613431738], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [439, 804, 1, 0.2613883545879694], [-385, 800, -1, -0.433154289530218], [-63, 2, 1, 1.6397408705123608], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-825, -444, 1, -0.1569923367117247], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [13, 64, -1, 2.372825604519043], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, -5, 1, 19.184619127568677], [-77, -46, -1, -0.1152051660612559], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, 4, 1, 24.822205599455458], [-1, -4, -1, 21.644197853108405], [2, 7, 0, -0.12026464355831305], [-50, 93, -1, -0.03613579290407265], [408, 855, 1, -0.085290494065264]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 413, "state": [[8, -5, 0, 4.324474873056523], [29, 23, 1, 2.8990921501329994], [3, -7, -1, 15.35758034041807], [-804, 438, 1, 0.27496694103335867], [97, 9, -1, 0.10335977933743092], [-4, 0, 1, 21.40906881591082], [5, -5, -1, 0.1821001256099541], [2, 1, 0, 0.09173296543276846], [-379, -825, -1, 0.3137168300871777], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [440, 806, 1, 0.2614023556457147], [-386, 802, -1, -0.4331603317826452], [-64, 0, 1, 1.6447917120802826], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-827, -445, 1, -0.15700373263650513], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [15, 63, -1, 2.378132566738496], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -4, 1, 19.2451785983641], [-79, -47, -1, -0.11491561827319864], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, 5, 1, 24.892611643738643], [-3, -5, -1, 21.691218722731037], [2, 7, 0, -0.12026464355831305], [-51, 95, -1, -0.036037937439754954], [409, 857, 1, -0.08529739379234116]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 414, "state": [[8, -5, 0, 4.324474873056523], [27, 24, 1, 2.9080240501100776], [1, -8, -1, 15.402229157542365], [-806, 439, 1, 0.27498057791786806], [96, 11, -1, 0.09992725952556597], [-3, -2, 1, 21.502652336816322], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-380, -827, -1, 0.31372973514065594], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [441, 808, 1, 0.26141628872622535], [-387, 804, -1, -0.43316634375495716], [-65, -2, 1, 1.6496872427015616], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-829, -446, 1, -0.15701507444677876], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [16, 61, -1, 2.3817570709767204], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, -3, 1, 19.3387621192696], [-80, -45, -1, -0.11104835783040662], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-2, 3, 1, 24.95477868554964], [-4, -3, -1, 21.752791905570156], [2, 7, 0, -0.12026464355831305], [-53, 96, -1, -0.037908995369844475], [410, 859, 1, -0.08530426110680131]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 415, "state": [[8, -5, 0, 4.324474873056523], [25, 25, 1, 2.917375329730716], [-1, -9, -1, 15.439632513361287], [-808, 440, 1, 0.2749941485565579], [97, 9, -1, 0.10335977933743092], [-1, -3, 1, 21.607860624736038], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-381, -829, -1, 0.3137425769714745], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [442, 810, 1, 0.26143015432315], [-388, 806, -1, -0.4331723256741866], [-63, -3, 1, 1.6523647981744665], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-831, -447, 1, -0.1570263625269691], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [17, 59, -1, 2.3855800012134827], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -1, 1, 19.443970407189315], [-78, -46, -1, -0.1143037810446923], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 1, 1, 25.059986973469357], [-3, -1, -1, 21.80400009674494], [2, 7, 0, -0.12026464355831305], [-52, 94, -1, -0.03804410140113618], [411, 861, 1, -0.0853110962364793]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 416, "state": [[8, -5, 0, 4.324474873056523], [23, 26, 1, 2.9271073620773396], [-2, -7, -1, 15.466313636014101], [-810, 441, 1, 0.2750076534307802], [98, 7, -1, 0.10673563971673873], [1, -4, 1, 21.698058381099507], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-382, -831, -1, 0.31375535604292987], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [443, 812, 1, 0.261443952925371], [-389, 808, -1, -0.433178277765102], [-61, -4, 1, 1.6552131817206324], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-833, -448, 1, -0.15703759725786823], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [18, 57, -1, 2.3896133184606394], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 1, 1, 19.534168163552785], [-76, -45, -1, -0.11458237155826613], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, -1, 1, 25.150184729832826], [-4, 1, -1, 21.89419785310841], [2, 7, 0, -0.12026464355831305], [-53, 92, -1, -0.04080712427038161], [412, 863, 1, -0.08531789940708]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 417, "state": [[8, -5, 0, 4.324474873056523], [21, 27, 1, 2.9371670418109987], [-4, -6, -1, 15.515604390528148], [-812, 442, 1, 0.2750210930172366], [96, 8, -1, 0.104852237186874], [3, -3, 1, 21.78406881591082], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-383, -833, -1, 0.3137680728138041], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [444, 814, 1, 0.26145768501706185], [-390, 810, -1, -0.43318420025023646], [-59, -5, 1, 1.6582472686777288], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-835, -449, 1, -0.15704877901667938], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [19, 55, -1, 2.393869252172877], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 3, 1, 19.6201785983641], [-75, -43, -1, -0.1123520553628607], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -3, 1, 25.23619516464414], [-3, 3, -1, 21.980208287919723], [2, 7, 0, -0.12026464355831305], [-51, 91, -1, -0.038924656977319186], [413, 865, 1, -0.08532467084220288]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 418, "state": [[8, -5, 0, 4.324474873056523], [19, 28, 1, 2.947487289326079], [-6, -5, -1, 15.561449838810802], [-814, 443, 1, 0.27503446778803453], [94, 9, -1, 0.10289264474413579], [4, -1, 1, 21.870079250722135], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-384, -835, -1, 0.3137807277384204], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [445, 816, 1, 0.26147135107774366], [-391, 812, -1, -0.4331900933499151], [-57, -6, 1, 1.661483395295545], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-837, -450, 1, -0.1570599081770593], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [20, 53, -1, 2.3983601417582814], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, 4, 1, 19.706189033175413], [-74, -45, -1, -0.11645494103262796], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, -4, 1, 25.322205599455454], [-1, 4, -1, 22.066218722731037], [2, 7, 0, -0.12026464355831305], [-50, 89, -1, -0.03908905774277501], [414, 867, 1, -0.08533141076336673]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 419, "state": [[8, -5, 0, 4.324474873056523], [17, 29, 1, 2.9579888685880262], [-7, -3, -1, 15.607580340418071], [-816, 444, 1, 0.27504777821074233], [92, 10, -1, 0.10085277548974718], [3, 1, 1, 21.960277007085605], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-385, -837, -1, 0.31379332126669657], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [446, 818, 1, 0.26148495158234103], [-392, 814, -1, -0.43319595728228216], [-55, -7, 1, 1.6649394748934083], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-839, -451, 1, -0.15707098510915954], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [21, 51, -1, 2.403098225900186], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, 3, 1, 19.796386789538882], [-73, -47, -1, -0.12054036833449819], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, -6, 1, 25.36119516464414], [1, 3, -1, 22.156416479094506], [2, 7, 0, -0.12026464355831305], [-51, 91, -1, -0.038924656977319186], [415, 869, 1, -0.08533811939003363]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 420, "state": [[8, -5, 0, 4.324474873056523], [15, 30, 1, 2.9685835209054994], [-8, -1, -1, 15.652229157542367], [-818, 445, 1, 0.2750610247484436], [91, 12, -1, 0.09721750826374465], [2, 3, 1, 22.06548529500532], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-386, -839, -1, 0.3138058538441983], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [447, 820, 1, 0.2614984870012368], [-393, 816, -1, -0.4332017922633285], [-53, -8, 1, 1.668635105080599], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-841, -452, 1, -0.15708201017966775], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [23, 50, -1, 2.4095490458329962], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 19.901595077458598], [-72, -45, -1, -0.11840288467844058], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 25.400184729832826], [3, 2, -1, 22.261624767014222], [2, 7, 0, -0.12026464355831305], [-53, 92, -1, -0.04080712427038161], [416, 871, 1, -0.08534479693963291]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 421, "state": [[8, -5, 0, 4.324474873056523], [13, 31, 1, 2.9791781732229725], [-9, 1, -1, 15.689632513361289], [-820, 446, 1, 0.27507420785979086], [93, 13, -1, 0.09598033847523244], [0, 4, 1, 22.15906881591082], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-387, -841, -1, 0.313818325912192], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [448, 822, 1, 0.2615119578003262], [-394, 818, -1, -0.4332075985069176], [-51, -9, 1, 1.672591655973175], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-843, -453, 1, -0.1570929837518479], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [25, 49, -1, 2.416016907033195], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 19.9951785983641], [-71, -47, -1, -0.12256414516269257], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 25.48619516464414], [4, 0, -1, 22.355208287919723], [2, 7, 0, -0.12026464355831305], [-51, 93, -1, -0.03745743496841741], [417, 873, 1, -0.08535144362758441]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 422, "state": [[8, -5, 0, 4.324474873056523], [11, 32, 1, 2.98967975248492], [-7, 2, -1, 15.716313636014103], [-822, 447, 1, 0.27508732799905855], [94, 11, -1, 0.09954438341912013], [-2, 3, 1, 22.252652336816322], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-388, -843, -1, 0.31383073790769617], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [449, 824, 1, 0.2615253644410704], [-395, 820, -1, -0.4332133762248119], [-49, -10, 1, 1.6768323250070734], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-845, -454, 1, -0.15710390618558034], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [27, 48, -1, 2.4224804994858293], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 20.0887621192696], [-70, -45, -1, -0.12043022652295199], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, -1, 1, 25.572205599455454], [3, -2, -1, 22.448791808825224], [2, 7, 0, -0.12026464355831305], [-52, 95, -1, -0.03733273798968241], [418, 875, 1, -0.08535805966732196]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 423, "state": [[8, -5, 0, 4.324474873056523], [9, 33, 1, 3.0], [-6, 4, -1, 15.76560439052815], [-824, 448, 1, 0.2751003856161948], [96, 12, -1, 0.09829286313638616], [-3, 1, 1, 22.357860624736038], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-389, -845, -1, 0.3138430902635325], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [450, 826, 1, 0.26153870738054885], [-396, 822, -1, -0.43321912562669845], [-47, -11, 1, 1.6813821382561904], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-847, -455, 1, -0.15711477783740072], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [29, 47, -1, 2.4289185972506013], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 20.193970407189315], [-72, -46, -1, -0.11998253447424344], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, 1, 1, 25.662403355818924], [2, -4, -1, 22.531416479094506], [2, 7, 0, -0.12026464355831305], [-51, 97, -1, -0.03466408833868781], [419, 877, 1, -0.08536464527031593]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 424, "state": [[8, -5, 0, 4.324474873056523], [7, 34, 1, 3.010059679733659], [-5, 6, -1, 15.811449838810804], [-826, 449, 1, 0.27511338115687306], [95, 10, -1, 0.10139289200140636], [-4, -1, 1, 22.448058381099507], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-390, -847, -1, 0.3138553834083761], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [451, 828, 1, 0.2615519870715114], [-397, 824, -1, -0.4332248469202143], [-45, -12, 1, 1.6862678709084422], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-849, -456, 1, -0.15712559906053922], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [31, 46, -1, 2.4353104730787893], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -4, 1, 20.284168163552785], [-70, -45, -1, -0.12043022652295199], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [2, 3, 1, 25.76761164373864], [0, -3, -1, 22.605208287919723], [2, 7, 0, -0.12026464355831305], [-53, 98, -1, -0.0365281325844805], [420, 879, 1, -0.08537120064609581]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 425, "state": [[8, -5, 0, 4.324474873056523], [5, 35, 1, 3.019791712080283], [-3, 7, -1, 15.857580340418073], [-828, 450, 1, 0.2751263150625427], [93, 9, -1, 0.10273029701762401], [-3, -3, 1, 22.53406881591082], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-391, -849, -1, 0.31386761776680505], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [452, 830, 1, 0.26156520396242916], [-398, 826, -1, -0.43323054031097147], [-43, -13, 1, 1.6915178506637292], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-851, -457, 1, -0.15713637020495835], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [32, 44, -1, 2.4410072212700302], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -3, 1, 20.3701785983641], [-69, -47, -1, -0.12466877270902686], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, 4, 1, 25.86119516464414], [-2, -4, -1, 22.67900009674494], [2, 7, 0, -0.12026464355831305], [-55, 99, -1, -0.03833190387783152], [421, 881, 1, -0.0853777260022726]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 426, "state": [[8, -5, 0, 4.324474873056523], [3, 36, 1, 3.029142991700921], [-1, 8, -1, 15.902229157542369], [-830, 451, 1, 0.2751391877704788], [91, 8, -1, 0.10412881060961464], [-1, -4, 1, 22.620079250722135], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-392, -851, -1, 0.31387979375934916], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [453, 832, 1, 0.26157835849754524], [-399, 828, -1, -0.4332362060025818], [-42, -15, 1, 1.699385667797097], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-853, -458, 1, -0.1571470916173909], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [34, 43, -1, 2.447412684392239], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -1, 1, 20.456189033175413], [-67, -48, -1, -0.1284392919872413], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-2, 3, 1, 25.95477868554964], [-3, -2, -1, 22.761624767014222], [2, 7, 0, -0.12026464355831305], [-54, 101, -1, -0.035767287947231254], [422, 883, 1, -0.08538422154456043]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 427, "state": [[8, -5, 0, 4.324474873056523], [1, 37, 1, 3.0380748916779994], [1, 9, -1, 15.93963251336129], [-832, 452, 1, 0.27515199971383136], [92, 10, -1, 0.10085277548974718], [0, -6, 1, 22.65906881591082], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-393, -853, -1, 0.31389191180253817], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [454, 834, 1, 0.26159145111692406], [-400, 830, -1, -0.4332418441966807], [-43, -17, 1, 1.7047120098337674], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-855, -459, 1, -0.15715776364137693], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [35, 41, -1, 2.4533923272614055], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 1, 1, 20.546386789538882], [-69, -49, -1, -0.12777757632348966], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 1, 1, 26.059986973469357], [-4, 0, -1, 22.855208287919723], [2, 7, 0, -0.12026464355831305], [-53, 99, -1, -0.03585391297573843], [423, 885, 1, -0.08539068747679848]], "moves": [{"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 428, "state": [[8, -5, 0, 4.324474873056523], [-1, 38, 1, 3.0465626512828687], [0, 7, -1, 15.922020869622653], [-834, 453, 1, 0.275164751321674], [90, 9, -1, 0.10222181650139216], [1, -4, 1, 22.698058381099507], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-394, -855, -1, 0.31390397230894906], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [455, 836, 1, 0.2616044822565007], [-401, 832, -1, -0.4332474550929517], [-42, -19, 1, 1.712405850793317], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-857, -460, 1, -0.1571683866173005], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [36, 39, -1, 2.4595683784151907], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 3, 1, 20.651595077458598], [-70, -51, -1, -0.12971018564589923], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, -1, 1, 26.150184729832826], [-3, 2, -1, 22.948791808825224], [2, 7, 0, -0.12026464355831305], [-54, 101, -1, -0.035767287947231254], [424, 887, 1, -0.08539712400097205]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 429, "state": [[8, -5, 0, 4.324474873056523], [-3, 37, 1, 3.055251617027668], [2, 6, -1, 15.973229060797436], [-836, 454, 1, 0.2751774430190514], [88, 8, -1, 0.1036556060285167], [3, -3, 1, 22.78406881591082], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-395, -857, -1, 0.31391597568725293], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [456, 838, 1, 0.2616174523481288], [-402, 834, -1, -0.43325303888914957], [-43, -21, 1, 1.7170961348344864], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-859, -461, 1, -0.15717896088242597], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [38, 38, -1, 2.4659311840891864], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 4, 1, 20.7451785983641], [-71, -53, -1, -0.1315561591563231], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -3, 1, 26.23619516464414], [-1, 3, -1, 23.05400009674494], [2, 7, 0, -0.12026464355831305], [-53, 99, -1, -0.03585391297573843], [425, 889, 1, -0.08540353131723365]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 430, "state": [[8, -5, 0, 4.324474873056523], [-5, 36, 1, 3.0643396705722674], [4, 7, -1, 16.004645539891936], [-838, 455, 1, 0.275190075227027], [86, 9, -1, 0.10148923275422277], [4, -1, 1, 22.870079250722135], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-396, -859, -1, 0.31392792234226113], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [457, 840, 1, 0.2616303618196286], [-403, 836, -1, -0.4332585957811236], [-42, -23, 1, 1.7245304691452854], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-861, -462, 1, -0.15718948677093328], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [40, 37, -1, 2.4721288913337176], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 3, 1, 20.8387621192696], [-73, -54, -1, -0.13086375544412449], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, -4, 1, 26.322205599455454], [-3, 2, -1, 22.948791808825224], [2, 7, 0, -0.12026464355831305], [-54, 101, -1, -0.035767287947231254], [426, 891, 1, -0.08540990962392388]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 431, "state": [[8, -5, 0, 4.324474873056523], [-7, 35, 1, 3.0737918088252165], [6, 6, -1, 16.047020869622653], [-840, 456, 1, 0.2752026483627289], [85, 7, -1, 0.10500720787119054], [3, 1, 1, 22.960277007085605], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-397, -861, -1, 0.31393981267497034], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [458, 842, 1, 0.2616432110948338], [-404, 838, -1, -0.4332641259628406], [-43, -25, 1, 1.728607045495961], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-863, -463, 1, -0.15719996461395344], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [42, 36, -1, 2.4781498100752852], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 1, 1, 20.943970407189315], [-71, -53, -1, -0.1315561591563231], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, -6, 1, 26.36119516464414], [-1, 3, -1, 23.05400009674494], [2, 7, 0, -0.12026464355831305], [-56, 102, -1, -0.03753480732162784], [427, 893, 1, -0.0854162591175916]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 432, "state": [[8, -5, 0, 4.324474873056523], [-9, 34, 1, 3.0835599963150373], [7, 4, -1, 16.08939619935337], [-842, 457, 1, 0.2752151628393963], [83, 8, -1, 0.1027915811667291], [2, 3, 1, 23.06548529500532], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-398, -863, -1, 0.31395164708260803], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [459, 844, 1, 0.2616560005936376], [-405, 840, -1, -0.43326962962640747], [-42, -27, 1, 1.7357228961694702], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-865, -464, 1, -0.15721039473960313], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [43, 34, -1, 2.484449683786135], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, -1, 1, 21.034168163552785], [-69, -54, -1, -0.13518527168883665], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 26.400184729832826], [1, 4, -1, 23.14419785310841], [2, 7, 0, -0.12026464355831305], [-54, 101, -1, -0.035767287947231254], [428, 895, 1, -0.08542257999301439]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 433, "state": [[8, -5, 0, 4.324474873056523], [-11, 33, 1, 3.0935835209054994], [8, 2, -1, 16.13303130443397], [-844, 458, 1, 0.2752276190664242], [85, 9, -1, 0.10129543032155476], [0, 4, 1, 23.15906881591082], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-399, -865, -1, 0.313963425958676], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [460, 846, 1, 0.26166873073203867], [-406, 842, -1, -0.4332751069620935], [-43, -29, 1, 1.7392263208254226], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-867, -465, 1, -0.15722077747301882], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [45, 33, -1, 2.490226079262951], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -3, 1, 21.1201785983641], [-68, -52, -1, -0.1334028108543435], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 26.48619516464414], [3, 3, -1, 23.230208287919723], [2, 7, 0, -0.12026464355831305], [-56, 102, -1, -0.03753480732162784], [429, 897, 1, -0.08542887244321837]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 434, "state": [[8, -5, 0, 4.324474873056523], [-13, 32, 1, 3.103790464018915], [9, 0, -1, 16.172020869622656], [-846, 459, 1, 0.27524001744940824], [84, 11, -1, 0.09736078042175686], [-2, 3, 1, 23.252652336816322], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-400, -867, -1, 0.3139751496929942], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [461, 848, 1, 0.26168140192218603], [-407, 844, -1, -0.43328055815835204], [-42, -31, 1, 1.7459885401918445], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-869, -466, 1, -0.15723111313639077], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [46, 31, -1, 2.4965518950995844], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -4, 1, 21.206189033175413], [-70, -51, -1, -0.1297101856458992], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, -1, 1, 26.572205599455454], [4, 1, -1, 23.316218722731037], [2, 7, 0, -0.12026464355831305], [-58, 101, -1, -0.04058832819015337], [430, 899, 1, -0.08543513665949772]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 435, "state": [[8, -5, 0, 4.324474873056523], [-15, 31, 1, 3.114100307436797], [7, -1, -1, 16.19460448727309], [-848, 460, 1, 0.27525235839018847], [85, 13, -1, 0.0939304005571557], [-3, 1, 1, 23.357860624736038], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-401, -869, -1, 0.31398681867174394], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [462, 850, 1, 0.2616940145724236], [-408, 846, -1, -0.4332859834018423], [-43, -33, 1, 1.748969885303255], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-871, -467, 1, -0.1572414020489958], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [47, 29, -1, 2.5029437709277724], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -6, 1, 21.2451785983641], [-71, -49, -1, -0.1256411040574597], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, 1, 1, 26.662403355818924], [3, -1, -1, 23.406416479094506], [2, 7, 0, -0.12026464355831305], [-59, 103, -1, -0.04041564658367312], [431, 901, 1, -0.08544137283143424]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 436, "state": [[8, -5, 0, 4.324474873056523], [-17, 30, 1, 3.1244275026739325], [6, -3, -1, 16.245812678447873], [-850, 461, 1, 0.2752646422868931], [84, 15, -1, 0.08996048728500834], [-4, -1, 1, 23.448058381099507], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-402, -871, -1, 0.3139984332775098], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [463, 852, 1, 0.2617065690873338], [-409, 848, -1, -0.4332913828774506], [-42, -35, 1, 1.7553627428921301], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-873, -468, 1, -0.1572516445272309], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [49, 28, -1, 2.5083065138199028], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -8, 1, 21.264970310444383], [-69, -50, -1, -0.1293004380527165], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [2, 3, 1, 26.76761164373864], [2, -3, -1, 23.511624767014222], [2, 7, 0, -0.12026464355831305], [-60, 101, -1, -0.042938080589169675], [432, 903, 1, -0.08544758114691635]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 437, "state": [[8, -5, 0, 4.324474873056523], [-19, 29, 1, 3.1346856382528805], [7, -5, -1, 16.27073664126703], [-852, 462, 1, 0.27527686953398073], [83, 17, -1, 0.08593127294612395], [-3, -3, 1, 23.53406881591082], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-403, -873, -1, 0.31400999388932155], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [464, 854, 1, 0.26171906586778093], [-410, 850, -1, -0.4332967567683115], [-43, -37, 1, 1.7578773972780073], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-875, -469, 1, -0.1572618408846448], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [51, 27, -1, 2.5134387645587766], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -7, 1, 21.309619127568677], [-67, -51, -1, -0.13304952632228922], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, 4, 1, 26.86119516464414], [0, -4, -1, 23.605208287919723], [2, 7, 0, -0.12026464355831305], [-61, 103, -1, -0.042723052353458364], [433, 905, 1, -0.08545376179215798]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 438, "state": [[8, -5, 0, 4.324474873056523], [-21, 28, 1, 3.1447917120802824], [5, -6, -1, 16.31144983881081], [-854, 463, 1, 0.27528904052228287], [82, 19, -1, 0.08184669448625616], [-1, -4, 1, 23.620079250722135], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-404, -875, -1, 0.3140215008826953], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [465, 856, 1, 0.2617315053109536], [-411, 852, -1, -0.4333021052558281], [-42, -39, 1, 1.7638997776451117], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-877, -470, 1, -0.15727199143197068], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [52, 25, -1, 2.5196066960840806], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -5, 1, 21.35256695462546], [-65, -52, -1, -0.13688739869512553], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-2, 3, 1, 26.95477868554964], [-2, -3, -1, 23.698791808825224], [2, 7, 0, -0.12026464355831305], [-59, 104, -1, -0.03975404667144265], [434, 907, 1, -0.08545991495171723]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 439, "state": [[8, -5, 0, 4.324474873056523], [-23, 27, 1, 3.1546699928976576], [3, -7, -1, 16.357580340418078], [-856, 464, 1, 0.2753011556390453], [84, 18, -1, 0.08448802778052422], [0, -6, 1, 23.65906881591082], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-405, -877, -1, 0.3140329546296744], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [466, 858, 1, 0.26174388781040697], [-412, 854, -1, -0.43330742851969295], [-43, -41, 1, 1.7660030244924965], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-879, -471, 1, -0.15728209647715707], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [54, 24, -1, 2.5243687147153584], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -3, 1, 21.3701785983641], [-63, -51, -1, -0.13780735921850162], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 1, 1, 27.059986973469357], [-3, -1, -1, 23.80400009674494], [2, 7, 0, -0.12026464355831305], [-58, 106, -1, -0.03730841352967128], [435, 909, 1, -0.08546604080851461]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 440, "state": [[8, -5, 0, 4.324474873056523], [-25, 26, 1, 3.1642550444138395], [1, -8, -1, 16.402229157542372], [-858, 465, 1, 0.2753132152679694], [86, 19, -1, 0.08347833510554425], [-1, -8, 1, 23.639277103830537], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-406, -879, -1, 0.3140443554988689], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [467, 860, 1, 0.26175621375610386], [-413, 856, -1, -0.43331272673790794], [-42, -43, 1, 1.7716640367969059], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-881, -472, 1, -0.15729215632539933], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [56, 23, -1, 2.528907138594689], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -1, 1, 21.456189033175413], [-61, -50, -1, -0.13877825954442397], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, -1, 1, 27.150184729832826], [-4, 1, -1, 23.89419785310841], [2, 7, 0, -0.12026464355831305], [-57, 104, -1, -0.03741947767290717], [436, 911, 1, -0.08547213954385131]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 441, "state": [[8, -5, 0, 4.324474873056523], [-27, 25, 1, 3.173493657957843], [-1, -9, -1, 16.439632513361293], [-860, 466, 1, 0.2753252197892522], [88, 20, -1, 0.08251716947976132], [-2, -6, 1, 23.607860624736038], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-407, -881, -1, 0.31405570385549564], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [468, 862, 1, 0.2617684835344559], [-414, 858, -1, -0.43331800008680404], [-40, -44, 1, 1.7773647981744662], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-883, -473, 1, -0.1573021712791704], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [58, 22, -1, 2.533230476639059], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 1, 1, 21.546386789538882], [-59, -49, -1, -0.13980437241884397], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -3, 1, 27.23619516464414], [-3, 3, -1, 23.980208287919723], [2, 7, 0, -0.12026464355831305], [-58, 106, -1, -0.03730841352967128], [437, 913, 1, -0.08547821133742702]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 442, "state": [[8, -5, 0, 4.324474873056523], [-29, 24, 1, 3.1823456401750865], [-2, -7, -1, 16.466313636014107], [-862, 467, 1, 0.27533716957962645], [90, 21, -1, 0.08160117992112362], [0, -5, 1, 23.65906881591082], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-408, -883, -1, 0.3140670000614168], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [469, 864, 1, 0.26178069752836386], [-415, 860, -1, -0.43332324874106104], [-38, -45, 1, 1.7831827289638729], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-885, -474, 1, -0.15731214163825075], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [59, 20, -1, 2.538915106741207], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 3, 1, 21.651595077458598], [-60, -47, -1, -0.1352567698615165], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-2, -5, 1, 27.30063569384872], [-1, 4, -1, 24.066218722731037], [2, 7, 0, -0.12026464355831305], [-59, 108, -1, -0.0372013826493086], [438, 915, 1, -0.08548425636735744]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 443, "state": [[8, -5, 0, 4.324474873056523], [-31, 23, 1, 3.1907835770126067], [-4, -6, -1, 16.515604390528154], [-864, 468, 1, 0.2753490650124001], [92, 22, -1, 0.08072731118420641], [2, -4, 1, 23.732860624736038], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-409, -885, -1, 0.3140782444751785], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [470, 866, 1, 0.2617928561172572], [-416, 862, -1, -0.4333284728737267], [-36, -46, 1, 1.7891054828252098], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-887, -475, 1, -0.15732206769975857], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [61, 19, -1, 2.542874164111561], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 4, 1, 21.7451785983641], [-59, -45, -1, -0.13320236392872475], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, -4, 1, 27.36119516464414], [1, 3, -1, 24.156416479094506], [2, 7, 0, -0.12026464355831305], [-60, 106, -1, -0.03960105515009038], [439, 917, 1, -0.08549027481019195]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 444, "state": [[8, -5, 0, 4.324474873056523], [-33, 22, 1, 3.1987918088252165], [-6, -5, -1, 16.561449838810805], [-866, 469, 1, 0.275360906457495], [94, 21, -1, 0.08310310311638251], [3, -2, 1, 23.81548529500532], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-410, -887, -1, 0.31408943745204876], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [471, 868, 1, 0.2618049596771335], [-417, 864, -1, -0.4333336726562356], [-34, -47, 1, 1.7951191086186038], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-889, -476, 1, -0.15733194975817905], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [62, 17, -1, 2.5483387263307042], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 3, 1, 21.8387621192696], [-57, -44, -1, -0.13412576798538442], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [2, -3, 1, 27.45477868554964], [3, 2, -1, 24.261624767014222], [2, 7, 0, -0.12026464355831305], [-61, 108, -1, -0.03945357245446493], [440, 919, 1, -0.0854962668409306]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 445, "state": [[8, -5, 0, 4.324474873056523], [-35, 21, 1, 3.2063648949194006], [-7, -3, -1, 16.607580340418075], [-868, 470, 1, 0.27537269428148514], [92, 22, -1, 0.08072731118420641], [5, -1, 1, 23.87765233681632], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-411, -889, -1, 0.31410057934405444], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [472, 870, 1, 0.26181700858059703], [-418, 866, -1, -0.4333388482584286], [-32, -48, 1, 1.8012081911747828], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-891, -477, 1, -0.15734178810539357], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [64, 16, -1, 2.5519416189005018], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 1, 1, 21.943970407189315], [-58, -46, -1, -0.1362158628360475], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 27.559986973469357], [5, 1, -1, 24.32379180882522], [2, 7, 0, -0.12026464355831305], [-59, 109, -1, -0.03658575983342561], [441, 921, 1, -0.08550223263304113]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 446, "state": [[8, -5, 0, 4.324474873056523], [-37, 20, 1, 3.2135058313379856], [-8, -1, -1, 16.65222915754237], [-870, 471, 1, 0.2753844288476346], [91, 24, -1, 0.077044157785984], [6, 1, 1, 23.935353044266446], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-412, -891, -1, 0.3141116705000187], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [473, 872, 1, 0.261829003196897], [-419, 868, -1, -0.4333439998485704], [-30, -49, 1, 1.8073560472203267], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-893, -478, 1, -0.1573515830307084], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [65, 14, -1, 2.557167457152458], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, -1, 1, 22.034168163552785], [-56, -47, -1, -0.14062753136203254], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [5, 0, 1, 27.61119516464414], [4, -1, -1, 24.394197853108405], [2, 7, 0, -0.12026464355831305], [-58, 111, -1, -0.034258229618577905], [442, 923, 1, -0.08550817235847565]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 447, "state": [[8, -5, 0, 4.324474873056523], [-39, 19, 1, 3.220224235390629], [-9, 1, -1, 16.68963251336129], [-872, 472, 1, 0.2753961105159344], [93, 25, -1, 0.07628904234945087], [5, 3, 1, 23.995079250722135], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-413, -893, -1, 0.31412271126559704], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [474, 874, 1, 0.26184094389196527], [-420, 870, -1, -0.4333491275933683], [-28, -50, 1, 1.8135449722565407], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-895, -479, 1, -0.15736133482088308], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [67, 13, -1, 2.5604293785053707], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -3, 1, 22.1201785983641], [-57, -45, -1, -0.13586060685666163], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [6, 2, 1, 27.662403355818924], [3, -3, -1, 24.48020828791972], [2, 7, 0, -0.12026464355831305], [-59, 113, -1, -0.034208384664651044], [443, 925, 1, -0.08551408618768724]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 448, "state": [[8, -5, 0, 4.324474873056523], [-41, 18, 1, 3.2265346465335876], [-7, 2, -1, 16.716313636014103], [-874, 473, 1, 0.27540773964313986], [94, 23, -1, 0.07989277248494864], [3, 4, 1, 24.056652433561254], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-414, -895, -1, 0.314133701983313], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [475, 876, 1, 0.2618528310284534], [-421, 872, -1, -0.43335423165799014], [-26, -51, 1, 1.8197565305582308], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-897, -480, 1, -0.15737104376015823], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [69, 12, -1, 2.5635261648028407], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -4, 1, 22.206189033175413], [-58, -43, -1, -0.1310336889673518], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, 3, 1, 27.713611546993707], [1, -4, -1, 24.566218722731033], [2, 7, 0, -0.12026464355831305], [-61, 114, -1, -0.035821027458658686], [444, 927, 1, -0.08551997428964618]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 449, "state": [[8, -5, 0, 4.324474873056523], [-43, 17, 1, 3.232455031977231], [-6, 4, -1, 16.76560439052815], [-876, 474, 1, 0.2754193165828064], [96, 24, -1, 0.07909501002798427], [1, 5, 1, 24.127652336816322], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-415, -897, -1, 0.3141446429925938], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [476, 878, 1, 0.2618646649657694], [-422, 874, -1, -0.43335931220608187], [-24, -52, 1, 1.8259718771668603], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-899, -481, 1, -0.15738071013028332], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [70, 10, -1, 2.568347566438753], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, -6, 1, 22.193970407189315], [-60, -44, -1, -0.13020414725999968], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [2, 4, 1, 27.787403355818924], [-1, -3, -1, 24.656416479094503], [2, 7, 0, -0.12026464355831305], [-60, 116, -1, -0.0335965474361447], [445, 929, 1, -0.08552583683185606]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 450, "state": [[8, -5, 0, 4.324474873056523], [-45, 16, 1, 3.2380055357573543], [-5, 6, -1, 16.811449838810802], [-878, 475, 1, 0.2754308416853256], [97, 22, -1, 0.08258809413776327], [-1, 4, 1, 24.198058381099507], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-416, -899, -1, 0.31415553462980533], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [477, 880, 1, 0.26187644606011373], [-423, 876, -1, -0.43336436939978523], [-22, -53, 1, 1.8321720981912326], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-901, -482, 1, -0.15739033421054377], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [72, 9, -1, 2.5711394720089036], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -7, 1, 22.2451785983641], [-62, -43, -1, -0.12600787620682974], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, 5, 1, 27.86119516464414], [-3, -2, -1, 24.76162476701422], [2, 7, 0, -0.12026464355831305], [-61, 114, -1, -0.035821027458658686], [446, 931, 1, -0.08553167398036972]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 451, "state": [[8, -5, 0, 4.324474873056523], [-47, 15, 1, 3.2432074747621957], [-3, 7, -1, 16.85758034041807], [-880, 476, 1, 0.2754423152979603], [95, 23, -1, 0.08027976439496838], [-3, 3, 1, 24.28406881591082], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-417, -901, -1, 0.3141663772282863], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [478, 882, 1, 0.26188817466451525], [-424, 878, -1, -0.4333694033997548], [-20, -54, 1, 1.8383385542201074], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-903, -483, 1, -0.1573999162777877], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [74, 8, -1, 2.573791808825215], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, -8, 1, 22.284168163552785], [-60, -44, -1, -0.13020414725999968], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, 3, 1, 27.912403355818924], [-4, 0, -1, 24.85520828791972], [2, 7, 0, -0.12026464355831305], [-62, 112, -1, -0.03809039428612843], [447, 933, 1, -0.08553748589980474]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 452, "state": [[8, -5, 0, 4.324474873056523], [-49, 14, 1, 3.2480825633392634], [-1, 8, -1, 16.902229157542365], [-882, 477, 1, 0.2754537377648795], [94, 25, -1, 0.07671381699766447], [-4, 1, 1, 24.370079250722135], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-418, -903, -1, 0.3141771711183823], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [479, 884, 1, 0.26189985112886627], [-425, 880, -1, -0.43337441436517526], [-18, -55, 1, 1.8444532113916674], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-905, -484, 1, -0.15740945660645284], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [75, 6, -1, 2.5782258472561286], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -6, 1, 22.271462826719727], [-58, -43, -1, -0.1310336889673518], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 4, 1, 27.963611546993707], [-6, 1, -1, 24.881492516275348], [2, 7, 0, -0.12026464355831305], [-60, 113, -1, -0.03531110223072665], [448, 935, 1, -0.08554327275335917]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 453, "state": [[8, -5, 0, 4.324474873056523], [-51, 13, 1, 3.252652336816311], [1, 9, -1, 16.939632513361286], [-884, 478, 1, 0.2754651094271928], [96, 26, -1, 0.07598994174357838], [-3, -1, 1, 24.460277007085605], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-419, -905, -1, 0.31418791662747925], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [480, 886, 1, 0.26191147579995727], [-426, 882, -1, -0.4333794024537777], [-16, -56, 1, 1.8504989456888299], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-907, -485, 1, -0.15741895546859233], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [77, 5, -1, 2.580610936574107], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -5, 1, 22.331189033175416], [-57, -41, -1, -0.12874181527487447], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-5, 5, 1, 27.98619516464414], [-7, 3, -1, 24.919648817124298], [2, 7, 0, -0.12026464355831305], [-62, 114, -1, -0.03690240690250604], [449, 937, 1, -0.08554903470282653]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 454, "state": [[8, -5, 0, 4.324474873056523], [-53, 12, 1, 3.256937740394947], [0, 7, -1, 16.922020869622646], [-886, 479, 1, 0.2754764306229842], [95, 24, -1, 0.0787010629535942], [-2, -3, 1, 24.56548529500532], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-420, -907, -1, 0.3141986140800367], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [481, 888, 1, 0.26192304902151137], [-427, 884, -1, -0.4333843678218568], [-14, -57, 1, 1.8564598082024506], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-909, -486, 1, -0.15742841313390069], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [78, 3, -1, 2.5848128558620593], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, -3, 1, 22.3387621192696], [-55, -42, -1, -0.13329534635812168], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 4, 1, 27.963611546993707], [-5, 4, -1, 24.96259664418108], [2, 7, 0, -0.12026464355831305], [-60, 115, -1, -0.03416025798238893], [450, 939, 1, -0.08555477190861112]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 455, "state": [[8, -5, 0, 4.324474873056523], [-55, 11, 1, 3.260958850636215], [2, 6, -1, 16.97322906079743], [-888, 480, 1, 0.2754877016873456], [97, 23, -1, 0.08103110604065948], [-1, -5, 1, 24.62765233681632], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-421, -909, -1, 0.3142092637976203], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [482, 890, 1, 0.26193457113421775], [-428, 886, -1, -0.4333893106242867], [-12, -58, 1, 1.8623212421485067], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-911, -487, 1, -0.15743782986973945], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [80, 2, -1, 2.5869531391331737], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -1, 1, 22.443970407189315], [-57, -41, -1, -0.12874181527487444], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-5, 3, 1, 28.025184729832826], [-3, 3, -1, 24.98020828791972], [2, 7, 0, -0.12026464355831305], [-59, 113, -1, -0.03420838466465104], [451, 941, 1, -0.08556048452974269]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 456, "state": [[8, -5, 0, 4.324474873056523], [-57, 10, 1, 3.264734700041961], [4, 7, -1, 17.00464553989193], [-890, 481, 1, 0.27549892295240985], [95, 22, -1, 0.0818660847082718], [1, -4, 1, 24.698058381099504], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-422, -911, -1, 0.3142198660989338], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [483, 892, 1, 0.2619460424757656], [-429, 888, -1, -0.43339423101453717], [-10, -59, 1, 1.8680702459700076], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-913, -488, 1, -0.157447205941162], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [81, 0, -1, 2.5909311840891864], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 1, 1, 22.534168163552785], [-58, -39, -1, -0.12371412725868179], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 2, 1, 28.017611643738643], [-1, 4, -1, 25.066218722731033], [2, 7, 0, -0.12026464355831305], [-58, 115, -1, -0.03196909820383563], [452, 943, 1, -0.08556617272389137]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 457, "state": [[8, -5, 0, 4.324474873056523], [-59, 9, 1, 3.268283179597716], [6, 6, -1, 17.047020869622646], [-892, 482, 1, 0.27551009474738336], [97, 21, -1, 0.08415202206630544], [3, -3, 1, 24.784068815910818], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-423, -913, -1, 0.3142304212998511], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [484, 894, 1, 0.2619574633808766], [-430, 890, -1, -0.4333991291446896], [-8, -60, 1, 1.8736954805008614], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-915, -489, 1, -0.15745654161093872], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [83, -1, -1, 2.5928486207499226], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 3, 1, 22.6201785983641], [-56, -40, -1, -0.12821481407813745], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 28.111195164644144], [1, 3, -1, 25.156416479094503], [2, 7, 0, -0.12026464355831305], [-60, 114, -1, -0.03473172749445068], [453, 945, 1, -0.0855718366473819]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 458, "state": [[8, -5, 0, 4.324474873056523], [-61, 8, 1, 3.2716209986846256], [7, 4, -1, 17.089396199353363], [-894, 483, 1, 0.27552121739857804], [96, 23, -1, 0.08065913601463798], [4, -1, 1, 24.87007925072213], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-424, -915, -1, 0.31424092971344747], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [485, 896, 1, 0.2619688341813377], [-431, 892, -1, -0.43340400516545247], [-6, -61, 1, 1.879187321552152], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-917, -490, 1, -0.1574658371395814], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [81, -2, -1, 2.594860137454192], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, 4, 1, 22.706189033175413], [-57, -38, -1, -0.12308256333926357], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -2, 1, 28.204778685549645], [3, 2, -1, 25.26162476701422], [2, 7, 0, -0.12026464355831305], [-59, 116, -1, -0.032510310278075105], [454, 947, 1, -0.08557747645520816]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 459, "state": [[8, -5, 0, 4.324474873056523], [-63, 7, 1, 3.274763685992077], [8, 2, -1, 17.133031304433963], [-896, 484, 1, 0.27553229122944345], [98, 24, -1, 0.07986017212835994], [3, 1, 1, 24.9602770070856], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-425, -917, -1, 0.3142513916500304], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [486, 898, 1, 0.26198015520603296], [-432, 894, -1, -0.43340885922617717], [-4, -62, 1, 1.8845378621179174], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-919, -491, 1, -0.1574750927853675], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [79, -3, -1, 2.596972139963103], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, 3, 1, 22.796386789538882], [-55, -39, -1, -0.12766600610475767], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, -3, 1, 28.30998697346936], [4, 0, -1, 25.35520828791972], [2, 7, 0, -0.12026464355831305], [-61, 117, -1, -0.03411376223638715], [455, 949, 1, -0.08558309230104715]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 460, "state": [[8, -5, 0, 4.324474873056523], [-65, 6, 1, 3.2777256187380717], [9, 0, -1, 17.17202086962265], [-898, 485, 1, 0.2755433165605975], [99, 26, -1, 0.07720937618723069], [2, 3, 1, 25.065485295005317], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-426, -919, -1, 0.31426180741717014], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [487, 900, 1, 0.2619914267809755], [-433, 896, -1, -0.4334136914748729], [-2, -63, 1, 1.8897408705123604], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-921, -492, 1, -0.15748430880436395], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [78, -5, -1, 2.60111948424344], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 22.901595077458598], [-53, -38, -1, -0.12849851242844934], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 28.40018472983283], [3, -2, -1, 25.44879180882522], [2, 7, 0, -0.12026464355831305], [-59, 118, -1, -0.031416479094500564], [456, 951, 1, -0.08558868433727308]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 461, "state": [[8, -5, 0, 4.324474873056523], [-67, 5, 1, 3.280520070563241], [7, -1, -1, 17.194604487273082], [-900, 486, 1, 0.2755542937098579], [100, 24, -1, 0.08059642721445835], [0, 4, 1, 25.159068815910818], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-427, -921, -1, 0.3142721773197299], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [488, 902, 1, 0.2620026492293385], [-434, 898, -1, -0.43341850205822186], [0, -64, 1, 1.8947917120802822], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-923, -493, 1, -0.15749348545045078], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [76, -6, -1, 2.6034700409169673], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 22.9951785983641], [-51, -39, -1, -0.1334028108543435], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 28.486195164644144], [2, -4, -1, 25.531416479094503], [2, 7, 0, -0.12026464355831305], [-58, 116, -1, -0.031416479094500564], [457, 953, 1, -0.08559425271497105]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 462, "state": [[8, -5, 0, 4.324474873056523], [-69, 4, 1, 3.2831592709297857], [6, -3, -1, 17.245812678447866], [-902, 487, 1, 0.2755652229922725], [98, 23, -1, 0.08139588504228253], [-2, 3, 1, 25.25265233681632], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-428, -923, -1, 0.3142825016598954], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [489, 904, 1, 0.26201382287148633], [-435, 900, -1, -0.4334232911215939], [1, -62, 1, 1.897358504726873], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-925, -494, 1, -0.15750262297534454], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [74, -7, -1, 2.6059417156454354], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 23.0887621192696], [-53, -40, -1, -0.13239480569232764], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, -1, 1, 28.572205599455458], [0, -3, -1, 25.60520828791972], [2, 7, 0, -0.12026464355831305], [-56, 117, -1, -0.028672700206612195], [458, 955, 1, -0.08559979758395071]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 463, "state": [[8, -5, 0, 4.324474873056523], [-71, 3, 1, 3.285654470795559], [7, -5, -1, 17.27073664126702], [-904, 488, 1, 0.27557610472014915], [96, 24, -1, 0.07909501002798427], [-3, 1, 1, 25.357860624736034], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-429, -925, -1, 0.31429278073720435], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [490, 906, 1, 0.26202494802500453], [-436, 902, -1, -0.43342805880906154], [2, -60, 1, 1.90009491328305], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-927, -495, 1, -0.15751172162862093], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [73, -9, -1, 2.6104545069751572], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 23.193970407189315], [-54, -42, -1, -0.13470733035348137], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, 1, 1, 28.662403355818928], [-1, -5, -1, 25.63662476701422], [2, 7, 0, -0.12026464355831305], [-58, 116, -1, -0.031416479094500564], [459, 957, 1, -0.0856053190927596]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 464, "state": [[8, -5, 0, 4.324474873056523], [-73, 2, 1, 3.288016010828635], [5, -6, -1, 17.311449838810802], [-906, 489, 1, 0.27558693920308586], [94, 23, -1, 0.07989277248494864], [-4, -1, 1, 25.448058381099504], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-430, -927, -1, 0.31430301484857537], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [491, 908, 1, 0.2620360250047304], [-437, 904, -1, -0.433432805263414], [3, -58, 1, 1.9030165346751815], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-929, -496, 1, -0.157520781657738], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [71, -10, -1, 2.613200887071562], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -5, 1, 23.2451785983641], [-56, -41, -1, -0.13008086692594764], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [2, 3, 1, 28.767611643738643], [-2, -3, -1, 25.698791808825217], [2, 7, 0, -0.12026464355831305], [-59, 114, -1, -0.033634522845372], [460, 959, 1, -0.0856108173886966]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 465, "state": [[8, -5, 0, 4.324474873056523], [-75, 1, 1, 3.2902533895614656], [3, -7, -1, 17.35758034041807], [-908, 490, 1, 0.27559772674799976], [93, 21, -1, 0.08273914275716236], [-3, -3, 1, 25.534068815910818], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-431, -929, -1, 0.3143132042883363], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [492, 910, 1, 0.2620470541227823], [-438, 906, -1, -0.43343753062617174], [4, -56, 1, 1.9061406475802125], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-931, -497, 1, -0.15752980330805824], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [69, -11, -1, 2.616091984446457], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, -4, 1, 23.318970407189315], [-55, -43, -1, -0.13510721630368142], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, 4, 1, 28.861195164644144], [-3, -1, -1, 25.804000096744932], [2, 7, 0, -0.12026464355831305], [-58, 112, -1, -0.03367384463409429], [461, 961, 1, -0.08561629261782469]], "moves": [{"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 466, "state": [[8, -5, 0, 4.324474873056523], [-77, 0, 1, 3.2923753297307154], [1, -8, -1, 17.402229157542365], [-910, 491, 1, 0.2756084676591559], [94, 19, -1, 0.08634262634459912], [-1, -4, 1, 25.62007925072213], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-432, -931, -1, 0.31432334934825285], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [493, 912, 1, 0.262058035688589], [-439, 908, -1, -0.4334422350376005], [5, -54, 1, 1.9094863820952026], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-933, -498, 1, -0.15753878682287067], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [68, -13, -1, 2.6209951041619832], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -2, 1, 23.401595077458598], [-56, -45, -1, -0.13723338715681238], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-2, 3, 1, 28.954778685549645], [-4, 1, -1, 25.894197853108402], [2, 7, 0, -0.12026464355831305], [-56, 111, -1, -0.03198897642056756], [462, 963, 1, -0.08562174492498428]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 467, "state": [[8, -5, 0, 4.324474873056523], [-75, -1, 1, 3.2944972698999653], [-1, -9, -1, 17.439632513361286], [-912, 492, 1, 0.2756191622381965], [92, 20, -1, 0.08401575930585671], [-2, -6, 1, 25.607860624736034], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-433, -933, -1, 0.3143334503175559], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [494, 914, 1, 0.26206897000891866], [-440, 910, -1, -0.43344691863672485], [6, -52, 1, 1.9130748916779992], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-935, -499, 1, -0.15754773244341302], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [66, -14, -1, 2.6241982186564172], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 0, 1, 23.4951785983641], [-55, -43, -1, -0.13510721630368142], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 1, 1, 29.05998697346936], [-3, 3, -1, 25.980208287919716], [2, 7, 0, -0.12026464355831305], [-58, 112, -1, -0.03367384463409429], [463, 965, 1, -0.0856271744538057]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 468, "state": [[8, -5, 0, 4.324474873056523], [-73, -2, 1, 3.2967346486327957], [-2, -7, -1, 17.4663136360141], [-914, 493, 1, 0.2756298107841684], [91, 18, -1, 0.0870045754159695], [0, -5, 1, 25.659068815910818], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-434, -935, -1, 0.31434350748296924], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [495, 916, 1, 0.26207985738790723], [-441, 912, -1, -0.43345158156134245], [7, -50, 1, 1.916929518731175], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-937, -500, 1, -0.1575566404088929], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [64, -15, -1, 2.6275717694008716], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 2, 1, 23.5887621192696], [-53, -44, -1, -0.13977424655452614], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, -1, 1, 29.15018472983283], [-1, 4, -1, 26.06621872273103], [2, 7, 0, -0.12026464355831305], [-57, 114, -1, -0.031416479094500564], [464, 967, 1, -0.08563258134672191]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 469, "state": [[8, -5, 0, 4.324474873056523], [-71, -3, 1, 3.299096188665872], [-4, -6, -1, 17.515604390528146], [-916, 494, 1, 0.27564041359355146], [90, 16, -1, 0.09008291414016249], [2, -4, 1, 25.732860624736034], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-435, -937, -1, 0.3143535211287367], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [496, 918, 1, 0.2620906981270868], [-442, 914, -1, -0.4334562239480369], [8, -48, 1, 1.921075940435909], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-939, -501, 1, -0.15756551095650934], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [63, -17, -1, 2.6328786789819234], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 4, 1, 23.671386789538882], [-54, -46, -1, -0.14179370560070623], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -3, 1, 29.236195164644144], [1, 5, -1, 26.136624767014215], [2, 7, 0, -0.12026464355831305], [-56, 112, -1, -0.031416479094500564], [465, 969, 1, -0.0856379657449809]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 470, "state": [[8, -5, 0, 4.324474873056523], [-69, -4, 1, 3.3015913885316452], [-6, -5, -1, 17.5614498388108], [-918, 495, 1, 0.27565097096028557], [91, 18, -1, 0.0870045754159695], [3, -2, 1, 25.815485295005317], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-436, -939, -1, 0.31436349153664883], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [497, 920, 1, 0.26210149252541315], [-443, 916, -1, -0.4334608459321917], [9, -46, 1, 1.9255422747967805], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-941, -502, 1, -0.1575743443214738], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [61, -18, -1, 2.6365989049827423], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 5, 1, 23.7451785983641], [-55, -48, -1, -0.14369929365367232], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, -4, 1, 29.322205599455458], [2, 3, -1, 26.198791808825213], [2, 7, 0, -0.12026464355831305], [-54, 113, -1, -0.028574728570423227], [466, 971, 1, -0.0856433277886581]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 471, "state": [[8, -5, 0, 4.324474873056523], [-67, -5, 1, 3.3042305888981898], [-7, -3, -1, 17.607580340418068], [-920, 496, 1, 0.27566148317579814], [89, 19, -1, 0.08461017276275352], [4, 0, 1, 25.909068815910818], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-437, -941, -1, 0.31437341898606913], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [498, 922, 1, 0.2621122408792934], [-444, 918, -1, -0.43346544764800293], [10, -44, 1, 1.93035911781719], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-943, -503, 1, -0.1575831407370308], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [59, -19, -1, 2.6405154015953443], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 4, 1, 23.818970407189315], [-57, -49, -1, -0.1425100771008041], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, -6, 1, 29.361195164644144], [3, 1, -1, 26.30400009674493], [2, 7, 0, -0.12026464355831305], [-52, 114, -1, -0.02573478884759159], [467, 973, 1, -0.08564866761666835]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 472, "state": [[8, -5, 0, 4.324474873056523], [-65, -6, 1, 3.3070250407233592], [-8, -1, -1, 17.65222915754236], [-922, 497, 1, 0.27567195052903076], [90, 17, -1, 0.08837204539506308], [3, 2, 1, 26.00265233681632], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-438, -943, -1, 0.31438330375396056], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [499, 924, 1, 0.26212294348261306], [-445, 920, -1, -0.43347002922849254], [11, -42, 1, 1.9355594707954211], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-945, -504, 1, -0.15759190043447874], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [57, -20, -1, 2.6446389855831485], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 23.901595077458598], [-56, -47, -1, -0.14062753136203254], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 29.40018472983283], [4, -1, -1, 26.3941978531084], [2, 7, 0, -0.12026464355831305], [-50, 115, -1, -0.02289846381359532], [468, 975, 1, -0.08565398536677803]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 473, "state": [[8, -5, 0, 4.324474873056523], [-63, -7, 1, 3.309986973469354], [-9, 1, -1, 17.689632513361282], [-924, 498, 1, 0.2756823733064655], [91, 19, -1, 0.08532504831413985], [1, 3, 1, 26.107860624736034], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-439, -945, -1, 0.31439314611491076], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [500, 926, 1, 0.26213360062676266], [-446, 922, -1, -0.433474590805521], [13, -43, 1, 1.941517850663729], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-947, -505, 1, -0.15760062364318972], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [56, -22, -1, 2.6505082294422566], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 23.9951785983641], [-55, -49, -1, -0.1453271933381114], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -5, 1, 29.44720559945546], [6, -2, -1, 26.406416479094496], [2, 7, 0, -0.12026464355831305], [-52, 114, -1, -0.02573478884759159], [469, 977, 1, -0.08565928117561683]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 474, "state": [[8, -5, 0, 4.324474873056523], [-61, -8, 1, 3.3131296607768053], [-7, 2, -1, 17.716313636014096], [-926, 499, 1, 0.2756927517921514], [92, 17, -1, 0.08900353561191501], [-1, 4, 1, 26.198058381099504], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-440, -947, -1, 0.3144029463411578], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [501, 928, 1, 0.26214421260066434], [-447, 924, -1, -0.43347913250979997], [15, -42, 1, 1.9493856677970969], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-949, -506, 1, -0.15760931059063002], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [55, -24, -1, 2.656416479094499], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 24.0887621192696], [-53, -48, -1, -0.14662651183291275], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [5, -6, 1, 29.471766195455995], [7, -4, -1, 26.437832958188995], [2, 7, 0, -0.12026464355831305], [-50, 115, -1, -0.02289846381359532], [470, 979, 1, -0.08566455517868954]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 475, "state": [[8, -5, 0, 4.324474873056523], [-59, -9, 1, 3.316467479863715], [-6, 4, -1, 17.765604390528143], [-928, 500, 1, 0.27570308626772966], [94, 16, -1, 0.09125153888766246], [-3, 3, 1, 26.284068815910818], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-441, -949, -1, 0.3144127047026149], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [502, 930, 1, 0.26215477969079776], [-448, 926, -1, -0.43348365447090487], [17, -43, 1, 1.9547120098337671], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-951, -507, 1, -0.15761796150237942], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [53, -25, -1, 2.6610788601852247], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, -3, 1, 24.193970407189315], [-51, -47, -1, -0.14800652615842022], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [6, -4, 1, 29.517611643738647], [6, -6, -1, 26.480208287919712], [2, 7, 0, -0.12026464355831305], [-51, 117, -1, -0.023047624916213504], [471, 981, 1, -0.08566980751038748]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 476, "state": [[8, -5, 0, 4.324474873056523], [-57, -10, 1, 3.32001595941947], [-5, 6, -1, 17.811449838810795], [-930, 501, 1, 0.2757133770124597], [95, 14, -1, 0.0947977738807541], [-4, 1, 1, 26.37007925072213], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-442, -951, -1, 0.3144224214668958], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [503, 932, 1, 0.26216530218122597], [-449, 928, -1, -0.4334881568172872], [19, -42, 1, 1.9624058507933169], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-953, -508, 1, -0.1576265766021509], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [52, -27, -1, 2.667152650611962], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, -4, 1, 24.284168163552785], [-50, -45, -1, -0.1461301882554771], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, -3, 1, 29.50877878229458], [4, -7, -1, 26.52258361765043], [2, 7, 0, -0.12026464355831305], [-52, 115, -1, -0.0252114533718813], [472, 983, 1, -0.08567503830399997]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 477, "state": [[8, -5, 0, 4.324474873056523], [-55, -11, 1, 3.323791808825216], [-3, 7, -1, 17.857580340418064], [-932, 502, 1, 0.2757236243032438], [93, 13, -1, 0.09598033847523245], [-3, -1, 1, 26.4602770070856], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-443, -953, -1, 0.31443209689933854], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [504, 934, 1, 0.26217578035362077], [-450, 930, -1, -0.43349263967628643], [21, -43, 1, 1.9670961348344862], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-955, -509, 1, -0.15763515611181012], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [51, -29, -1, 2.6732193750646687], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -3, 1, 24.3701785983641], [-49, -43, -1, -0.1441340507694296], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -1, 1, 29.559986973469364], [2, -8, -1, 26.56621872273103], [2, 7, 0, -0.12026464355831305], [-51, 113, -1, -0.02509956584803662], [473, 985, 1, -0.08568024769172562]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 478, "state": [[8, -5, 0, 4.324474873056523], [-53, -12, 1, 3.327812919066484], [-1, 8, -1, 17.902229157542358], [-934, 503, 1, 0.2757338284146522], [91, 12, -1, 0.09721750826374466], [-2, -3, 1, 26.565485295005317], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-444, -955, -1, 0.3144417312630299], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [505, 936, 1, 0.26218621448728785], [-451, 932, -1, -0.43349710317414236], [23, -42, 1, 1.9745304691452852], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-957, -510, 1, -0.15764370025139401], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [49, -30, -1, 2.6783668489491412], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, -1, 1, 24.456189033175413], [-51, -42, -1, -0.13914476423471925], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, 1, 1, 29.650184729832834], [1, -6, -1, 26.578924059564088], [2, 7, 0, -0.12026464355831305], [-52, 115, -1, -0.0252114533718813], [474, 987, 1, -0.08568543580468341]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-1, 2], "using": [-1, 2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 479, "state": [[8, -5, 0, 4.324474873056523], [-51, -13, 1, 3.3320983226451197], [1, 9, -1, 17.93963251336128], [-936, 504, 1, 0.2757439896189474], [92, 10, -1, 0.10085277548974719], [-3, -5, 1, 26.5730583810995], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-445, -957, -1, 0.31445132481882915], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [506, 938, 1, 0.26219660485919155], [-452, 934, -1, -0.4335015474360069], [25, -43, 1, 1.9786070454959608], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-959, -511, 1, -0.15765220923912987], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [48, -32, -1, 2.684514704994685], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 1, 1, 24.546386789538882], [-49, -41, -1, -0.14038902060039038], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, 3, 1, 29.736195164644148], [-1, -7, -1, 26.62779190557015], [2, 7, 0, -0.12026464355831305], [-54, 116, -1, -0.02696575313263676], [475, 989, 1, -0.0856906027729238]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 480, "state": [[8, -5, 0, 4.324474873056523], [-49, -14, 1, 3.3366680961221675], [0, 7, -1, 17.92202086962264], [-938, 505, 1, 0.2757541081861085], [91, 12, -1, 0.09721750826374466], [-1, -6, 1, 26.63278458755519], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-446, -959, -1, 0.3144608778253917], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [507, 940, 1, 0.26220695174397923], [-453, 936, -1, -0.43350597258595547], [27, -42, 1, 1.98572289616947], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-961, -512, 1, -0.15766068329145377], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [46, -33, -1, 2.6899737621389086], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, 3, 1, 24.651595077458598], [-50, -43, -1, -0.14254218421013087], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, 4, 1, 29.82220559945546], [-2, -5, -1, 26.665767758715138], [2, 7, 0, -0.12026464355831305], [-56, 115, -1, -0.02974708287547849], [476, 991, 1, -0.08569574872543947]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 481, "state": [[8, -5, 0, 4.324474873056523], [-47, -15, 1, 3.341543184699235], [2, 6, -1, 17.973229060797422], [-940, 506, 1, 0.27576418438385514], [90, 10, -1, 0.10047293147803033], [1, -7, 1, 26.68165243356125], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-447, -961, -1, 0.3144703905391922], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [508, 942, 1, 0.2622172554140057], [-454, 938, -1, -0.433510378746999], [29, -43, 1, 1.9892263208254224], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-963, -513, 1, -0.15766912262302915], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [45, -35, -1, 2.6961394720089027], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, 4, 1, 24.7451785983641], [-49, -45, -1, -0.14773057508151383], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, 3, 1, 29.91240335581893], [-3, -3, -1, 26.730208287919716], [2, 7, 0, -0.12026464355831305], [-57, 113, -1, -0.03197886171177332], [477, 993, 1, -0.08570087379017605]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 482, "state": [[8, -5, 0, 4.324474873056523], [-45, -16, 1, 3.3467451237040766], [4, 7, -1, 18.00464553989192], [-942, 507, 1, 0.2757742184776707], [92, 11, -1, 0.09914509029541377], [0, -5, 1, 26.659068815910818], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-448, -963, -1, 0.31447986321454724], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [509, 944, 1, 0.2622275161393568], [-455, 940, -1, -0.43351476604109485], [31, -42, 1, 1.9959885401918442], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-965, -514, 1, -0.1576775274467646], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [43, -36, -1, 2.7018655817196575], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, 3, 1, 24.8387621192696], [-48, -47, -1, -0.15282378911604047], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 2, 1, 30.017611643738647], [-4, -1, -1, 26.81621872273103], [2, 7, 0, -0.12026464355831305], [-56, 111, -1, -0.03198897642056756], [478, 995, 1, -0.0857059780940428]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 483, "state": [[8, -5, 0, 4.324474873056523], [-43, -17, 1, 3.3522956274842], [6, 6, -1, 18.04702086962264], [-944, 508, 1, 0.27578421073082604], [94, 12, -1, 0.09787622811142102], [2, -4, 1, 26.732860624736034], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-449, -965, -1, 0.3144892961036386], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [510, 946, 1, 0.26223773418787316], [-456, 942, -1, -0.43351913458915836], [33, -43, 1, 1.9989698853032547], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-967, -515, 1, -0.157685897973832], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [42, -38, -1, 2.7079800584610974], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 2, 1, 24.921386789538882], [-49, -45, -1, -0.14773057508151383], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, 0, 1, 30.111195164644148], [-6, 0, -1, 26.855208287919716], [2, 7, 0, -0.12026464355831305], [-55, 113, -1, -0.029717380553628936], [479, 997, 1, -0.08571106176292313]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 484, "state": [[8, -5, 0, 4.324474873056523], [-41, -18, 1, 3.3582160129278433], [7, 4, -1, 18.089396199353356], [-946, 509, 1, 0.27579416140440227], [93, 14, -1, 0.09430432640787838], [3, -2, 1, 26.815485295005317], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-450, -967, -1, 0.31449868945653503], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [511, 948, 1, 0.2622479098251734], [-457, 944, -1, -0.4335234845110741], [35, -42, 1, 2.00536274289213], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-969, -516, 1, -0.15769423441368394], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [40, -39, -1, 2.7139166721473544], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 0, 1, 24.9951785983641], [-51, -46, -1, -0.1463024337976354], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -2, 1, 30.20477868554965], [-4, 1, -1, 26.894197853108402], [2, 7, 0, -0.12026464355831305], [-57, 114, -1, -0.031416479094500564], [480, 999, 1, -0.08571612492168472]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 485, "state": [[8, -5, 0, 4.324474873056523], [-39, -19, 1, 3.3645264240708017], [8, 2, -1, 18.133031304433956], [-948, 510, 1, 0.27580407075731345], [95, 15, -1, 0.0931606123975123], [4, 0, 1, 26.909068815910818], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-451, -969, -1, 0.31450804352121453], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [512, 950, 1, 0.2622580433146771], [-458, 946, -1, -0.4335278159257064], [37, -43, 1, 2.007877397278007], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-971, -517, 1, -0.1577025369740714], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [38, -40, -1, 2.7200111860735907], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, -2, 1, 25.068970407189315], [-49, -45, -1, -0.14773057508151383], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, -3, 1, 30.309986973469364], [-3, 3, -1, 26.980208287919716], [2, 7, 0, -0.12026464355831305], [-55, 115, -1, -0.028624573524350085], [481, 1001, 1, -0.08572116769419]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 486, "state": [[8, -5, 0, 4.324474873056523], [-37, -20, 1, 3.3712448281234453], [9, 0, -1, 18.172020869622642], [-950, 511, 1, 0.27581393904632917], [94, 17, -1, 0.08960902313106497], [3, 2, 1, 27.00265233681632], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-452, -971, -1, 0.3145173585435862], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [513, 952, 1, 0.2622681349176276], [-459, 948, -1, -0.43353212895091037], [39, -44, 1, 2.010215637491768], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-973, -518, 1, -0.15771080586106093], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [36, -41, -1, 2.7262514316042656], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-2, -3, 1, 25.151595077458598], [-51, -46, -1, -0.1463024337976354], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, -4, 1, 30.400184729832834], [-1, 4, -1, 27.06621872273103], [2, 7, 0, -0.12026464355831305], [-57, 116, -1, -0.03031507838579744], [482, 1003, 1, -0.08572619020330602]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 487, "state": [[8, -5, 0, 4.324474873056523], [-35, -21, 1, 3.3783857645420303], [7, -1, -1, 18.194604487273075], [-952, 512, 1, 0.27582376652609647], [95, 19, -1, 0.08666809612216836], [2, 4, 1, 27.0852770070856], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-453, -973, -1, 0.3145266347675117], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [514, 954, 1, 0.2622781848931144], [-460, 950, -1, -0.4335364237035428], [40, -42, 1, 2.0159106536711255], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-975, -519, 1, -0.1577190412790517], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [34, -42, -1, 2.7326228673044484], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [0, -4, 1, 25.2451785983641], [-49, -45, -1, -0.14773057508151383], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, -3, 1, 30.486195164644148], [1, 5, -1, 27.136624767014215], [2, 7, 0, -0.12026464355831305], [-56, 118, -1, -0.028146632188994835], [483, 1005, 1, -0.08573119257091469]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 488, "state": [[8, -5, 0, 4.324474873056523], [-33, -22, 1, 3.3859588506362144], [6, -3, -1, 18.24581267844786], [-954, 513, 1, 0.275833553449162], [93, 18, -1, 0.08765662342945135], [0, 5, 1, 27.159068815910818], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-454, -975, -1, 0.3145358724348265], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [515, 956, 1, 0.262288193498095], [-461, 952, -1, -0.4335407002994725], [42, -43, 1, 2.0179193873636585], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-977, -520, 1, -0.1577272434307922], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [32, -43, -1, 2.7391086607115], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [2, -3, 1, 25.3387621192696], [-47, -46, -1, -0.15278776491043297], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [4, -1, 1, 30.57220559945546], [2, 3, -1, 27.198791808825213], [2, 7, 0, -0.12026464355831305], [-58, 119, -1, -0.029803477467020823], [484, 1007, 1, -0.08573617491792235]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 489, "state": [[8, -5, 0, 4.324474873056523], [-31, -23, 1, 3.393967082448824], [7, -5, -1, 18.270736641267014], [-956, 514, 1, 0.2758433000659933], [94, 16, -1, 0.09125153888766246], [-2, 4, 1, 27.232860624736034], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-455, -977, -1, 0.314545071785361], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [516, 958, 1, 0.2622981609874174], [-462, 954, -1, -0.4335449588535905], [43, -41, 1, 2.023580399668068], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-979, -521, 1, -0.15773541251739695], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [30, -44, -1, 2.7456898591524945], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, -1, 1, 25.443970407189315], [-49, -47, -1, -0.15118379403381407], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [5, 1, 1, 30.642611643738647], [4, 2, -1, 27.281416479094496], [2, 7, 0, -0.12026464355831305], [-60, 120, -1, -0.031416479094500564], [485, 1009, 1, -0.08574113736426968]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 490, "state": [[8, -5, 0, 4.324474873056523], [-29, -24, 1, 3.4024050192863444], [5, -6, -1, 18.311449838810795], [-958, 515, 1, 0.27585300662500045], [93, 18, -1, 0.08765662342945135], [-3, 2, 1, 27.315485295005317], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-456, -979, -1, 0.314554233056961], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [517, 960, 1, 0.26230808761384095], [-463, 956, -1, -0.433549199479821], [44, -39, 1, 2.0293677866687965], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-981, -522, 1, -0.15774354873836308], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [29, -46, -1, 2.751406857880579], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [4, 1, 1, 25.534168163552785], [-47, -46, -1, -0.15278776491043297], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [3, 2, 1, 30.704778685549645], [6, 1, -1, 27.328924059564084], [2, 7, 0, -0.12026464355831305], [-58, 119, -1, -0.029803477467020823], [486, 1011, 1, -0.08574608002894128]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 491, "state": [[8, -5, 0, 4.324474873056523], [-27, -25, 1, 3.411257001503588], [3, -7, -1, 18.357580340418064], [-960, 516, 1, 0.27586267337255704], [94, 16, -1, 0.09125153888766246], [-4, 0, 1, 27.409068815910818], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-457, -981, -1, 0.3145633564855085], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [518, 962, 1, 0.2623179736280584], [-464, 958, -1, -0.4335534222911307], [45, -37, 1, 2.035270039313515], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-983, -523, 1, -0.15775165229158633], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [27, -47, -1, 2.7579423155011598], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [3, 3, 1, 25.6201785983641], [-49, -45, -1, -0.14773057508151383], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [1, 3, 1, 30.80998697346936], [7, -1, -1, 27.377791905570145], [2, 7, 0, -0.12026464355831305], [-59, 117, -1, -0.03195966791747519], [487, 1013, 1, -0.08575100302997521]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-2, 1], "using": [-2, 1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 492, "state": [[8, -5, 0, 4.324474873056523], [-25, -26, 1, 3.4204956150475914], [1, -8, -1, 18.402229157542358], [-962, 517, 1, 0.2758723005530209], [92, 17, -1, 0.08900353561191501], [-3, -2, 1, 27.50265233681632], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-458, -983, -1, 0.3145724423049417], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [519, 964, 1, 0.26232781927871657], [-465, 960, -1, -0.43355762739953946], [46, -35, 1, 2.041273929022012], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-985, -524, 1, -0.15775972337337704], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [25, -48, -1, 2.7645089545784876], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [1, 4, 1, 25.706189033175413], [-47, -46, -1, -0.15278776491043297], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-1, 4, 1, 30.90018472983283], [5, -2, -1, 27.415767758715134], [2, 7, 0, -0.12026464355831305], [-61, 116, -1, -0.03467516923702623], [488, 1015, 1, -0.08575590648447232]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [-2, -1], "using": [-2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 493, "state": [[8, -5, 0, 4.324474873056523], [-23, -27, 1, 3.4300806665637733], [-1, -9, -1, 18.43963251336128], [-964, 518, 1, 0.27588188840875466], [94, 16, -1, 0.09125153888766246], [-1, -3, 1, 27.607860624736034], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-459, -985, -1, 0.31458149074727504], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [520, 966, 1, 0.2623376248124371], [-466, 962, -1, -0.43356181491613], [47, -33, 1, 2.0473646162654258], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-987, -525, 1, -0.15776776217847632], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [24, -50, -1, 2.7697061679105603], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-1, 3, 1, 25.796386789538882], [-45, -45, -1, -0.1544990424337642], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, 3, 1, 30.986195164644144], [3, -3, -1, 27.480208287919712], [2, 7, 0, -0.12026464355831305], [-63, 115, -1, -0.037388774514052245], [489, 1017, 1, -0.08576079050860556]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 494, "state": [[8, -5, 0, 4.324474873056523], [-21, -28, 1, 3.4399589473811485], [-2, -7, -1, 18.466313636014092], [-966, 519, 1, 0.27589143718014636], [92, 17, -1, 0.08900353561191501], [0, -5, 1, 27.659068815910818], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-460, -987, -1, 0.31459050204261896], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [521, 968, 1, 0.26234739047383737], [-467, 964, -1, -0.4335659849510575], [48, -31, 1, 2.0535258177735236], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-989, -526, 1, -0.15777576890007128], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [23, -52, -1, 2.7746529196687906], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, 2, 1, 25.901595077458598], [-43, -46, -1, -0.15986178532589473], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-4, 1, 1, 31.072205599455458], [4, -5, -1, 27.497819931658352], [2, 7, 0, -0.12026464355831305], [-64, 117, -1, -0.03728865990645238], [490, 1019, 1, -0.08576565521762917]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 495, "state": [[8, -5, 0, 4.324474873056523], [-19, -29, 1, 3.4500650212085504], [-4, -6, -1, 18.51560439052814], [-968, 520, 1, 0.27590094710562896], [90, 18, -1, 0.08666809612216836], [1, -7, 1, 27.68165243356125], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-461, -989, -1, 0.3145994764191993], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [522, 970, 1, 0.26235711650555055], [-468, 966, -1, -0.43357013761355967], [49, -29, 1, 2.059740030388867], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-991, -527, 1, -0.15778374372981083], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [22, -54, -1, 2.779358001250068], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 25.9951785983641], [-45, -45, -1, -0.1544990424337642], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -1, 1, 31.162403355818928], [3, -7, -1, 27.540767758715134], [2, 7, 0, -0.12026464355831305], [-63, 119, -1, -0.03511708979969401], [491, 1021, 1, -0.08577050072588778]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, -2], "using": [1, -2]}, {"seat": 31, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 496, "state": [[8, -5, 0, 4.324474873056523], [-17, -30, 1, 3.4603231567874984], [-6, -5, -1, 18.56144983881079], [-970, 521, 1, 0.2759104184217009], [89, 16, -1, 0.08977484785548091], [0, -5, 1, 27.659068815910818], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-462, -991, -1, 0.31460841410337653], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [523, 972, 1, 0.2623668031482456], [-469, 968, -1, -0.43357427301196566], [50, -27, 1, 2.065988805710064], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-993, -528, 1, -0.15779168685782088], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [21, -56, -1, 2.783831058479232], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 26.0887621192696], [-47, -46, -1, -0.15278776491043297], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-2, -3, 1, 31.267611643738643], [1, -6, -1, 27.578924059564084], [2, 7, 0, -0.12026464355831305], [-64, 121, -1, -0.03505664356519364], [492, 1023, 1, -0.08577532714682522]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": [-1, -2], "using": [-1, -2]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 497, "state": [[8, -5, 0, 4.324474873056523], [-15, -31, 1, 3.470650352024634], [-7, -3, -1, 18.60758034041806], [-972, 522, 1, 0.27591985136294495], [91, 15, -1, 0.09208404521135415], [1, -7, 1, 27.68165243356125], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-463, -993, -1, 0.31461731531966514], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [524, 974, 1, 0.2623764506406475], [-470, 970, -1, -0.43357839125370634], [51, -25, 1, 2.07225306588503], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-995, -529, 1, -0.15779959847271918], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [19, -57, -1, 2.7897229929144025], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 25.9951785983641], [-48, -44, -1, -0.14758361765043315], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-3, -5, 1, 31.275184729832826], [0, -8, -1, 27.605208287919712], [2, 7, 0, -0.12026464355831305], [-62, 120, -1, -0.033524368328579864], [493, 1025, 1, -0.0857801345929935]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 498, "state": [[8, -5, 0, 4.324474873056523], [-13, -32, 1, 3.480960195442516], [-8, -1, -1, 18.652229157542354], [-974, 523, 1, 0.2759292461620481], [89, 14, -1, 0.0932524502079147], [0, -5, 1, 27.659068815910818], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-464, -995, -1, 0.3146261802907518], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [525, 976, 1, 0.2623860592195564], [-471, 972, -1, -0.43358249244532265], [52, -23, 1, 2.078513447659887], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-997, -530, 1, -0.1578074787616306], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [17, -58, -1, 2.795553287173301], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-3, -2, 1, 26.0887621192696], [-50, -45, -1, -0.1461301882554771], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [-2, -3, 1, 31.267611643738643], [-2, -9, -1, 27.640010531556243], [2, 7, 0, -0.12026464355831305], [-64, 119, -1, -0.03615810382326367], [494, 1027, 1, -0.08578492317606155]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 26, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [2, -1], "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 499, "state": [[8, -5, 0, 4.324474873056523], [-11, -33, 1, 3.4911671385559315], [-9, 1, -1, 18.689632513361275], [-976, 524, 1, 0.2759386030498204], [90, 16, -1, 0.09008291414016249], [2, -4, 1, 27.732860624736034], [4, -6, -1, 0.2135166047044547], [2, 1, 0, 0.09173296543276846], [-465, -997, -1, 0.3146350092375144], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [526, 978, 1, 0.2623956291198671], [-472, 974, -1, -0.4335865766924757], [53, -21, 1, 2.084750659461432], [2, 7, 0, -0.37772810323117817], [-28, 0, 1, 0.7050299826193698], [-6, -15, 0, 0.07498843998357395], [-999, -531, 1, -0.15781532791020178], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [16, -60, -1, 2.7994550252610257], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-4, 0, 1, 25.9951785983641], [-52, -44, -1, -0.14126670440396927], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [0, -4, 1, 31.361195164644144], [-3, -7, -1, 27.66964881712429], [2, 7, 0, -0.12026464355831305], [-66, 120, -1, -0.03765465288865356], [495, 1029, 1, -0.08578969300682379]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [-2, 1], "using": [-2, 1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": [2, 1], "using": [2, 1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}, {"round": 500, "state": [[8, -5, 0, 4.324474873056523], [-9, -34, 1, 3.5011906631463936], [-7, 2, -1, 18.71631363601409], [-978, 525, 1, 0.27594792225521386], [89, 18, -1, 0.08632434947937263], [3, -2, 1, 27.815485295005317], [3, -4, -1, 0.20468374326038735], [2, 1, 0, 0.09173296543276846], [-466, -999, -1, 0.31464380237904016], [5, -3, 0, -0.052743400244083805], [5, -3, 0, 7.02281327830357], [527, 980, 1, 0.26240516057458835], [-473, 976, -1, -0.4335906440999549], [54, -19, 1, 2.0909458351931773], [2, 7, 0, -0.37772810323117817], [-30, 1, 1, 0.699726781416602], [-6, -15, 0, 0.07498843998357395], [-1001, -532, 1, -0.15782314610261539], [1, 2, 0, 0.5860104348113155], [-6, -15, 0, 0.008931899977078406], [-17, -19, 0, 0.010958850636215418], [-17, -19, 0, 0.015460483750702941], [14, -61, -1, 2.8050256309650026], [1, 2, 0, 6.496939705235536], [2, 7, 0, 7.322092710284346], [-6, -1, 1, 26.021462826719727], [-50, -43, -1, -0.1425421842101309], [2, 7, 0, 11.762807359218517], [8, -5, 0, 1.5062791719753927], [2, -3, 1, 31.454778685549645], [-4, -5, -1, 27.712596644181072], [2, 7, 0, -0.12026464355831305], [-68, 121, -1, -0.03911152297561223], [496, 1031, 1, -0.0857944441952088]], "moves": [{"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": "", "error": "process already exited", "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 18, "got": "", "error": "process already exited", "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 26, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": [1, 2], "using": [1, 2]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": "", "error": "process already exited", "using": [1, 2]}]}]}
\ No newline at end of file |