-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreversilog
3738 lines (3737 loc) · 169 KB
/
reversilog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
id=TestGame time=1397066865539 new game
id=TestGame time=1397066865539 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397066866007 initialized
id=TestGame time=1397066866101 Redmove=6,61
id=TestGame time=1397066866101 Red makes illegal move
id=TestGame time=1397066889258 quit button pressed
id=TestGame time=1397066924593 new game
id=TestGame time=1397066924593 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397066924921 initialized
id=TestGame time=1397066976095 Redmove=6,61
id=TestGame time=1397066976110 Red makes illegal move
id=TestGame time=1397066989782 quit button pressed
id=TestGame time=1397067005314 new game
id=TestGame time=1397067005314 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397067005689 initialized
id=TestGame time=1397067272575 new game
id=TestGame time=1397067272575 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397067272903 initialized
id=TestGame time=1397067272981 Redmove=6,7
id=TestGame time=1397067272981 Red makes illegal move
id=TestGame time=1397067280794 quit button pressed
id=TestGame time=1397067288998 new game
id=TestGame time=1397067288998 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397067289326 initialized
id=TestGame time=1397067380780 new game
id=TestGame time=1397067380780 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397067381109 initialized
id=TestGame time=1397068073345 Redmove=6,3
id=TestGame time=1397068215792 new game
id=TestGame time=1397068215792 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397068216136 initialized
id=TestGame time=1397068216214 Redmove=6,3
id=TestGame time=1397068218628 Greenmove=5,6
id=TestGame time=1397068218642 Green makes illegal move
id=TestGame time=1397068923443 quit button pressed
id=TestGame time=1397068946102 new game
id=TestGame time=1397068946102 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397068946430 initialized
id=TestGame time=1397068956103 Redmove=6,3
id=TestGame time=1397069213478 new game
id=TestGame time=1397069213478 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397069213791 initialized
id=TestGame time=1397069219963 Redmove=6,3
id=TestGame time=1397069268620 new game
id=TestGame time=1397069268620 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397069268933 initialized
id=TestGame time=1397069268995 Redmove=6,3
id=TestGame time=1397069271408 Greenmove=3,3
id=TestGame time=1397069273834 Redmove=3,4
id=TestGame time=1397069276262 Greenmove=3,5
id=TestGame time=1397069278704 Redmove=3,6
id=TestGame time=1397069281122 Greenmove=5,6
id=TestGame time=1397069283566 Redmove=4,6
id=TestGame time=1397069286000 Greenmove=5,3
id=TestGame time=1397069288432 Redmove=4,3
id=TestGame time=1397069290866 Greenmove=3,2
id=TestGame time=1397069293298 Redmove=4,2
id=TestGame time=1397069295734 Greenmove=5,1
id=TestGame time=1397069298163 Redmove=2,5
id=TestGame time=1397069300598 Greenmove=3,7
id=TestGame time=1397069303031 Redmove=2,6
id=TestGame time=1397069305449 Greenmove=1,5
id=TestGame time=1397069307896 Redmove=2,1
id=TestGame time=1397069310310 Greenmove=2,2
id=TestGame time=1397069312750 Redmove=2,4
id=TestGame time=1397069315164 Greenmove=2,3
id=TestGame time=1397069317605 Redmove=3,1
id=TestGame time=1397069320018 Greenmove=7,2
id=TestGame time=1397069322457 Redmove=7,3
id=TestGame time=1397069324869 Greenmove=5,2
id=TestGame time=1397069327310 Redmove=4,1
id=TestGame time=1397069329725 Greenmove=7,4
id=TestGame time=1397069332166 Redmove=6,1
id=TestGame time=1397069334582 Green failed: NullPointerException: null
id=TestGame time=1397069350900 quit button pressed
id=TestGame time=1397069361838 new game
id=TestGame time=1397069361838 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397069362151 initialized
id=TestGame time=1397069362229 Redmove=6,3
id=TestGame time=1397069364642 Greenmove=3,3
id=TestGame time=1397069367087 Redmove=3,4
id=TestGame time=1397069369501 Greenmove=3,5
id=TestGame time=1397069371947 Redmove=2,4
id=TestGame time=1397069374391 Greenmove=2,3
id=TestGame time=1397069376825 Redmove=2,2
id=TestGame time=1397069379248 Greenmove=4,3
id=TestGame time=1397069381666 Redmove=3,2
id=TestGame time=1397069384112 Greenmove=5,3
id=TestGame time=1397069386533 Redmove=2,5
id=TestGame time=1397069388980 Greenmove=1,3
id=TestGame time=1397069391418 Redmove=1,2
id=TestGame time=1397069393848 Greenmove=1,1
id=TestGame time=1397069396265 Redmove=1,4
id=TestGame time=1397069398694 Greenmove=1,5
id=TestGame time=1397069401125 Redmove=2,1
id=TestGame time=1397069403554 Greenmove=7,2
id=TestGame time=1397069405981 Redmove=5,2
id=TestGame time=1397069408409 Greenmove=3,1
id=TestGame time=1397069410817 Redmove=7,4
id=TestGame time=1397069413192 Greenmove=7,3
id=TestGame time=1397136368818 Redmove=6,5
id=TestGame time=1397136371231 Greenmove=6,4
id=TestGame time=1397136374348 Redmove=5,6
id=TestGame time=1397136376782 Greenmove=6,2
id=TestGame time=1397136379211 Redmove=3,6
id=TestGame time=1397136381635 Greenmove=2,6
id=TestGame time=1397136384033 Redmove=1,6
id=TestGame time=1397136386468 Greenmove=4,6
id=TestGame time=1397136388879 Redmove=4,1
id=TestGame time=1397136391308 Greenmove=1,7
id=TestGame time=1397136393699 Redmove=2,7
id=TestGame time=1397136396131 Greenmove=4,2
id=TestGame time=1397136398553 Red failed: NullPointerException: null
id=TestGame time=1397136410652 quit button pressed
id=TestGame time=1397160407539 new game
id=TestGame time=1397160407541 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397160408009 initialized
id=TestGame time=1397160408100 Redmove=6,3
id=TestGame time=1397160410433 Greenmove=5,3
id=TestGame time=1397160412771 Redmove=6,4
id=TestGame time=1397160415108 Greenmove=3,3
id=TestGame time=1397160417454 Redmove=3,4
id=TestGame time=1397160419792 Greenmove=3,5
id=TestGame time=1397160422136 Redmove=4,2
id=TestGame time=1397160424474 Greenmove=5,1
id=TestGame time=1397160426811 Redmove=3,1
id=TestGame time=1397160429149 Greenmove=6,2
id=TestGame time=1397160431488 Redmove=4,3
id=TestGame time=1397160433825 Greenmove=5,2
id=TestGame time=1397160436162 Redmove=2,4
id=TestGame time=1397160436268 quit button pressed
id=TestGame time=1397160577662 new game
id=TestGame time=1397160577662 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397160577990 initialized
id=TestGame time=1397160579053 Redmove=6,3
id=TestGame time=1397160582472 Greenmove=5,3
id=TestGame time=1397160585883 Redmove=6,4
id=TestGame time=1397160586449 quit button pressed
id=TestGame time=1397160599363 new game
id=TestGame time=1397160599363 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397160599660 initialized
id=TestGame time=1397160600723 Redmove=6,3
id=TestGame time=1397160601732 Greenmove=5,3
id=TestGame time=1397160602737 Redmove=6,4
id=TestGame time=1397160603740 Greenmove=3,3
id=TestGame time=1397160604744 Redmove=3,4
id=TestGame time=1397160605747 Greenmove=3,5
id=TestGame time=1397160606751 Redmove=4,2
id=TestGame time=1397160607754 Greenmove=5,1
id=TestGame time=1397160608757 Redmove=3,1
id=TestGame time=1397160609761 Greenmove=6,2
id=TestGame time=1397160610764 Redmove=4,3
id=TestGame time=1397160611768 Greenmove=5,2
id=TestGame time=1397160612771 Redmove=2,4
id=TestGame time=1397160613774 Greenmove=4,1
id=TestGame time=1397160614778 Redmove=6,1
id=TestGame time=1397160615782 Greenmove=2,3
id=TestGame time=1397160616786 Redmove=3,2
id=TestGame time=1397160617789 Greenmove=1,4
id=TestGame time=1397160618792 Redmove=2,2
id=TestGame time=1397160619796 Greenmove=2,1
id=TestGame time=1397160620799 Redmove=1,1
id=TestGame time=1397160621803 Greenmove=7,5
id=TestGame time=1397160622806 Redmove=6,5
id=TestGame time=1397160623810 Greenmove=7,1
id=TestGame time=1397160624813 Redmove=7,3
id=TestGame time=1397160625820 Green failed: NullPointerException: null
id=TestGame time=1397160631369 quit button pressed
id=TestGame time=1397160635854 new game
id=TestGame time=1397160635854 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397160636166 initialized
id=TestGame time=1397160637213 Redmove=6,3
id=TestGame time=1397160638224 Greenmove=5,3
id=TestGame time=1397160639228 Redmove=6,4
id=TestGame time=1397160640231 Greenmove=3,3
id=TestGame time=1397160641235 Redmove=3,4
id=TestGame time=1397160642238 Greenmove=3,5
id=TestGame time=1397160643242 Redmove=4,2
id=TestGame time=1397160644245 Greenmove=5,1
id=TestGame time=1397160645249 Redmove=3,1
id=TestGame time=1397160646252 Greenmove=6,2
id=TestGame time=1397160647256 Redmove=4,3
id=TestGame time=1397160648260 Greenmove=5,2
id=TestGame time=1397160649263 Redmove=2,4
id=TestGame time=1397160650267 Greenmove=4,1
id=TestGame time=1397160651271 Redmove=6,1
id=TestGame time=1397160652275 Greenmove=2,3
id=TestGame time=1397160653278 Redmove=3,2
id=TestGame time=1397160654282 Greenmove=1,4
id=TestGame time=1397160655286 Redmove=2,2
id=TestGame time=1397160656289 Greenmove=2,1
id=TestGame time=1397160657293 Redmove=1,1
id=TestGame time=1397160658296 Greenmove=7,5
id=TestGame time=1397160659300 Redmove=6,5
id=TestGame time=1397160660304 Greenmove=7,1
id=TestGame time=1397160661307 Redmove=7,3
id=TestGame time=1397160662315 Green failed: NullPointerException: null
id=TestGame time=1397160699369 new game
id=TestGame time=1397160699369 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397160699666 initialized
id=TestGame time=1397160700728 Redmove=6,3
id=TestGame time=1397160701738 Greenmove=5,3
id=TestGame time=1397160702741 Redmove=6,4
id=TestGame time=1397160703745 Greenmove=3,3
id=TestGame time=1397160704748 Redmove=3,4
id=TestGame time=1397160705752 Greenmove=3,5
id=TestGame time=1397160706755 Redmove=4,2
id=TestGame time=1397160707758 Greenmove=5,1
id=TestGame time=1397160708762 Redmove=3,1
id=TestGame time=1397160709765 Greenmove=6,2
id=TestGame time=1397160709987 quit button pressed
id=TestGame time=1397160713729 quit button pressed
id=TestGame time=1397160725325 new game
id=TestGame time=1397160725325 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397160725638 initialized
id=TestGame time=1397160726700 Redmove=6,3
id=TestGame time=1397160748024 Greenmove=5,3
id=TestGame time=1397160749036 Redmove=6,4
id=TestGame time=1397160759649 Greenmove=3,3
id=TestGame time=1397160760661 Redmove=3,4
id=TestGame time=1397160768962 Greenmove=3,5
id=TestGame time=1397160769969 Redmove=4,2
id=TestGame time=1397160771801 Greenmove=5,1
id=TestGame time=1397160772811 Redmove=3,1
id=TestGame time=1397160774517 Greenmove=6,2
id=TestGame time=1397160775533 Redmove=4,3
id=TestGame time=1397160776787 Greenmove=5,2
id=TestGame time=1397160777803 Redmove=2,4
id=TestGame time=1397160779807 Greenmove=4,1
id=TestGame time=1397160780816 Redmove=6,1
id=TestGame time=1397160782351 Greenmove=2,3
id=TestGame time=1397160783368 Redmove=3,2
id=TestGame time=1397160784996 Greenmove=1,4
id=TestGame time=1397160786010 Redmove=2,2
id=TestGame time=1397160787654 Greenmove=2,1
id=TestGame time=1397160788660 Redmove=1,1
id=TestGame time=1397160791617 Greenmove=7,5
id=TestGame time=1397160792632 Redmove=6,5
id=TestGame time=1397160794918 Greenmove=7,1
id=TestGame time=1397160795928 Redmove=7,3
id=TestGame time=1397160801258 Green failed: NullPointerException: null
id=TestGame time=1397160810542 new game
id=TestGame time=1397160810542 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397160810870 initialized
id=TestGame time=1397160811933 Redmove=6,3
id=TestGame time=1397160816271 Greenmove=5,3
id=TestGame time=1397160817287 Redmove=6,4
id=TestGame time=1397160818525 Greenmove=3,3
id=TestGame time=1397160819532 Redmove=3,4
id=TestGame time=1397160820786 Greenmove=3,5
id=TestGame time=1397160821796 Redmove=4,2
id=TestGame time=1397160823206 Greenmove=5,1
id=TestGame time=1397160824219 Redmove=3,1
id=TestGame time=1397160825911 Greenmove=6,2
id=TestGame time=1397160826926 Redmove=4,3
id=TestGame time=1397160828305 Greenmove=5,2
id=TestGame time=1397160829314 Redmove=2,4
id=TestGame time=1397160830755 Greenmove=4,1
id=TestGame time=1397160831758 Redmove=6,1
id=TestGame time=1397160834450 Greenmove=2,3
id=TestGame time=1397160835452 Redmove=3,2
id=TestGame time=1397160837299 Greenmove=1,4
id=TestGame time=1397160838310 Redmove=2,2
id=TestGame time=1397160840001 Greenmove=2,1
id=TestGame time=1397160841008 Redmove=1,1
id=TestGame time=1397160844903 Greenmove=7,5
id=TestGame time=1397160845919 Redmove=6,5
id=TestGame time=1397160847064 Greenmove=7,1
id=TestGame time=1397160848074 Redmove=7,3
id=TestGame time=1397160939003 new game
id=TestGame time=1397160939018 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397160939331 initialized
id=TestGame time=1397160940393 Redmove=6,3
id=TestGame time=1397160941670 Greenmove=5,3
id=TestGame time=1397160942678 Redmove=6,4
id=TestGame time=1397160944103 Greenmove=3,3
id=TestGame time=1397160945119 Redmove=3,4
id=TestGame time=1397160947091 Greenmove=3,5
id=TestGame time=1397160948093 Redmove=4,2
id=TestGame time=1397160949722 Greenmove=5,1
id=TestGame time=1397160950735 Redmove=3,1
id=TestGame time=1397160952317 Greenmove=6,2
id=TestGame time=1397160953323 Redmove=4,3
id=TestGame time=1397160955030 Greenmove=5,2
id=TestGame time=1397160956036 Redmove=2,4
id=TestGame time=1397160957524 Greenmove=4,1
id=TestGame time=1397160958535 Redmove=6,1
id=TestGame time=1397160959789 Greenmove=2,3
id=TestGame time=1397160960798 Redmove=3,2
id=TestGame time=1397160963129 Greenmove=1,4
id=TestGame time=1397160964138 Redmove=2,2
id=TestGame time=1397160965360 Greenmove=2,1
id=TestGame time=1397160966374 Redmove=1,1
id=TestGame time=1397160968332 Greenmove=7,5
id=TestGame time=1397160969335 Redmove=6,5
id=TestGame time=1397160971167 Greenmove=7,1
id=TestGame time=1397160972169 Redmove=7,3
id=TestGame time=1397161013159 new game
id=TestGame time=1397161013159 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397161013471 initialized
id=TestGame time=1397161013737 Redmove=6,3
id=TestGame time=1397161013956 Greenmove=5,3
id=TestGame time=1397161014162 Redmove=6,4
id=TestGame time=1397161014365 Greenmove=3,3
id=TestGame time=1397161014568 Redmove=3,4
id=TestGame time=1397161014772 Greenmove=3,5
id=TestGame time=1397161014975 Redmove=4,2
id=TestGame time=1397161015181 Greenmove=5,1
id=TestGame time=1397161015384 Redmove=3,1
id=TestGame time=1397161015588 Greenmove=6,2
id=TestGame time=1397161015791 Redmove=4,3
id=TestGame time=1397161015994 Greenmove=5,2
id=TestGame time=1397161016200 Redmove=2,4
id=TestGame time=1397161016403 Greenmove=4,1
id=TestGame time=1397161016606 Redmove=6,1
id=TestGame time=1397161016810 Greenmove=2,3
id=TestGame time=1397161017013 Redmove=3,2
id=TestGame time=1397161017219 Greenmove=1,4
id=TestGame time=1397161017422 Redmove=2,2
id=TestGame time=1397161017625 Greenmove=2,1
id=TestGame time=1397161017828 Redmove=1,1
id=TestGame time=1397161018032 Greenmove=7,5
id=TestGame time=1397161018222 quit button pressed
id=TestGame time=1397161018238 Redmove=6,5
id=TestGame time=1397161022949 new game
id=TestGame time=1397161022949 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397161023261 initialized
id=TestGame time=1397161023527 Redmove=6,3
id=TestGame time=1397161027636 Greenmove=5,3
id=TestGame time=1397161027842 Redmove=6,4
id=TestGame time=1397161028373 Greenmove=3,3
id=TestGame time=1397161028592 Redmove=3,4
id=TestGame time=1397161029248 Greenmove=3,5
id=TestGame time=1397161029464 Redmove=4,2
id=TestGame time=1397161030120 Greenmove=5,1
id=TestGame time=1397161030339 Redmove=3,1
id=TestGame time=1397161030920 Greenmove=6,2
id=TestGame time=1397161031123 Redmove=4,3
id=TestGame time=1397161031733 Greenmove=5,2
id=TestGame time=1397161031941 Redmove=2,4
id=TestGame time=1397161032644 Greenmove=4,1
id=TestGame time=1397161032863 Redmove=6,1
id=TestGame time=1397161033742 Greenmove=2,3
id=TestGame time=1397161033961 Redmove=3,2
id=TestGame time=1397161034496 Greenmove=1,4
id=TestGame time=1397161034715 Redmove=2,2
id=TestGame time=1397161035527 Greenmove=2,1
id=TestGame time=1397161035732 Redmove=1,1
id=TestGame time=1397161036717 Greenmove=7,5
id=TestGame time=1397161036925 Redmove=6,5
id=TestGame time=1397161037441 Greenmove=7,1
id=TestGame time=1397161037644 Redmove=7,3
id=TestGame time=1397161911841 new game
id=TestGame time=1397161911841 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397161912153 initialized
id=TestGame time=1397161912403 Redmove=6,3
id=TestGame time=1397161916560 Greenmove=5,3
id=TestGame time=1397161916773 Redmove=6,4
id=TestGame time=1397161917117 Greenmove=3,3
id=TestGame time=1397161917336 Redmove=3,4
id=TestGame time=1397161917804 Greenmove=3,5
id=TestGame time=1397161918016 Redmove=4,2
id=TestGame time=1397161918359 Greenmove=5,1
id=TestGame time=1397161918578 Redmove=3,1
id=TestGame time=1397161919516 Greenmove=6,2
id=TestGame time=1397161919725 Redmove=4,3
id=TestGame time=1397161920179 Greenmove=5,2
id=TestGame time=1397161920397 Redmove=4,6
id=TestGame time=1397161920851 Greenmove=3,6
id=TestGame time=1397161921060 Redmove=2,5
id=TestGame time=1397161921529 Greenmove=3,2
id=TestGame time=1397161921747 Redmove=4,1
id=TestGame time=1397161922951 Greenmove=5,6
id=TestGame time=1397161923165 Redmove=5,7
id=TestGame time=1397161923649 Greenmove=1,4
id=TestGame time=1397161923852 Redmove=6,1
id=TestGame time=1397161924447 Green failed: NullPointerException: null
id=TestGame time=1397161938948 new game
id=TestGame time=1397161938948 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397161939261 initialized
id=TestGame time=1397161939526 Redmove=6,3
id=TestGame time=1397161940714 Greenmove=5,3
id=TestGame time=1397161940928 Redmove=6,4
id=TestGame time=1397161941850 Greenmove=3,3
id=TestGame time=1397161942058 Redmove=3,4
id=TestGame time=1397161943042 Greenmove=3,5
id=TestGame time=1397161943250 Redmove=4,2
id=TestGame time=1397161944406 Greenmove=5,1
id=TestGame time=1397161944626 Redmove=3,1
id=TestGame time=1397161945704 Greenmove=6,2
id=TestGame time=1397161945914 Redmove=4,3
id=TestGame time=1397161946805 Greenmove=5,2
id=TestGame time=1397161947020 Redmove=4,6
id=TestGame time=1397161947707 Greenmove=3,6
id=TestGame time=1397161947926 Redmove=2,5
id=TestGame time=1397161951071 Greenmove=3,2
id=TestGame time=1397161951285 Redmove=4,1
id=TestGame time=1397161955145 Greenmove=5,6
id=TestGame time=1397161955354 Redmove=5,7
id=TestGame time=1397161956323 Greenmove=1,4
id=TestGame time=1397161956530 Redmove=6,1
id=TestGame time=1397161957559 Green failed: NullPointerException: null
id=TestGame time=1397161964060 new game
id=TestGame time=1397161964060 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397161964357 initialized
id=TestGame time=1397161964607 Redmove=6,3
id=TestGame time=1397161967701 Greenmove=5,3
id=TestGame time=1397161967907 Redmove=6,4
id=TestGame time=1397161968329 Greenmove=3,3
id=TestGame time=1397161968548 Redmove=3,4
id=TestGame time=1397161968891 Greenmove=3,5
id=TestGame time=1397161969103 Redmove=4,2
id=TestGame time=1397161969525 Greenmove=5,1
id=TestGame time=1397161969744 Redmove=3,1
id=TestGame time=1397161970869 Greenmove=6,2
id=TestGame time=1397161971074 Redmove=4,3
id=TestGame time=1397161971824 Greenmove=5,2
id=TestGame time=1397161972043 Redmove=4,6
id=TestGame time=1397161972734 Greenmove=3,6
id=TestGame time=1397161972953 Redmove=2,5
id=TestGame time=1397161973750 Greenmove=3,2
id=TestGame time=1397161973967 Redmove=4,1
id=TestGame time=1397161975170 Greenmove=5,6
id=TestGame time=1397161975391 Redmove=5,7
id=TestGame time=1397161977672 Greenmove=1,4
id=TestGame time=1397161977881 Redmove=6,1
id=TestGame time=1397162292191 new game
id=TestGame time=1397162292207 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397162292519 initialized
id=TestGame time=1397162292785 Redmove=6,3
id=TestGame time=1397162294504 Greenmove=5,3
id=TestGame time=1397162294716 Redmove=6,4
id=TestGame time=1397162295231 Greenmove=3,3
id=TestGame time=1397162295450 Redmove=3,4
id=TestGame time=1397162295997 Greenmove=3,5
id=TestGame time=1397162296209 Redmove=4,2
id=TestGame time=1397162296881 Greenmove=7,2
id=TestGame time=1397162297084 Redmove=2,4
id=TestGame time=1397162297681 Greenmove=4,3
id=TestGame time=1397162297884 Redmove=4,6
id=TestGame time=1397162298525 Greenmove=3,1
id=TestGame time=1397162298743 Redmove=5,2
id=TestGame time=1397162299493 Greenmove=4,1
id=TestGame time=1397162299712 Redmove=6,1
id=TestGame time=1397162300356 Greenmove=6,2
id=TestGame time=1397162300575 Redmove=5,1
id=TestGame time=1397162301419 Greenmove=6,5
id=TestGame time=1397162301637 Redmove=7,1
id=TestGame time=1397162302574 Greenmove=3,2
id=TestGame time=1397162302783 Redmove=8,1
id=TestGame time=1397162303564 Greenmove=2,5
id=TestGame time=1397162303783 Redmove=5,6
id=TestGame time=1397162304521 Greenmove=5,7
id=TestGame time=1397162304740 Redmove=6,6
id=TestGame time=1397162305505 Greenmove=7,3
id=TestGame time=1397162305723 Redmove=4,7
id=TestGame time=1397162306504 Greenmove=2,2
id=TestGame time=1397162306708 Redmove=2,1
id=TestGame time=1397162307415 Greenmove=3,7
id=TestGame time=1397162307634 Redmove=3,6
id=TestGame time=1397162308446 Greenmove=1,3
id=TestGame time=1397162308656 Redmove=4,8
id=TestGame time=1397162309406 Greenmove=8,2
id=TestGame time=1397162309625 Redmove=8,3
id=TestGame time=1397162310332 Greenmove=7,4
id=TestGame time=1397162310550 Redmove=2,6
id=TestGame time=1397162311301 Greenmove=2,7
id=TestGame time=1397162311517 Redmove=1,4
id=TestGame time=1397162312252 Greenmove=7,6
id=TestGame time=1397162312470 Redmove=1,5
id=TestGame time=1397162313146 Greenmove=1,6
id=TestGame time=1397162313380 Redmove=7,5
id=TestGame time=1397162314068 Greenmove=8,5
id=TestGame time=1397162314283 Redmove=8,4
id=TestGame time=1397162314970 Greenmove=2,3
id=TestGame time=1397162315189 Redmove=7,7
id=TestGame time=1397162315942 Greenmove=8,7
id=TestGame time=1397162316146 Redmove=8,6
id=TestGame time=1397162316849 Greenmove=2,8
id=TestGame time=1397162317059 Redmove=1,1
id=TestGame time=1397162317856 Greenmove=3,8
id=TestGame time=1397162318074 Redmove=8,8
id=TestGame time=1397162318964 Greenmove=5,8
id=TestGame time=1397162319173 Red failed: NullPointerException: null
id=TestGame time=1397162328346 quit button pressed
id=TestGame time=1397164453995 new game
id=TestGame time=1397164453995 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397164454323 initialized
id=TestGame time=1397164454589 Redmove=6,3
id=TestGame time=1397164454808 Greenmove=5,3
id=TestGame time=1397164455014 Redmove=6,4
id=TestGame time=1397164455217 Greenmove=3,3
id=TestGame time=1397164455420 Redmove=3,4
id=TestGame time=1397164455623 Greenmove=3,5
id=TestGame time=1397164455827 Redmove=4,3
id=TestGame time=1397164456033 Greenmove=4,2
id=TestGame time=1397164456237 Redmove=2,6
id=TestGame time=1397164456440 Greenmove=2,5
id=TestGame time=1397164456643 Redmove=2,4
id=TestGame time=1397164456846 Greenmove=1,6
id=TestGame time=1397164457053 Redmove=3,2
id=TestGame time=1397164457256 Greenmove=3,1
id=TestGame time=1397164457459 Redmove=2,1
id=TestGame time=1397164457662 Greenmove=2,2
id=TestGame time=1397164457865 Redmove=4,1
id=TestGame time=1397164458072 Greenmove=1,5
id=TestGame time=1397164458275 Redmove=3,6
id=TestGame time=1397164458478 Greenmove=5,2
id=TestGame time=1397164458681 Redmove=1,4
id=TestGame time=1397164458884 Greenmove=1,3
id=TestGame time=1397164459091 Redmove=6,2
id=TestGame time=1397164459294 Greenmove=2,3
id=TestGame time=1397164459497 Redmove=5,1
id=TestGame time=1397164459700 Greenmove=6,1
id=TestGame time=1397164459903 Redmove=1,2
id=TestGame time=1397164460110 Greenmove=1,1
id=TestGame time=1397164460313 Redmove=4,6
id=TestGame time=1397164460516 Greenmove=1,7
id=TestGame time=1397164460719 Redmove=2,7
id=TestGame time=1397164460922 Greenmove=6,6
id=TestGame time=1397164461129 Redmove=5,6
id=TestGame time=1397164461333 Greenmove=6,7
id=TestGame time=1397164461536 Redmove=5,7
id=TestGame time=1397164461739 Greenmove=7,1
id=TestGame time=1397164461942 Redmove=7,8
id=TestGame time=1397164462149 Greenmove=5,8
id=TestGame time=1397164462352 Redmove=4,7
id=TestGame time=1397164462555 Greenmove=4,8
id=TestGame time=1397164462758 Redmove=3,7
id=TestGame time=1397164462961 Greenmove=1,8
id=TestGame time=1397164463169 Redmove=2,8
id=TestGame time=1397164463388 Greenmove=3,8
id=TestGame time=1397164463591 Redmove=6,5
id=TestGame time=1397164463794 Greenmove=7,2
id=TestGame time=1397164463998 Redmove=8,2
id=TestGame time=1397164464204 Greenmove=8,1
id=TestGame time=1397164464407 Redmove=7,3
id=TestGame time=1397164464610 Greenmove=8,4
id=TestGame time=1397164464813 Redmove=8,3
id=TestGame time=1397164465016 Greenmove=7,4
id=TestGame time=1397164465223 Redmove=8,5
id=TestGame time=1397164465426 Greenmove=8,6
id=TestGame time=1397164465629 Redmove=7,6
id=TestGame time=1397164465832 Greenmove=7,5
id=TestGame time=1397164466035 Redmove=6,8
id=TestGame time=1397164466242 Greenmove=8,7
id=TestGame time=1397164466448 Red failed: NullPointerException: null
id=TestGame time=1397164474417 quit button pressed
id=TestGame time=1397164561593 new game
id=TestGame time=1397164561593 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397164561921 initialized
id=TestGame time=1397164562187 Redmove=6,3
id=TestGame time=1397164572812 Greenmove=5,3
id=TestGame time=1397164573020 Redmove=6,4
id=TestGame time=1397164573223 Greenmove=3,3
id=TestGame time=1397164573426 Redmove=3,4
id=TestGame time=1397164573629 Greenmove=3,5
id=TestGame time=1397164573832 Redmove=4,3
id=TestGame time=1397164574040 Greenmove=4,2
id=TestGame time=1397164574243 Redmove=2,6
id=TestGame time=1397164574446 Greenmove=2,5
id=TestGame time=1397164574649 Redmove=2,4
id=TestGame time=1397164574852 Greenmove=1,6
id=TestGame time=1397164575059 Redmove=3,2
id=TestGame time=1397164575262 Greenmove=3,1
id=TestGame time=1397164575466 Redmove=2,1
id=TestGame time=1397164575669 Greenmove=2,2
id=TestGame time=1397164575872 Redmove=4,1
id=TestGame time=1397164576078 Greenmove=1,5
id=TestGame time=1397164576281 Redmove=3,6
id=TestGame time=1397164576485 Greenmove=5,2
id=TestGame time=1397164576688 Redmove=1,4
id=TestGame time=1397164576891 Greenmove=1,3
id=TestGame time=1397164577098 Redmove=6,2
id=TestGame time=1397164577301 Greenmove=2,3
id=TestGame time=1397164577504 Redmove=5,1
id=TestGame time=1397164577707 Greenmove=6,1
id=TestGame time=1397164577910 Redmove=1,2
id=TestGame time=1397164578117 Greenmove=1,1
id=TestGame time=1397164578320 Redmove=4,6
id=TestGame time=1397164578523 Greenmove=1,7
id=TestGame time=1397164578726 Redmove=2,7
id=TestGame time=1397164578929 Greenmove=6,6
id=TestGame time=1397164579136 Redmove=5,6
id=TestGame time=1397164579339 Greenmove=6,7
id=TestGame time=1397164579542 Redmove=5,7
id=TestGame time=1397164579745 Greenmove=7,1
id=TestGame time=1397164579948 Redmove=7,8
id=TestGame time=1397164580155 Greenmove=5,8
id=TestGame time=1397164580358 Redmove=4,7
id=TestGame time=1397164580561 Greenmove=4,8
id=TestGame time=1397164580764 Redmove=3,7
id=TestGame time=1397164580967 Greenmove=1,8
id=TestGame time=1397164581190 Redmove=2,8
id=TestGame time=1397164581393 Greenmove=3,8
id=TestGame time=1397164581596 Redmove=6,5
id=TestGame time=1397164581799 Greenmove=7,2
id=TestGame time=1397164582002 Redmove=8,2
id=TestGame time=1397164582209 Greenmove=8,1
id=TestGame time=1397164582412 Redmove=7,3
id=TestGame time=1397164582615 Greenmove=8,4
id=TestGame time=1397164582818 Redmove=8,3
id=TestGame time=1397164583022 Greenmove=7,4
id=TestGame time=1397164583228 Redmove=8,5
id=TestGame time=1397164583431 Greenmove=8,6
id=TestGame time=1397164583634 Redmove=7,6
id=TestGame time=1397164583837 Greenmove=7,5
id=TestGame time=1397164584040 Redmove=6,8
id=TestGame time=1397164584247 Greenmove=8,7
id=TestGame time=1397164584453 Red failed: NullPointerException: null
id=TestGame time=1397164670551 quit button pressed
id=TestGame time=1397164710428 new game
id=TestGame time=1397164710428 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397164710788 initialized
id=TestGame time=1397164715507 Redmove=6,3
id=TestGame time=1397164715793 Greenmove=5,3
id=TestGame time=1397164716011 Redmove=6,4
id=TestGame time=1397164716183 Greenmove=3,3
id=TestGame time=1397164716480 Redmove=3,4
id=TestGame time=1397164716777 Greenmove=3,5
id=TestGame time=1397164717089 Redmove=4,3
id=TestGame time=1397164717386 Greenmove=4,2
id=TestGame time=1397164717683 Redmove=2,6
id=TestGame time=1397164718339 Greenmove=2,5
id=TestGame time=1397164718545 Redmove=2,4
id=TestGame time=1397164718670 Greenmove=1,6
id=TestGame time=1397164718873 Redmove=3,2
id=TestGame time=1397164718998 Greenmove=3,1
id=TestGame time=1397164719201 Redmove=2,1
id=TestGame time=1397164719326 Greenmove=2,2
id=TestGame time=1397164719545 Redmove=4,1
id=TestGame time=1397164719682 Greenmove=1,5
id=TestGame time=1397164719792 Redmove=3,6
id=TestGame time=1397164720011 Greenmove=5,2
id=TestGame time=1397164720151 Redmove=1,4
id=TestGame time=1397164720354 Greenmove=1,3
id=TestGame time=1397164720464 Redmove=6,2
id=TestGame time=1397164720682 Greenmove=2,3
id=TestGame time=1397164720818 Redmove=5,1
id=TestGame time=1397164720896 Greenmove=6,1
id=TestGame time=1397164721114 Redmove=1,2
id=TestGame time=1397164721239 Greenmove=1,1
id=TestGame time=1397164721458 Redmove=4,6
id=TestGame time=1397164721583 Greenmove=1,7
id=TestGame time=1397164722052 Redmove=2,7
id=TestGame time=1397164722234 Greenmove=6,6
id=TestGame time=1397164722562 Redmove=5,6
id=TestGame time=1397164722734 Greenmove=6,7
id=TestGame time=1397164723077 Redmove=5,7
id=TestGame time=1397164723327 Greenmove=7,1
id=TestGame time=1397164723671 Redmove=7,8
id=TestGame time=1397164723905 Greenmove=5,8
id=TestGame time=1397164724109 Redmove=4,7
id=TestGame time=1397164724369 Greenmove=4,8
id=TestGame time=1397164724619 Redmove=3,7
id=TestGame time=1397164724869 Greenmove=1,8
id=TestGame time=1397164725119 Redmove=2,8
id=TestGame time=1397164725407 Greenmove=3,8
id=TestGame time=1397164725704 Redmove=6,5
id=TestGame time=1397164726017 Greenmove=7,2
id=TestGame time=1397164726360 Redmove=8,2
id=TestGame time=1397164726694 Greenmove=8,1
id=TestGame time=1397164727053 Redmove=7,3
id=TestGame time=1397164727413 Greenmove=8,4
id=TestGame time=1397164727747 Redmove=8,3
id=TestGame time=1397164728138 Greenmove=7,4
id=TestGame time=1397164728544 Redmove=8,5
id=TestGame time=1397164728974 Greenmove=8,6
id=TestGame time=1397164729505 Redmove=7,6
id=TestGame time=1397164730083 Greenmove=7,5
id=TestGame time=1397164782325 new game
id=TestGame time=1397164782325 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397164782653 initialized
id=TestGame time=1397164785810 Redmove=6,3
id=TestGame time=1397164786303 Greenmove=5,3
id=TestGame time=1397164786397 Redmove=6,4
id=TestGame time=1397164786538 Greenmove=3,3
id=TestGame time=1397164786788 Redmove=3,4
id=TestGame time=1397164787007 Greenmove=3,5
id=TestGame time=1397164787119 Redmove=4,3
id=TestGame time=1397164787291 Greenmove=4,2
id=TestGame time=1397164787447 Redmove=2,6
id=TestGame time=1397164787682 Greenmove=2,5
id=TestGame time=1397164787869 Redmove=2,4
id=TestGame time=1397164788057 Greenmove=1,6
id=TestGame time=1397164788214 Redmove=3,2
id=TestGame time=1397164788323 Greenmove=3,1
id=TestGame time=1397164788542 Redmove=2,1
id=TestGame time=1397164788729 Greenmove=2,2
id=TestGame time=1397164788964 Redmove=4,1
id=TestGame time=1397164789073 Greenmove=1,5
id=TestGame time=1397164789166 Redmove=3,6
id=TestGame time=1397164789401 Greenmove=5,2
id=TestGame time=1397164789588 Redmove=1,4
id=TestGame time=1397164789697 Greenmove=1,3
id=TestGame time=1397164789901 Redmove=6,2
id=TestGame time=1397164789994 Greenmove=2,3
id=TestGame time=1397164790244 Redmove=5,1
id=TestGame time=1397164790448 Greenmove=6,1
id=TestGame time=1397164790542 Redmove=1,2
id=TestGame time=1397164790714 Greenmove=1,1
id=TestGame time=1397164790964 Redmove=4,6
id=TestGame time=1397164791167 Greenmove=1,7
id=TestGame time=1397164791276 Redmove=2,7
id=TestGame time=1397164791458 Greenmove=6,6
id=TestGame time=1397164791568 Redmove=5,6
id=TestGame time=1397164791802 Greenmove=6,7
id=TestGame time=1397164792005 Redmove=5,7
id=TestGame time=1397164792099 Greenmove=7,1
id=TestGame time=1397164792286 Redmove=7,8
id=TestGame time=1397164792861 Greenmove=5,8
id=TestGame time=1397164793111 Redmove=4,7
id=TestGame time=1397164793298 Greenmove=4,8
id=TestGame time=1397164793552 Redmove=3,7
id=TestGame time=1397164793739 Greenmove=1,8
id=TestGame time=1397164794020 Redmove=2,8
id=TestGame time=1397164794255 Greenmove=3,8
id=TestGame time=1397164794567 Redmove=6,5
id=TestGame time=1397164794932 Greenmove=7,2
id=TestGame time=1397164795338 Redmove=8,2
id=TestGame time=1397164795744 Greenmove=8,1
id=TestGame time=1397164796126 Redmove=7,3
id=TestGame time=1397164796501 Greenmove=8,4
id=TestGame time=1397164796860 Redmove=8,3
id=TestGame time=1397164797272 Greenmove=7,4
id=TestGame time=1397164797710 Redmove=8,5
id=TestGame time=1397164798116 Greenmove=8,6
id=TestGame time=1397164798556 Redmove=7,6
id=TestGame time=1397164799040 Greenmove=7,5
id=TestGame time=1397164940422 Redmove=6,8
id=TestGame time=1397165116735 Greenmove=8,7
id=TestGame time=1397165150693 new game
id=TestGame time=1397165150693 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397165151005 initialized
id=TestGame time=1397165158052 Redmove=6,3
id=TestGame time=1397165158118 Greenmove=5,3
id=TestGame time=1397165158180 Redmove=6,4
id=TestGame time=1397165158243 Greenmove=3,3
id=TestGame time=1397165158305 Redmove=3,4
id=TestGame time=1397165158368 Greenmove=3,5
id=TestGame time=1397165158430 Redmove=4,3
id=TestGame time=1397165158493 Greenmove=4,2
id=TestGame time=1397165158555 Redmove=2,6
id=TestGame time=1397165158618 Greenmove=2,5
id=TestGame time=1397165158680 Redmove=2,4
id=TestGame time=1397165158743 Greenmove=1,6
id=TestGame time=1397165158805 Redmove=3,2
id=TestGame time=1397165158868 Greenmove=3,1
id=TestGame time=1397165158930 Redmove=2,1
id=TestGame time=1397165158993 Greenmove=2,2
id=TestGame time=1397165159055 Redmove=4,1
id=TestGame time=1397165159121 Greenmove=1,5
id=TestGame time=1397165159184 Redmove=3,6
id=TestGame time=1397165159246 Greenmove=5,2
id=TestGame time=1397165159309 Redmove=1,4
id=TestGame time=1397165159387 Greenmove=1,3
id=TestGame time=1397165159449 Redmove=6,2
id=TestGame time=1397165159512 Greenmove=2,3
id=TestGame time=1397165159574 Redmove=5,1
id=TestGame time=1397165159637 Greenmove=6,1
id=TestGame time=1397165159715 Redmove=1,2
id=TestGame time=1397165159777 Greenmove=1,1
id=TestGame time=1397165159840 Redmove=4,6
id=TestGame time=1397165159902 Greenmove=1,7
id=TestGame time=1397165159965 Redmove=2,7
id=TestGame time=1397165160027 Greenmove=6,6
id=TestGame time=1397165160090 Redmove=5,6
id=TestGame time=1397165160156 Greenmove=6,7
id=TestGame time=1397165160218 Redmove=5,7
id=TestGame time=1397165160281 Greenmove=7,1
id=TestGame time=1397165160343 Redmove=7,8
id=TestGame time=1397165160406 Greenmove=5,8
id=TestGame time=1397165160468 Redmove=4,7
id=TestGame time=1397165160531 Greenmove=4,8
id=TestGame time=1397165160593 Redmove=3,7
id=TestGame time=1397165160656 Greenmove=1,8
id=TestGame time=1397165160734 Redmove=2,8
id=TestGame time=1397165160796 Greenmove=3,8
id=TestGame time=1397165160859 Redmove=6,5
id=TestGame time=1397165160921 Greenmove=7,2
id=TestGame time=1397165160984 Redmove=8,2
id=TestGame time=1397165161046 Greenmove=8,1
id=TestGame time=1397165161109 Redmove=7,3
id=TestGame time=1397165161174 Greenmove=8,4
id=TestGame time=1397165161237 Redmove=8,3
id=TestGame time=1397165161299 Greenmove=7,4
id=TestGame time=1397165161362 Redmove=8,5
id=TestGame time=1397165161424 Greenmove=8,6
id=TestGame time=1397165161487 Redmove=7,6
id=TestGame time=1397165161549 Greenmove=7,5
id=TestGame time=1397165161612 Redmove=6,8
id=TestGame time=1397165161674 Greenmove=8,7
id=TestGame time=1397165161737 Redmove=null
id=TestGame time=1397165161799 Greenmove=7,7
id=TestGame time=1397165161862 Redmove=null
id=TestGame time=1397165161924 Greenmove=8,8
id=TestGame time=1397165161924 finished reds=9 greens=55
id=TestGame time=1397165183238 new game
id=TestGame time=1397165183238 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397165183597 initialized
id=TestGame time=1397165183707 Redmove=6,3
id=TestGame time=1397165183816 Greenmove=3,3
id=TestGame time=1397165183878 Redmove=3,4
id=TestGame time=1397165183957 Greenmove=3,5
id=TestGame time=1397165184376 Redmove=2,2
id=TestGame time=1397165184454 Greenmove=1,1
id=TestGame time=1397165184532 Redmove=2,4
id=TestGame time=1397165184610 Greenmove=1,3
id=TestGame time=1397165184704 Redmove=1,4
id=TestGame time=1397165184782 Greenmove=1,5
id=TestGame time=1397165184860 Redmove=2,6
id=TestGame time=1397165184969 Greenmove=2,3
id=TestGame time=1397165185038 Redmove=3,2
id=TestGame time=1397165185225 Greenmove=4,3
id=TestGame time=1397165185319 Redmove=1,2
id=TestGame time=1397165185569 Greenmove=4,1
id=TestGame time=1397165185741 Redmove=2,5
id=TestGame time=1397165185882 Greenmove=1,6
id=TestGame time=1397165186007 Redmove=3,1
id=TestGame time=1397165186225 Greenmove=2,1
id=TestGame time=1397165186319 Redmove=1,7
id=TestGame time=1397165186412 Greenmove=1,8
id=TestGame time=1397165186491 Redmove=3,6
id=TestGame time=1397165186600 Greenmove=2,7
id=TestGame time=1397165186678 Redmove=5,2
id=TestGame time=1397165186834 Greenmove=3,7
id=TestGame time=1397165186913 Redmove=5,6
id=TestGame time=1397165187053 Greenmove=4,2
id=TestGame time=1397165187119 Redmove=null
id=TestGame time=1397165187213 Greenmove=4,6
id=TestGame time=1397165187276 Redmove=2,8
id=TestGame time=1397165187432 Greenmove=4,8
id=TestGame time=1397165187494 Redmove=null
id=TestGame time=1397165187588 Greenmove=3,8
id=TestGame time=1397165187666 Redmove=null
id=TestGame time=1397165187760 Greenmove=4,7
id=TestGame time=1397165187822 Redmove=null
id=TestGame time=1397165187901 Greenmove=6,1
id=TestGame time=1397165187963 Redmove=null
id=TestGame time=1397165188026 Greenmove=6,4
id=TestGame time=1397165188088 Redmove=6,5
id=TestGame time=1397165188154 Greenmove=7,3
id=TestGame time=1397165188232 Redmove=5,3
id=TestGame time=1397165188295 quit button pressed
id=TestGame time=1397165188305 Greenmove=7,2
id=TestGame time=1397165188367 Redmove=5,1
id=TestGame time=1397165188424 Greenmove=5,7
id=TestGame time=1397165188486 Redmove=7,4
id=TestGame time=1397165188549 Greenmove=6,2
id=TestGame time=1397165188611 Redmove=5,8
id=TestGame time=1397165188674 Greenmove=7,6
id=TestGame time=1397165188752 Redmove=8,3
id=TestGame time=1397165188815 Greenmove=6,7
id=TestGame time=1397165188877 Redmove=6,6
id=TestGame time=1397165188940 Greenmove=6,8
id=TestGame time=1397165189002 Redmove=8,2
id=TestGame time=1397165189065 Greenmove=7,1
id=TestGame time=1397165189127 Redmove=8,1
id=TestGame time=1397165189193 Greenmove=8,4
id=TestGame time=1397165189255 Redmove=7,5
id=TestGame time=1397165189318 Greenmove=8,5
id=TestGame time=1397165189380 Redmove=7,7
id=TestGame time=1397165189443 Greenmove=8,8
id=TestGame time=1397165189505 Redmove=7,8
id=TestGame time=1397165189568 Greenmove=8,7
id=TestGame time=1397165189630 Redmove=8,6
id=TestGame time=1397165189693 Greenmove=null
id=TestGame time=1397165189693 finished reds=14 greens=50
id=TestGame time=1397165192224 quit button pressed
id=TestGame time=1397165203805 new game
id=TestGame time=1397165203805 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397165204148 initialized
id=TestGame time=1397165204273 Redmove=6,3
id=TestGame time=1397165204367 Greenmove=3,3
id=TestGame time=1397165204430 Redmove=3,4
id=TestGame time=1397165204523 Greenmove=3,5
id=TestGame time=1397165205080 Redmove=2,2
id=TestGame time=1397165205158 Greenmove=1,1
id=TestGame time=1397165205236 Redmove=2,4
id=TestGame time=1397165205314 Greenmove=1,3
id=TestGame time=1397165205424 Redmove=3,2
id=TestGame time=1397165205533 Greenmove=2,3
id=TestGame time=1397165205638 Redmove=1,2
id=TestGame time=1397165205732 Greenmove=2,1
id=TestGame time=1397165205810 Redmove=1,4
id=TestGame time=1397165205950 Greenmove=1,5
id=TestGame time=1397165206029 Redmove=2,6
id=TestGame time=1397165206310 Greenmove=2,5
id=TestGame time=1397165206388 Redmove=4,6
id=TestGame time=1397165207076 Greenmove=4,1
id=TestGame time=1397165207146 Redmove=3,1
id=TestGame time=1397165207490 Greenmove=1,7
id=TestGame time=1397165207568 Redmove=1,6
id=TestGame time=1397165207880 Greenmove=3,6
id=TestGame time=1397165207943 Redmove=1,8
id=TestGame time=1397165208099 Greenmove=4,2
id=TestGame time=1397165208184 Redmove=5,1
id=TestGame time=1397165208325 Greenmove=4,3
id=TestGame time=1397165208419 Redmove=5,3
id=TestGame time=1397165209387 Greenmove=6,1
id=TestGame time=1397165209466 Redmove=5,2
id=TestGame time=1397165209747 Greenmove=6,2
id=TestGame time=1397165209825 Redmove=2,7
id=TestGame time=1397165209966 Greenmove=2,8
id=TestGame time=1397165210044 Redmove=3,7
id=TestGame time=1397165210185 Greenmove=4,8
id=TestGame time=1397165210263 Redmove=4,7
id=TestGame time=1397165210357 Greenmove=3,8
id=TestGame time=1397165210435 Redmove=7,1
id=TestGame time=1397165210598 Greenmove=7,2
id=TestGame time=1397165210692 Redmove=5,6
id=TestGame time=1397165210786 Greenmove=5,8
id=TestGame time=1397165210848 Redmove=5,7
id=TestGame time=1397165210927 Greenmove=6,4
id=TestGame time=1397165211005 Redmove=8,1
id=TestGame time=1397165211114 Greenmove=6,8
id=TestGame time=1397165211177 Redmove=6,5
id=TestGame time=1397165211270 Greenmove=7,3
id=TestGame time=1397165211349 Redmove=6,7
id=TestGame time=1397165211427 Greenmove=7,4
id=TestGame time=1397165211505 Redmove=6,6
id=TestGame time=1397165211570 Greenmove=7,6
id=TestGame time=1397165211648 Redmove=7,7
id=TestGame time=1397165211726 Greenmove=8,2
id=TestGame time=1397165211789 Redmove=8,3
id=TestGame time=1397165211851 Greenmove=8,6
id=TestGame time=1397165211914 Redmove=7,8
id=TestGame time=1397165211976 Greenmove=8,4
id=TestGame time=1397165212039 Redmove=8,5
id=TestGame time=1397165212101 Greenmove=8,7
id=TestGame time=1397165212164 Redmove=7,5
id=TestGame time=1397165212226 Greenmove=8,8
id=TestGame time=1397165212226 finished reds=31 greens=33
id=TestGame time=1397165218289 quit button pressed
id=TestGame time=1397165223633 new game
id=TestGame time=1397165223633 red=manuelsreversiplayer.Reversiplayer green=manuelsreversiplayer.Reversiplayer
id=TestGame time=1397165223977 initialized
id=TestGame time=1397165224102 Redmove=6,3
id=TestGame time=1397165224258 Greenmove=3,3
id=TestGame time=1397165224352 Redmove=3,4
id=TestGame time=1397165224504 Greenmove=3,5
id=TestGame time=1397165225051 Redmove=2,2
id=TestGame time=1397165225129 Greenmove=1,1
id=TestGame time=1397165225269 Redmove=2,4
id=TestGame time=1397165225363 Greenmove=1,3
id=TestGame time=1397165225510 Redmove=1,4
id=TestGame time=1397165225588 Greenmove=1,5
id=TestGame time=1397165225713 Redmove=3,6
id=TestGame time=1397165225947 Greenmove=2,5
id=TestGame time=1397165226103 Redmove=1,6
id=TestGame time=1397165226713 Greenmove=2,6
id=TestGame time=1397165226858 Redmove=1,7
id=TestGame time=1397165227061 Greenmove=1,8
id=TestGame time=1397165227155 Redmove=2,3
id=TestGame time=1397165227608 Greenmove=1,2
id=TestGame time=1397165227780 Redmove=2,1
id=TestGame time=1397165228662 Greenmove=3,1
id=TestGame time=1397165228740 Redmove=4,2
id=TestGame time=1397165229443 Greenmove=2,7
id=TestGame time=1397165229519 Redmove=4,6
id=TestGame time=1397165230238 Greenmove=3,2
id=TestGame time=1397165230316 Redmove=3,7
id=TestGame time=1397165231238 Greenmove=4,8
id=TestGame time=1397165231317 Redmove=3,8
id=TestGame time=1397165231505 Greenmove=2,8
id=TestGame time=1397165231583 Redmove=5,7
id=TestGame time=1397165232005 Greenmove=4,7
id=TestGame time=1397165232067 Redmove=5,6
id=TestGame time=1397165232442 Greenmove=6,8
id=TestGame time=1397165232513 Redmove=5,8
id=TestGame time=1397165232716 Greenmove=4,3
id=TestGame time=1397165232794 Redmove=7,8
id=TestGame time=1397165233013 Greenmove=8,8
id=TestGame time=1397165233091 Redmove=null
id=TestGame time=1397165233247 Greenmove=6,4
id=TestGame time=1397165233310 Redmove=6,5
id=TestGame time=1397165233747 Greenmove=6,7
id=TestGame time=1397165233815 Redmove=null
id=TestGame time=1397165233924 Greenmove=4,1
id=TestGame time=1397165234002 Redmove=null
id=TestGame time=1397165234065 Greenmove=7,2
id=TestGame time=1397165234127 Redmove=6,2
id=TestGame time=1397165234190 Greenmove=5,2
id=TestGame time=1397165234252 Redmove=6,1
id=TestGame time=1397165234315 Greenmove=7,3
id=TestGame time=1397165234377 Redmove=8,2
id=TestGame time=1397165234440 Greenmove=5,1
id=TestGame time=1397165234518 Redmove=8,3
id=TestGame time=1397165234581 Greenmove=7,1
id=TestGame time=1397165234643 Redmove=null
id=TestGame time=1397165234706 Greenmove=8,1
id=TestGame time=1397165234768 Redmove=5,3
id=TestGame time=1397165234834 Greenmove=6,6
id=TestGame time=1397165234896 Redmove=7,5
id=TestGame time=1397165234959 Greenmove=7,4
id=TestGame time=1397165235021 Redmove=null
id=TestGame time=1397165235084 Greenmove=8,6
id=TestGame time=1397165235146 Redmove=null
id=TestGame time=1397165235209 Greenmove=8,4
id=TestGame time=1397165235271 Redmove=null