-
Notifications
You must be signed in to change notification settings - Fork 14
/
moves
2582 lines (2582 loc) · 176 KB
/
moves
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
#209 0 Kb3-a2 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:6
#209 1 Kb3-c2 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:6
#209 2 Kb3-c4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:6
#209 3 Kb3-a4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:6
#209 4 Kb3-b2 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:6
#209 5 Kb3-a3 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:6
#209 6 Kb3-b4 CURRMOVE_OF_PLY(nbply):5 nr_ghosts:0 current_ply:6
#209 7 Kb3-c3 CURRMOVE_OF_PLY(nbply):4 nr_ghosts:0 current_ply:6
#209 8 16g6-a5 CURRMOVE_OF_PLY(nbply):3 nr_ghosts:0 current_ply:6
#209 9 16g6-a7 CURRMOVE_OF_PLY(nbply):2 nr_ghosts:0 current_ply:6
#209 10 Kb3-a2 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:6
#209 11 Kb3-c2 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:6
#272 12 Kc2-d1 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:7
#272 13 Kc2-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:7
#272 14 Kc2-c1 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:7
#272 15 Kc2-b2 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:7
#272 16 Kc2-c3 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:7
#272 17 Kc2-d2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:7
#272 18 16g6-a5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#272 19 16g6-a7 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#209 20 Kb3-c4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:6
#272 21 Kc4-d3 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:7
#272 22 Kc4-d5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:7
#272 23 Kc4-b5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:7
#272 24 Kc4-c3 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:7
#272 25 Kc4-b4 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:7
#272 26 Kc4-c5 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:7
#272 27 Kc4-d4 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#272 28 16g6-a5 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#272 29 16g6-a7 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#209 30 Kb3-a4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:6
#272 31 Ka4-b5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:7
#272 32 Ka4-a3 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:7
#272 33 Ka4-a5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#272 34 Ka4-b4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#272 35 16g6-a5 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#272 36 16g6-a7 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#209 37 Kb3-b2 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:6
#209 38 Kb3-a3 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:6
#272 39 Ka3-b2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#272 40 Ka3-b4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#272 41 Ka3-a2 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#272 42 Ka3-a4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#272 43 16g6-a5 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:7
#272 44 16g6-a7 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:7
#209 45 Kb3-b4 CURRMOVE_OF_PLY(nbply):5 nr_ghosts:0 current_ply:6
#272 46 Kb4-a3 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:7
#272 47 Kb4-c3 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:7
#272 48 Kb4-c5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#272 49 Kb4-a5 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#272 50 Kb4-a4 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#272 51 Kb4-b5 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#272 52 Kb4-c4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:7
#272 53 16g6-a5 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:7
#272 54 16g6-a7 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:7
#209 55 Kb3-c3 CURRMOVE_OF_PLY(nbply):4 nr_ghosts:0 current_ply:6
#272 56 Kc3-b2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:7
#272 57 Kc3-d2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#272 58 Kc3-d4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#272 59 Kc3-b4 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#272 60 Kc3-c2 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#272 61 Kc3-c4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:7
#272 62 Kc3-d3 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:7
#272 63 16g6-a5 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:7
#272 64 16g6-a7 CURRMOVE_OF_PLY(nbply):5 nr_ghosts:0 current_ply:7
#209 65 16g6-a5 CURRMOVE_OF_PLY(nbply):3 nr_ghosts:0 current_ply:6
#272 66 Kb3-a2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#272 67 Kb3-c2 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#272 68 Kb3-c4 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#272 69 Kb3-a4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#272 70 Kb3-b2 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:7
#272 71 Kb3-a3 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:7
#272 72 Kb3-b4 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:7
#272 73 Kb3-c3 CURRMOVE_OF_PLY(nbply):5 nr_ghosts:0 current_ply:7
#272 74 16a5-g4 CURRMOVE_OF_PLY(nbply):4 nr_ghosts:0 current_ply:7
#209 75 16g6-a7 CURRMOVE_OF_PLY(nbply):2 nr_ghosts:0 current_ply:6
#272 76 Kb3-a2 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#272 77 Kb3-c2 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#272 78 Kb3-c4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#272 79 Kb3-a4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:7
#272 80 Kb3-b2 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:7
#272 81 Kb3-a3 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:7
#272 82 Kb3-b4 CURRMOVE_OF_PLY(nbply):5 nr_ghosts:0 current_ply:7
#272 83 Kb3-c3 CURRMOVE_OF_PLY(nbply):4 nr_ghosts:0 current_ply:7
#272 84 16a7-g8 CURRMOVE_OF_PLY(nbply):3 nr_ghosts:0 current_ply:7
#209 85 Kb3-a2 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:6
#209 86 Kb3-c2 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:6
#272 87 Kc2-d1 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:7
#335 88 Kd1-e2 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:8
#335 89 Kd1-c1 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:8
#335 90 Kd1-d2 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#335 91 Kd1-e1 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 92 16g6-a5 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 93 16g6-a7 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#272 94 Kc2-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:7
#335 95 Kd3-e2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:8
#335 96 Kd3-e4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:8
#335 97 Kd3-c4 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:8
#335 98 Kd3-d2 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:8
#335 99 Kd3-c3 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#335 100 Kd3-d4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 101 Kd3-e3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 102 16g6-a5 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 103 16g6-a7 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#272 104 Kc2-c1 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:7
#335 105 Kc1-d2 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 106 Kc1-b2 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 107 Kc1-d1 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 108 16g6-a5 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 109 16g6-a7 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#272 110 Kc2-b2 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:7
#272 111 Kc2-c3 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:7
#335 112 Kc3-b2 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#335 113 Kc3-d2 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 114 Kc3-d4 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 115 Kc3-b4 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 116 Kc3-c4 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 117 Kc3-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 118 16g6-a5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 119 16g6-a7 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#272 120 Kc2-d2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:7
#335 121 Kd2-c1 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#335 122 Kd2-e1 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 123 Kd2-e3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 124 Kd2-c3 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 125 Kd2-d1 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 126 Kd2-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 127 Kd2-e2 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 128 16g6-a5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 129 16g6-a7 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#272 130 16g6-a5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#335 131 Kc2-d1 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 132 Kc2-d3 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 133 Kc2-c1 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 134 Kc2-b2 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 135 Kc2-c3 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 136 Kc2-d2 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 137 16a5-g4 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#272 138 16g6-a7 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#335 139 Kc2-d1 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 140 Kc2-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 141 Kc2-c1 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 142 Kc2-b2 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 143 Kc2-c3 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 144 Kc2-d2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 145 16a7-g8 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#209 146 Kb3-c4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:6
#272 147 Kc4-d3 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:7
#335 148 Kd3-c2 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:8
#335 149 Kd3-e2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:8
#335 150 Kd3-e4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:8
#335 151 Kd3-d2 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:8
#335 152 Kd3-c3 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:8
#335 153 Kd3-d4 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#335 154 Kd3-e3 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 155 16g6-a5 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 156 16g6-a7 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#272 157 Kc4-d5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:7
#335 158 Kd5-e4 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:8
#335 159 Kd5-e6 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:8
#335 160 Kd5-c6 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:8
#335 161 Kd5-d4 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:8
#335 162 Kd5-c5 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#335 163 Kd5-d6 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 164 Kd5-e5 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 165 16g6-a5 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 166 16g6-a7 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#272 167 Kc4-b5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:7
#335 168 Kb5-a4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:8
#335 169 Kb5-c6 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:8
#335 170 Kb5-a6 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:8
#335 171 Kb5-b4 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#335 172 Kb5-a5 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 173 Kb5-b6 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 174 Kb5-c5 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 175 16g6-a5 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 176 16g6-a7 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#272 177 Kc4-c3 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:7
#335 178 Kc3-b2 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:8
#335 179 Kc3-d2 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#335 180 Kc3-d4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 181 Kc3-b4 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 182 Kc3-c2 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 183 Kc3-d3 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 184 16g6-a5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 185 16g6-a7 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#272 186 Kc4-b4 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:7
#335 187 Kb4-a3 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#335 188 Kb4-c3 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 189 Kb4-c5 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 190 Kb4-a5 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 191 Kb4-a4 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 192 Kb4-b5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 193 16g6-a5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 194 16g6-a7 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#272 195 Kc4-c5 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:7
#335 196 Kc5-b4 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#335 197 Kc5-d4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 198 Kc5-d6 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 199 Kc5-b6 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 200 Kc5-b5 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 201 Kc5-c6 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 202 Kc5-d5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 203 16g6-a5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 204 16g6-a7 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#272 205 Kc4-d4 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#335 206 Kd4-c3 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 207 Kd4-e3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 208 Kd4-e5 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 209 Kd4-c5 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 210 Kd4-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 211 Kd4-d5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 212 Kd4-e4 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 213 16g6-a5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 214 16g6-a7 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#272 215 16g6-a5 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#335 216 Kc4-d3 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 217 Kc4-d5 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 218 Kc4-b5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 219 Kc4-c3 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 220 Kc4-b4 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 221 Kc4-c5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 222 Kc4-d4 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 223 16a5-g4 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#272 224 16g6-a7 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#335 225 Kc4-d3 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 226 Kc4-d5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 227 Kc4-b5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 228 Kc4-c3 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 229 Kc4-b4 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 230 Kc4-c5 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 231 Kc4-d4 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 232 16a7-g8 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#209 233 Kb3-a4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:6
#272 234 Ka4-b5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:7
#335 235 Kb5-c4 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:8
#335 236 Kb5-c6 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#335 237 Kb5-a6 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 238 Kb5-b4 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 239 Kb5-a5 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 240 Kb5-b6 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 241 Kb5-c5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 242 16g6-a5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 243 16g6-a7 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#272 244 Ka4-a3 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:7
#335 245 Ka3-b2 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 246 Ka3-b4 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 247 Ka3-a2 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 248 16g6-a5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 249 16g6-a7 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#272 250 Ka4-a5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#335 251 Ka5-b4 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 252 Ka5-b6 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 253 Ka5-a6 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 254 Ka5-b5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 255 16g6-a7 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#272 256 Ka4-b4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#335 257 Kb4-a3 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 258 Kb4-c3 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 259 Kb4-c5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 260 Kb4-a5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 261 Kb4-b5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 262 Kb4-c4 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 263 16g6-a5 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 264 16g6-a7 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#272 265 16g6-a5 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#335 266 Ka4-b5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 267 Ka4-a3 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 268 Ka4-b4 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 269 16a5-g4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#272 270 16g6-a7 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#335 271 Ka4-b5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 272 Ka4-a3 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 273 Ka4-a5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 274 Ka4-b4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 275 16a7-g8 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#209 276 Kb3-b2 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:6
#209 277 Kb3-a3 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:6
#272 278 Ka3-b2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#272 279 Ka3-b4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#335 280 Kb4-c3 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 281 Kb4-c5 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 282 Kb4-a5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 283 Kb4-a4 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 284 Kb4-b5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 285 Kb4-c4 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 286 16g6-a5 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 287 16g6-a7 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#272 288 Ka3-a2 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#272 289 Ka3-a4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#335 290 Ka4-b5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 291 Ka4-a5 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 292 Ka4-b4 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 293 16g6-a5 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 294 16g6-a7 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#272 295 16g6-a5 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:7
#335 296 Ka3-b2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 297 Ka3-b4 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 298 Ka3-a2 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 299 Ka3-a4 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#335 300 16a5-g4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:8
#272 301 16g6-a7 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:7
#335 302 Ka3-b2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 303 Ka3-b4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 304 Ka3-a2 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#335 305 Ka3-a4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:8
#335 306 16a7-g8 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:8
#209 307 Kb3-b4 CURRMOVE_OF_PLY(nbply):5 nr_ghosts:0 current_ply:6
#272 308 Kb4-a3 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:7
#335 309 Ka3-b2 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 310 Ka3-a2 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 311 Ka3-a4 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 312 16g6-a5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 313 16g6-a7 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#272 314 Kb4-c3 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:7
#335 315 Kc3-b2 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 316 Kc3-d2 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 317 Kc3-d4 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 318 Kc3-c2 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 319 Kc3-c4 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 320 Kc3-d3 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 321 16g6-a5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 322 16g6-a7 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#272 323 Kb4-c5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#335 324 Kc5-d4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 325 Kc5-d6 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 326 Kc5-b6 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 327 Kc5-c4 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 328 Kc5-b5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 329 Kc5-c6 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 330 Kc5-d5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 331 16g6-a5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 332 16g6-a7 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#272 333 Kb4-a5 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#335 334 Ka5-b6 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 335 Ka5-a4 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 336 Ka5-a6 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 337 Ka5-b5 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 338 16g6-a7 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#272 339 Kb4-a4 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#335 340 Ka4-b5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 341 Ka4-a3 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 342 Ka4-a5 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 343 16g6-a5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 344 16g6-a7 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#272 345 Kb4-b5 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#335 346 Kb5-a4 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 347 Kb5-c4 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 348 Kb5-c6 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 349 Kb5-a6 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 350 Kb5-a5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 351 Kb5-b6 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 352 Kb5-c5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 353 16g6-a5 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 354 16g6-a7 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#272 355 Kb4-c4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:7
#335 356 Kc4-d3 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 357 Kc4-d5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 358 Kc4-b5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 359 Kc4-c3 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 360 Kc4-c5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 361 Kc4-d4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 362 16g6-a5 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#335 363 16g6-a7 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:8
#272 364 16g6-a5 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:7
#335 365 Kb4-a3 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 366 Kb4-c3 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 367 Kb4-c5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 368 Kb4-a4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 369 Kb4-b5 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#335 370 Kb4-c4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:8
#335 371 16a5-g4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:8
#272 372 16g6-a7 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:7
#335 373 Kb4-a3 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 374 Kb4-c3 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 375 Kb4-c5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 376 Kb4-a5 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 377 Kb4-a4 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#335 378 Kb4-b5 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:8
#335 379 Kb4-c4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:8
#335 380 16a7-g8 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:8
#209 381 Kb3-c3 CURRMOVE_OF_PLY(nbply):4 nr_ghosts:0 current_ply:6
#272 382 Kc3-b2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:7
#272 383 Kc3-d2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#335 384 Kd2-c1 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#335 385 Kd2-e1 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 386 Kd2-e3 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 387 Kd2-d1 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 388 Kd2-c2 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 389 Kd2-d3 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 390 Kd2-e2 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 391 16g6-a5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 392 16g6-a7 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#272 393 Kc3-d4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#335 394 Kd4-e3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#335 395 Kd4-e5 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#335 396 Kd4-c5 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 397 Kd4-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 398 Kd4-c4 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 399 Kd4-d5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 400 Kd4-e4 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 401 16g6-a5 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 402 16g6-a7 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#272 403 Kc3-b4 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#335 404 Kb4-a3 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#335 405 Kb4-c5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#335 406 Kb4-a5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 407 Kb4-a4 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 408 Kb4-b5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 409 Kb4-c4 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 410 16g6-a5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 411 16g6-a7 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#272 412 Kc3-c2 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#335 413 Kc2-d1 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 414 Kc2-d3 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 415 Kc2-c1 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 416 Kc2-b2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 417 Kc2-d2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 418 16g6-a5 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 419 16g6-a7 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#272 420 Kc3-c4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:7
#335 421 Kc4-d3 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 422 Kc4-d5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 423 Kc4-b5 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 424 Kc4-b4 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 425 Kc4-c5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 426 Kc4-d4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 427 16g6-a5 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#335 428 16g6-a7 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:8
#272 429 Kc3-d3 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:7
#335 430 Kd3-c2 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#335 431 Kd3-e2 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#335 432 Kd3-e4 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 433 Kd3-c4 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 434 Kd3-d2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 435 Kd3-d4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 436 Kd3-e3 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#335 437 16g6-a5 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:8
#335 438 16g6-a7 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:8
#272 439 16g6-a5 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:7
#335 440 Kc3-b2 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#335 441 Kc3-d2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 442 Kc3-d4 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 443 Kc3-b4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 444 Kc3-c2 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#335 445 Kc3-c4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:8
#335 446 Kc3-d3 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:8
#335 447 16a5-g4 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:8
#272 448 16g6-a7 CURRMOVE_OF_PLY(nbply):5 nr_ghosts:0 current_ply:7
#335 449 Kc3-b2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 450 Kc3-d2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 451 Kc3-d4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 452 Kc3-b4 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#335 453 Kc3-c2 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:8
#335 454 Kc3-c4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:8
#335 455 Kc3-d3 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:8
#335 456 16a7-g8 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:8
#209 457 16g6-a5 CURRMOVE_OF_PLY(nbply):3 nr_ghosts:0 current_ply:6
#272 458 Kb3-a2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#272 459 Kb3-c2 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#272 460 Kb3-c4 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#272 461 Kb3-a4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#272 462 Kb3-b2 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:7
#272 463 Kb3-a3 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:7
#272 464 Kb3-b4 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:7
#272 465 Kb3-c3 CURRMOVE_OF_PLY(nbply):5 nr_ghosts:0 current_ply:7
#272 466 16a5-g4 CURRMOVE_OF_PLY(nbply):4 nr_ghosts:0 current_ply:7
#335 467 Kb3-a2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 468 Kb3-c2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 469 Kb3-c4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 470 Kb3-a4 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#335 471 Kb3-b2 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:8
#335 472 Kb3-a3 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:8
#335 473 Kb3-b4 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:8
#335 474 Kb3-c3 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:8
#335 475 16g4-a3 CURRMOVE_OF_PLY(nbply):5 nr_ghosts:0 current_ply:8
#209 476 16g6-a7 CURRMOVE_OF_PLY(nbply):2 nr_ghosts:0 current_ply:6
#272 477 Kb3-a2 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#272 478 Kb3-c2 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:7
#272 479 Kb3-c4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:7
#272 480 Kb3-a4 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:7
#272 481 Kb3-b2 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:7
#272 482 Kb3-a3 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:7
#272 483 Kb3-b4 CURRMOVE_OF_PLY(nbply):5 nr_ghosts:0 current_ply:7
#272 484 Kb3-c3 CURRMOVE_OF_PLY(nbply):4 nr_ghosts:0 current_ply:7
#272 485 16a7-g8 CURRMOVE_OF_PLY(nbply):3 nr_ghosts:0 current_ply:7
#335 486 Kb3-a2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#335 487 Kb3-c2 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#335 488 Kb3-c4 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:8
#335 489 Kb3-a4 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:8
#335 490 Kb3-b2 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:8
#335 491 Kb3-a3 CURRMOVE_OF_PLY(nbply):8 nr_ghosts:0 current_ply:8
#335 492 Kb3-b4 CURRMOVE_OF_PLY(nbply):7 nr_ghosts:0 current_ply:8
#335 493 Kb3-c3 CURRMOVE_OF_PLY(nbply):6 nr_ghosts:0 current_ply:8
#335 494 16g8-f2 CURRMOVE_OF_PLY(nbply):5 nr_ghosts:0 current_ply:8
#335 495 16g8-h2 CURRMOVE_OF_PLY(nbply):4 nr_ghosts:0 current_ply:8
#205 496 Kb3-a2 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:6
#205 497 Kb3-c2 CURRMOVE_OF_PLY(nbply):10 nr_ghosts:0 current_ply:6
#271 498 Kc2-d1 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:7
#334 499 Kd1-e2 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:8
#397 500 Ke2-f1 CURRMOVE_OF_PLY(nbply):33 nr_ghosts:0 current_ply:9
#397 501 Ke2-f3 CURRMOVE_OF_PLY(nbply):32 nr_ghosts:0 current_ply:9
#397 502 Ke2-d3 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 503 Ke2-e1 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 504 Ke2-d2 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 505 Ke2-e3 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 506 Ke2-f2 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 507 16g6-a5 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 508 16g6-a7 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#334 509 Kd1-c1 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:8
#397 510 Kc1-d2 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 511 Kc1-b2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 512 16g6-a5 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 513 16g6-a7 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#334 514 Kd1-d2 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#397 515 Kd2-c1 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 516 Kd2-e1 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 517 Kd2-e3 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 518 Kd2-c3 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 519 Kd2-d3 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 520 Kd2-e2 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 521 16g6-a5 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 522 16g6-a7 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#334 523 Kd1-e1 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#397 524 Ke1-f2 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 525 Ke1-d2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 526 Ke1-e2 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 527 Ke1-f1 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 528 16g6-a5 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 529 16g6-a7 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#334 530 16g6-a5 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#397 531 Kd1-e2 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 532 Kd1-c1 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 533 Kd1-d2 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 534 Kd1-e1 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 535 16a5-g4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#334 536 16g6-a7 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#397 537 Kd1-e2 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 538 Kd1-c1 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 539 Kd1-d2 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 540 Kd1-e1 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 541 16a7-g8 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#271 542 Kc2-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:7
#334 543 Kd3-e2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:8
#397 544 Ke2-d1 CURRMOVE_OF_PLY(nbply):35 nr_ghosts:0 current_ply:9
#397 545 Ke2-f1 CURRMOVE_OF_PLY(nbply):34 nr_ghosts:0 current_ply:9
#397 546 Ke2-f3 CURRMOVE_OF_PLY(nbply):33 nr_ghosts:0 current_ply:9
#397 547 Ke2-e1 CURRMOVE_OF_PLY(nbply):32 nr_ghosts:0 current_ply:9
#397 548 Ke2-d2 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 549 Ke2-e3 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 550 Ke2-f2 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 551 16g6-a5 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 552 16g6-a7 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#334 553 Kd3-e4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:8
#397 554 Ke4-f3 CURRMOVE_OF_PLY(nbply):34 nr_ghosts:0 current_ply:9
#397 555 Ke4-f5 CURRMOVE_OF_PLY(nbply):33 nr_ghosts:0 current_ply:9
#397 556 Ke4-d5 CURRMOVE_OF_PLY(nbply):32 nr_ghosts:0 current_ply:9
#397 557 Ke4-e3 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 558 Ke4-d4 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 559 Ke4-e5 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 560 Ke4-f4 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 561 16g6-a5 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 562 16g6-a7 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#334 563 Kd3-c4 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:8
#397 564 Kc4-d5 CURRMOVE_OF_PLY(nbply):32 nr_ghosts:0 current_ply:9
#397 565 Kc4-b5 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 566 Kc4-c3 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 567 Kc4-b4 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 568 Kc4-c5 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 569 Kc4-d4 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 570 16g6-a5 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 571 16g6-a7 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#334 572 Kd3-d2 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:8
#397 573 Kd2-c1 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 574 Kd2-e1 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 575 Kd2-e3 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 576 Kd2-c3 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 577 Kd2-d1 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 578 Kd2-e2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 579 16g6-a5 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 580 16g6-a7 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#334 581 Kd3-c3 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#397 582 Kc3-b2 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 583 Kc3-d2 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 584 Kc3-d4 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 585 Kc3-b4 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 586 Kc3-c4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 587 16g6-a5 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 588 16g6-a7 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#334 589 Kd3-d4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#397 590 Kd4-c3 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 591 Kd4-e3 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 592 Kd4-e5 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 593 Kd4-c5 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 594 Kd4-c4 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 595 Kd4-d5 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 596 Kd4-e4 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 597 16g6-a5 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 598 16g6-a7 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#334 599 Kd3-e3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#397 600 Ke3-d2 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 601 Ke3-f2 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 602 Ke3-f4 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 603 Ke3-d4 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 604 Ke3-e2 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 605 Ke3-e4 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 606 Ke3-f3 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 607 16g6-a5 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 608 16g6-a7 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#334 609 16g6-a5 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#397 610 Kd3-e2 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 611 Kd3-e4 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 612 Kd3-c4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 613 Kd3-d2 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 614 Kd3-c3 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 615 Kd3-d4 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 616 Kd3-e3 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 617 16a5-g4 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#334 618 16g6-a7 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#397 619 Kd3-e2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 620 Kd3-e4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 621 Kd3-c4 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 622 Kd3-d2 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 623 Kd3-c3 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 624 Kd3-d4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 625 Kd3-e3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 626 16a7-g8 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#271 627 Kc2-c1 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:7
#334 628 Kc1-d2 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#397 629 Kd2-e1 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 630 Kd2-e3 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 631 Kd2-c3 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 632 Kd2-d1 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 633 Kd2-d3 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 634 Kd2-e2 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 635 16g6-a5 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 636 16g6-a7 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#334 637 Kc1-b2 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#334 638 Kc1-d1 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#397 639 Kd1-e2 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 640 Kd1-d2 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 641 Kd1-e1 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 642 16g6-a5 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 643 16g6-a7 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#334 644 16g6-a5 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#397 645 Kc1-d2 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 646 Kc1-b2 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 647 Kc1-d1 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 648 16a5-g4 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#334 649 16g6-a7 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#397 650 Kc1-d2 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 651 Kc1-b2 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 652 Kc1-d1 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#397 653 16a7-g8 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:9
#271 654 Kc2-b2 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:7
#271 655 Kc2-c3 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:7
#334 656 Kc3-b2 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#334 657 Kc3-d2 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#397 658 Kd2-c1 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 659 Kd2-e1 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 660 Kd2-e3 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 661 Kd2-d1 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 662 Kd2-d3 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 663 Kd2-e2 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 664 16g6-a5 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 665 16g6-a7 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#334 666 Kc3-d4 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#397 667 Kd4-e3 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 668 Kd4-e5 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 669 Kd4-c5 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 670 Kd4-d3 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 671 Kd4-c4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 672 Kd4-d5 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 673 Kd4-e4 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 674 16g6-a5 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 675 16g6-a7 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#334 676 Kc3-b4 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#397 677 Kb4-a3 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 678 Kb4-c5 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 679 Kb4-a5 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 680 Kb4-a4 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 681 Kb4-b5 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 682 Kb4-c4 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 683 16g6-a5 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 684 16g6-a7 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#334 685 Kc3-c4 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#397 686 Kc4-d3 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 687 Kc4-d5 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 688 Kc4-b5 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 689 Kc4-b4 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 690 Kc4-c5 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 691 Kc4-d4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 692 16g6-a5 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 693 16g6-a7 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#334 694 Kc3-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#397 695 Kd3-e2 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 696 Kd3-e4 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 697 Kd3-c4 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 698 Kd3-d2 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 699 Kd3-d4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 700 Kd3-e3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 701 16g6-a5 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#397 702 16g6-a7 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:9
#334 703 16g6-a5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#397 704 Kc3-b2 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 705 Kc3-d2 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 706 Kc3-d4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 707 Kc3-b4 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 708 Kc3-c4 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#397 709 Kc3-d3 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:9
#397 710 16a5-g4 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:9
#334 711 16g6-a7 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#397 712 Kc3-b2 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 713 Kc3-d2 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 714 Kc3-d4 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 715 Kc3-b4 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#397 716 Kc3-c4 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:9
#397 717 Kc3-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:9
#397 718 16a7-g8 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:9
#271 719 Kc2-d2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:7
#334 720 Kd2-c1 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#397 721 Kc1-b2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 722 Kc1-d1 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 723 16g6-a5 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 724 16g6-a7 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#334 725 Kd2-e1 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#397 726 Ke1-f2 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 727 Ke1-d1 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 728 Ke1-e2 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 729 Ke1-f1 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 730 16g6-a5 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 731 16g6-a7 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#334 732 Kd2-e3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#397 733 Ke3-f2 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 734 Ke3-f4 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 735 Ke3-d4 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 736 Ke3-e2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 737 Ke3-d3 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 738 Ke3-e4 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 739 Ke3-f3 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 740 16g6-a5 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 741 16g6-a7 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#334 742 Kd2-c3 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#397 743 Kc3-b2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 744 Kc3-d4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 745 Kc3-b4 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 746 Kc3-c4 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 747 Kc3-d3 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 748 16g6-a5 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 749 16g6-a7 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#334 750 Kd2-d1 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#397 751 Kd1-e2 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 752 Kd1-c1 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 753 Kd1-e1 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 754 16g6-a5 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 755 16g6-a7 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#334 756 Kd2-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#397 757 Kd3-e2 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 758 Kd3-e4 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 759 Kd3-c4 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 760 Kd3-c3 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 761 Kd3-d4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 762 Kd3-e3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 763 16g6-a5 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#397 764 16g6-a7 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:9
#334 765 Kd2-e2 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#397 766 Ke2-d1 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 767 Ke2-f1 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 768 Ke2-f3 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 769 Ke2-d3 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 770 Ke2-e1 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 771 Ke2-e3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 772 Ke2-f2 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#397 773 16g6-a5 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:9
#397 774 16g6-a7 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:9
#334 775 16g6-a5 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#397 776 Kd2-c1 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 777 Kd2-e1 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 778 Kd2-e3 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 779 Kd2-c3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 780 Kd2-d1 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#397 781 Kd2-d3 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:9
#397 782 Kd2-e2 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:9
#397 783 16a5-g4 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:9
#334 784 16g6-a7 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#397 785 Kd2-c1 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 786 Kd2-e1 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 787 Kd2-e3 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 788 Kd2-c3 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#397 789 Kd2-d1 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:9
#397 790 Kd2-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:9
#397 791 Kd2-e2 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:9
#397 792 16a7-g8 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:9
#271 793 16g6-a5 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:7
#334 794 Kc2-d1 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#334 795 Kc2-d3 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#334 796 Kc2-c1 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#334 797 Kc2-b2 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#334 798 Kc2-c3 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#334 799 Kc2-d2 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#334 800 16a5-g4 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#397 801 Kc2-d1 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 802 Kc2-d3 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#397 803 Kc2-c1 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:9
#397 804 Kc2-b2 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:9
#397 805 Kc2-c3 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:9
#397 806 Kc2-d2 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:9
#397 807 16g4-a3 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:9
#271 808 16g6-a7 CURRMOVE_OF_PLY(nbply):11 nr_ghosts:0 current_ply:7
#334 809 Kc2-d1 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#334 810 Kc2-d3 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:8
#334 811 Kc2-c1 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:8
#334 812 Kc2-b2 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:8
#334 813 Kc2-c3 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:8
#334 814 Kc2-d2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:8
#334 815 16a7-g8 CURRMOVE_OF_PLY(nbply):12 nr_ghosts:0 current_ply:8
#397 816 Kc2-d1 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 817 Kc2-d3 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#397 818 Kc2-c1 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:9
#397 819 Kc2-b2 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:9
#397 820 Kc2-c3 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:9
#397 821 Kc2-d2 CURRMOVE_OF_PLY(nbply):15 nr_ghosts:0 current_ply:9
#397 822 16g8-f2 CURRMOVE_OF_PLY(nbply):14 nr_ghosts:0 current_ply:9
#397 823 16g8-h2 CURRMOVE_OF_PLY(nbply):13 nr_ghosts:0 current_ply:9
#205 824 Kb3-c4 CURRMOVE_OF_PLY(nbply):9 nr_ghosts:0 current_ply:6
#271 825 Kc4-d3 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:7
#334 826 Kd3-c2 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:8
#397 827 Kc2-d1 CURRMOVE_OF_PLY(nbply):34 nr_ghosts:0 current_ply:9
#397 828 Kc2-c1 CURRMOVE_OF_PLY(nbply):33 nr_ghosts:0 current_ply:9
#397 829 Kc2-b2 CURRMOVE_OF_PLY(nbply):32 nr_ghosts:0 current_ply:9
#397 830 Kc2-c3 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 831 Kc2-d2 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 832 16g6-a5 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 833 16g6-a7 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#334 834 Kd3-e2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:8
#397 835 Ke2-d1 CURRMOVE_OF_PLY(nbply):35 nr_ghosts:0 current_ply:9
#397 836 Ke2-f1 CURRMOVE_OF_PLY(nbply):34 nr_ghosts:0 current_ply:9
#397 837 Ke2-f3 CURRMOVE_OF_PLY(nbply):33 nr_ghosts:0 current_ply:9
#397 838 Ke2-e1 CURRMOVE_OF_PLY(nbply):32 nr_ghosts:0 current_ply:9
#397 839 Ke2-d2 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 840 Ke2-e3 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 841 Ke2-f2 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 842 16g6-a5 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 843 16g6-a7 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#334 844 Kd3-e4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:8
#397 845 Ke4-f3 CURRMOVE_OF_PLY(nbply):34 nr_ghosts:0 current_ply:9
#397 846 Ke4-f5 CURRMOVE_OF_PLY(nbply):33 nr_ghosts:0 current_ply:9
#397 847 Ke4-d5 CURRMOVE_OF_PLY(nbply):32 nr_ghosts:0 current_ply:9
#397 848 Ke4-e3 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 849 Ke4-d4 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 850 Ke4-e5 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 851 Ke4-f4 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 852 16g6-a5 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 853 16g6-a7 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#334 854 Kd3-d2 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:8
#397 855 Kd2-c1 CURRMOVE_OF_PLY(nbply):33 nr_ghosts:0 current_ply:9
#397 856 Kd2-e1 CURRMOVE_OF_PLY(nbply):32 nr_ghosts:0 current_ply:9
#397 857 Kd2-e3 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 858 Kd2-c3 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 859 Kd2-d1 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 860 Kd2-c2 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 861 Kd2-e2 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 862 16g6-a5 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 863 16g6-a7 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#334 864 Kd3-c3 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:8
#397 865 Kc3-b2 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 866 Kc3-d2 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 867 Kc3-d4 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 868 Kc3-b4 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 869 Kc3-c2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 870 16g6-a5 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 871 16g6-a7 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#334 872 Kd3-d4 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#397 873 Kd4-c3 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 874 Kd4-e3 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 875 Kd4-e5 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 876 Kd4-c5 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 877 Kd4-d5 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 878 Kd4-e4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 879 16g6-a5 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 880 16g6-a7 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#334 881 Kd3-e3 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#397 882 Ke3-d2 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 883 Ke3-f2 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 884 Ke3-f4 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 885 Ke3-d4 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 886 Ke3-e2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 887 Ke3-e4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 888 Ke3-f3 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 889 16g6-a5 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 890 16g6-a7 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#334 891 16g6-a5 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#397 892 Kd3-c2 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 893 Kd3-e2 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 894 Kd3-e4 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 895 Kd3-d2 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 896 Kd3-c3 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 897 Kd3-d4 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 898 Kd3-e3 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 899 16a5-g4 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#334 900 16g6-a7 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#397 901 Kd3-c2 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 902 Kd3-e2 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 903 Kd3-e4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 904 Kd3-d2 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 905 Kd3-c3 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 906 Kd3-d4 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 907 Kd3-e3 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 908 16a7-g8 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#271 909 Kc4-d5 CURRMOVE_OF_PLY(nbply):17 nr_ghosts:0 current_ply:7
#334 910 Kd5-e4 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:8
#397 911 Ke4-d3 CURRMOVE_OF_PLY(nbply):35 nr_ghosts:0 current_ply:9
#397 912 Ke4-f3 CURRMOVE_OF_PLY(nbply):34 nr_ghosts:0 current_ply:9
#397 913 Ke4-f5 CURRMOVE_OF_PLY(nbply):33 nr_ghosts:0 current_ply:9
#397 914 Ke4-e3 CURRMOVE_OF_PLY(nbply):32 nr_ghosts:0 current_ply:9
#397 915 Ke4-d4 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 916 Ke4-e5 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 917 Ke4-f4 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 918 16g6-a5 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 919 16g6-a7 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#334 920 Kd5-e6 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:8
#397 921 Ke6-f5 CURRMOVE_OF_PLY(nbply):34 nr_ghosts:0 current_ply:9
#397 922 Ke6-f7 CURRMOVE_OF_PLY(nbply):33 nr_ghosts:0 current_ply:9
#397 923 Ke6-d7 CURRMOVE_OF_PLY(nbply):32 nr_ghosts:0 current_ply:9
#397 924 Ke6-e5 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 925 Ke6-d6 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 926 Ke6-e7 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 927 Ke6-f6 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 928 16g6-a5 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 929 16g6-a7 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#334 930 Kd5-c6 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:8
#397 931 Kc6-b5 CURRMOVE_OF_PLY(nbply):33 nr_ghosts:0 current_ply:9
#397 932 Kc6-d7 CURRMOVE_OF_PLY(nbply):32 nr_ghosts:0 current_ply:9
#397 933 Kc6-b7 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 934 Kc6-c5 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 935 Kc6-b6 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 936 Kc6-c7 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 937 Kc6-d6 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 938 16g6-a5 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 939 16g6-a7 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#334 940 Kd5-d4 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:8
#397 941 Kd4-c3 CURRMOVE_OF_PLY(nbply):31 nr_ghosts:0 current_ply:9
#397 942 Kd4-e3 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 943 Kd4-e5 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 944 Kd4-c5 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 945 Kd4-d3 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 946 Kd4-e4 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 947 16g6-a5 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 948 16g6-a7 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#334 949 Kd5-c5 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:8
#397 950 Kc5-b4 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 951 Kc5-d4 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 952 Kc5-d6 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 953 Kc5-b6 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 954 Kc5-b5 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 955 Kc5-c6 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 956 16g6-a5 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 957 16g6-a7 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#334 958 Kd5-d6 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:8
#397 959 Kd6-c5 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 960 Kd6-e5 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 961 Kd6-e7 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 962 Kd6-c7 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 963 Kd6-c6 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 964 Kd6-d7 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 965 Kd6-e6 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 966 16g6-a5 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 967 16g6-a7 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#334 968 Kd5-e5 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:8
#397 969 Ke5-d4 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9
#397 970 Ke5-f4 CURRMOVE_OF_PLY(nbply):28 nr_ghosts:0 current_ply:9
#397 971 Ke5-f6 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 972 Ke5-d6 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 973 Ke5-e4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 974 Ke5-e6 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 975 Ke5-f5 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 976 16g6-a5 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 977 16g6-a7 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#334 978 16g6-a5 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:8
#397 979 16a5-g4 CURRMOVE_OF_PLY(nbply):27 nr_ghosts:0 current_ply:9
#397 980 Kd5-e4 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 981 Kd5-e6 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 982 Kd5-c6 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 983 Kd5-d4 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 984 Kd5-c5 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 985 Kd5-d6 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 986 Kd5-e5 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#334 987 16g6-a7 CURRMOVE_OF_PLY(nbply):18 nr_ghosts:0 current_ply:8
#397 988 Kd5-e4 CURRMOVE_OF_PLY(nbply):26 nr_ghosts:0 current_ply:9
#397 989 Kd5-e6 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:9
#397 990 Kd5-c6 CURRMOVE_OF_PLY(nbply):24 nr_ghosts:0 current_ply:9
#397 991 Kd5-d4 CURRMOVE_OF_PLY(nbply):23 nr_ghosts:0 current_ply:9
#397 992 Kd5-c5 CURRMOVE_OF_PLY(nbply):22 nr_ghosts:0 current_ply:9
#397 993 Kd5-d6 CURRMOVE_OF_PLY(nbply):21 nr_ghosts:0 current_ply:9
#397 994 Kd5-e5 CURRMOVE_OF_PLY(nbply):20 nr_ghosts:0 current_ply:9
#397 995 16a7-g8 CURRMOVE_OF_PLY(nbply):19 nr_ghosts:0 current_ply:9
#271 996 Kc4-b5 CURRMOVE_OF_PLY(nbply):16 nr_ghosts:0 current_ply:7
#334 997 Kb5-a4 CURRMOVE_OF_PLY(nbply):25 nr_ghosts:0 current_ply:8
#397 998 Ka4-a3 CURRMOVE_OF_PLY(nbply):30 nr_ghosts:0 current_ply:9
#397 999 Ka4-a5 CURRMOVE_OF_PLY(nbply):29 nr_ghosts:0 current_ply:9