bracket_tree 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. data/.gitignore +4 -0
  2. data/.travis.yml +7 -0
  3. data/Gemfile +4 -0
  4. data/README.md +187 -0
  5. data/Rakefile +8 -0
  6. data/bracket_tree.gemspec +20 -0
  7. data/lib/bracket_tree.rb +9 -0
  8. data/lib/bracket_tree/bracket.rb +12 -0
  9. data/lib/bracket_tree/bracket/base.rb +228 -0
  10. data/lib/bracket_tree/bracket/double_elimination.rb +7 -0
  11. data/lib/bracket_tree/bracket/single_elimination.rb +7 -0
  12. data/lib/bracket_tree/match.rb +24 -0
  13. data/lib/bracket_tree/node.rb +23 -0
  14. data/lib/bracket_tree/template.rb +70 -0
  15. data/lib/bracket_tree/templates/double_elimination.rb +11 -0
  16. data/lib/bracket_tree/templates/double_elimination/128.json +3695 -0
  17. data/lib/bracket_tree/templates/double_elimination/16.json +107 -0
  18. data/lib/bracket_tree/templates/double_elimination/32.json +202 -0
  19. data/lib/bracket_tree/templates/double_elimination/4.json +26 -0
  20. data/lib/bracket_tree/templates/double_elimination/64.json +400 -0
  21. data/lib/bracket_tree/templates/double_elimination/8.json +50 -0
  22. data/lib/bracket_tree/templates/single_elimination.rb +11 -0
  23. data/lib/bracket_tree/templates/single_elimination/128.json +1917 -0
  24. data/lib/bracket_tree/templates/single_elimination/16.json +56 -0
  25. data/lib/bracket_tree/templates/single_elimination/2.json +11 -0
  26. data/lib/bracket_tree/templates/single_elimination/32.json +351 -0
  27. data/lib/bracket_tree/templates/single_elimination/4.json +17 -0
  28. data/lib/bracket_tree/templates/single_elimination/64.json +703 -0
  29. data/lib/bracket_tree/templates/single_elimination/8.json +29 -0
  30. data/spec/bracket_spec.rb +189 -0
  31. data/spec/double_elimination_spec.rb +5 -0
  32. data/spec/match_spec.rb +30 -0
  33. data/spec/spec_helper.rb +3 -0
  34. data/spec/template_spec.rb +58 -0
  35. metadata +112 -0
@@ -0,0 +1,7 @@
1
+ module BracketTree
2
+ module Bracket
3
+ class DoubleElimination < Base
4
+ template BracketTree::Template::DoubleElimination
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module BracketTree
2
+ module Bracket
3
+ class SingleElimination < Base
4
+ template BracketTree::Template::SingleElimination
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,24 @@
1
+ module BracketTree
2
+ class Match
3
+ attr_accessor :seats, :winner_to, :loser_to
4
+ def initialize options = {}
5
+ @seats = options[:seats] || []
6
+ @winner_to = options[:winner_to]
7
+ @loser_to = options[:loser_to]
8
+ end
9
+
10
+ def include? seat
11
+ @seats.include? seat
12
+ end
13
+
14
+ alias_method :governs?, :include?
15
+
16
+ def to_h
17
+ {
18
+ seats: @seats,
19
+ winner_to: @winner_to,
20
+ loser_to: @loser_to
21
+ }
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,23 @@
1
+ module BracketTree
2
+ class Node
3
+ attr_accessor :left, :right, :position, :payload
4
+
5
+ def initialize position, payload = nil
6
+ @position = position
7
+ @payload = payload
8
+ end
9
+
10
+ def method_missing(sym, *args, &block)
11
+ @payload.send sym, *args, &block
12
+ end
13
+
14
+ def to_h
15
+ {
16
+ position: @position,
17
+ payload: @payload,
18
+ left: @left ? @left.to_h : nil,
19
+ right: @right ? @right.to_h : nil
20
+ }
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,70 @@
1
+ module BracketTree
2
+ # Contains the logic for common template formats. Holds match progression as well as seat order to generate the correct bracket tree.
3
+ module Template
4
+ class Base
5
+ class << self
6
+ # Reads stored JSON files to generate a Template
7
+ #
8
+ # @param [Fixnum] size - player count
9
+ # return [nil, BracketTree::Template] template - the resulting bracket template
10
+ def by_size size
11
+ filename = File.join location, "#{size}.json"
12
+
13
+ if File.exists? filename
14
+ from_json JSON.parse(File.read(filename), symbolize_names: true)
15
+ else
16
+ return nil
17
+ end
18
+ end
19
+
20
+ # Generates Template from JSON
21
+ #
22
+ # @param [String] json - the bracket template in its standard data specification
23
+ # @return [BracketTree::Template]
24
+ def from_json json
25
+ template = new
26
+ if json[:seats]
27
+ template.seats = json[:seats].map { |s| s[:position] }
28
+ end
29
+
30
+ if json[:starting_seats]
31
+ template.starting_seats = json[:starting_seats]
32
+ end
33
+
34
+ if json[:matches]
35
+ template.matches = json[:matches]
36
+ end
37
+
38
+ template
39
+ end
40
+
41
+ # Folder location of the template JSON files. Abstract method
42
+ # @return [String] location - the folder name of the JSON files
43
+ def location
44
+ raise NotImplementedError, 'Abstract method, please define `location` in subclass.'
45
+ end
46
+ end
47
+
48
+ attr_accessor :seats, :starting_seats, :matches
49
+
50
+ def initialize
51
+ @seats = []
52
+ @starting_seats = []
53
+ @matches = []
54
+ end
55
+
56
+ # Returns hash representation of the Template
57
+ #
58
+ # @return [Hash] template
59
+ def to_h
60
+ {
61
+ seats: @seats.map { |s| { position: s } },
62
+ starting_seats: @starting_seats,
63
+ matches: @matches
64
+ }
65
+ end
66
+
67
+ alias_method :seed_order, :starting_seats
68
+ end
69
+ end
70
+ end
@@ -0,0 +1,11 @@
1
+ module BracketTree
2
+ module Template
3
+ class DoubleElimination < Base
4
+ class << self
5
+ def location
6
+ File.join File.dirname(__FILE__), 'double_elimination'
7
+ end
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,3695 @@
1
+ {
2
+ "matches": [
3
+ {
4
+ "seats": [
5
+ 1,
6
+ 3
7
+ ],
8
+ "winner_to": 2,
9
+ "loser_to": 269
10
+ },
11
+ {
12
+ "seats": [
13
+ 5,
14
+ 7
15
+ ],
16
+ "winner_to": 6,
17
+ "loser_to": 271
18
+ },
19
+ {
20
+ "seats": [
21
+ 9,
22
+ 11
23
+ ],
24
+ "winner_to": 10,
25
+ "loser_to": 275
26
+ },
27
+ {
28
+ "seats": [
29
+ 13,
30
+ 15
31
+ ],
32
+ "winner_to": 14,
33
+ "loser_to": 277
34
+ },
35
+ {
36
+ "seats": [
37
+ 17,
38
+ 19
39
+ ],
40
+ "winner_to": 18,
41
+ "loser_to": 283
42
+ },
43
+ {
44
+ "seats": [
45
+ 21,
46
+ 23
47
+ ],
48
+ "winner_to": 22,
49
+ "loser_to": 285
50
+ },
51
+ {
52
+ "seats": [
53
+ 25,
54
+ 27
55
+ ],
56
+ "winner_to": 26,
57
+ "loser_to": 289
58
+ },
59
+ {
60
+ "seats": [
61
+ 29,
62
+ 31
63
+ ],
64
+ "winner_to": 30,
65
+ "loser_to": 291
66
+ },
67
+ {
68
+ "seats": [
69
+ 33,
70
+ 35
71
+ ],
72
+ "winner_to": 34,
73
+ "loser_to": 299
74
+ },
75
+ {
76
+ "seats": [
77
+ 37,
78
+ 39
79
+ ],
80
+ "winner_to": 38,
81
+ "loser_to": 301
82
+ },
83
+ {
84
+ "seats": [
85
+ 41,
86
+ 43
87
+ ],
88
+ "winner_to": 42,
89
+ "loser_to": 305
90
+ },
91
+ {
92
+ "seats": [
93
+ 45,
94
+ 47
95
+ ],
96
+ "winner_to": 46,
97
+ "loser_to": 307
98
+ },
99
+ {
100
+ "seats": [
101
+ 49,
102
+ 51
103
+ ],
104
+ "winner_to": 50,
105
+ "loser_to": 313
106
+ },
107
+ {
108
+ "seats": [
109
+ 53,
110
+ 55
111
+ ],
112
+ "winner_to": 54,
113
+ "loser_to": 315
114
+ },
115
+ {
116
+ "seats": [
117
+ 57,
118
+ 59
119
+ ],
120
+ "winner_to": 58,
121
+ "loser_to": 319
122
+ },
123
+ {
124
+ "seats": [
125
+ 61,
126
+ 63
127
+ ],
128
+ "winner_to": 62,
129
+ "loser_to": 321
130
+ },
131
+ {
132
+ "seats": [
133
+ 65,
134
+ 67
135
+ ],
136
+ "winner_to": 66,
137
+ "loser_to": 331
138
+ },
139
+ {
140
+ "seats": [
141
+ 69,
142
+ 71
143
+ ],
144
+ "winner_to": 70,
145
+ "loser_to": 333
146
+ },
147
+ {
148
+ "seats": [
149
+ 73,
150
+ 75
151
+ ],
152
+ "winner_to": 74,
153
+ "loser_to": 337
154
+ },
155
+ {
156
+ "seats": [
157
+ 77,
158
+ 79
159
+ ],
160
+ "winner_to": 78,
161
+ "loser_to": 339
162
+ },
163
+ {
164
+ "seats": [
165
+ 81,
166
+ 83
167
+ ],
168
+ "winner_to": 82,
169
+ "loser_to": 345
170
+ },
171
+ {
172
+ "seats": [
173
+ 85,
174
+ 87
175
+ ],
176
+ "winner_to": 86,
177
+ "loser_to": 347
178
+ },
179
+ {
180
+ "seats": [
181
+ 89,
182
+ 91
183
+ ],
184
+ "winner_to": 90,
185
+ "loser_to": 351
186
+ },
187
+ {
188
+ "seats": [
189
+ 93,
190
+ 95
191
+ ],
192
+ "winner_to": 94,
193
+ "loser_to": 353
194
+ },
195
+ {
196
+ "seats": [
197
+ 97,
198
+ 99
199
+ ],
200
+ "winner_to": 98,
201
+ "loser_to": 361
202
+ },
203
+ {
204
+ "seats": [
205
+ 101,
206
+ 103
207
+ ],
208
+ "winner_to": 102,
209
+ "loser_to": 363
210
+ },
211
+ {
212
+ "seats": [
213
+ 105,
214
+ 107
215
+ ],
216
+ "winner_to": 106,
217
+ "loser_to": 367
218
+ },
219
+ {
220
+ "seats": [
221
+ 109,
222
+ 111
223
+ ],
224
+ "winner_to": 110,
225
+ "loser_to": 369
226
+ },
227
+ {
228
+ "seats": [
229
+ 113,
230
+ 115
231
+ ],
232
+ "winner_to": 114,
233
+ "loser_to": 375
234
+ },
235
+ {
236
+ "seats": [
237
+ 117,
238
+ 119
239
+ ],
240
+ "winner_to": 118,
241
+ "loser_to": 377
242
+ },
243
+ {
244
+ "seats": [
245
+ 121,
246
+ 123
247
+ ],
248
+ "winner_to": 122,
249
+ "loser_to": 381
250
+ },
251
+ {
252
+ "seats": [
253
+ 125,
254
+ 127
255
+ ],
256
+ "winner_to": 126,
257
+ "loser_to": 383
258
+ },
259
+ {
260
+ "seats": [
261
+ 129,
262
+ 131
263
+ ],
264
+ "winner_to": 130,
265
+ "loser_to": 395
266
+ },
267
+ {
268
+ "seats": [
269
+ 133,
270
+ 135
271
+ ],
272
+ "winner_to": 134,
273
+ "loser_to": 397
274
+ },
275
+ {
276
+ "seats": [
277
+ 137,
278
+ 139
279
+ ],
280
+ "winner_to": 138,
281
+ "loser_to": 401
282
+ },
283
+ {
284
+ "seats": [
285
+ 141,
286
+ 143
287
+ ],
288
+ "winner_to": 142,
289
+ "loser_to": 403
290
+ },
291
+ {
292
+ "seats": [
293
+ 145,
294
+ 147
295
+ ],
296
+ "winner_to": 146,
297
+ "loser_to": 409
298
+ },
299
+ {
300
+ "seats": [
301
+ 149,
302
+ 151
303
+ ],
304
+ "winner_to": 150,
305
+ "loser_to": 411
306
+ },
307
+ {
308
+ "seats": [
309
+ 153,
310
+ 155
311
+ ],
312
+ "winner_to": 154,
313
+ "loser_to": 415
314
+ },
315
+ {
316
+ "seats": [
317
+ 157,
318
+ 159
319
+ ],
320
+ "winner_to": 158,
321
+ "loser_to": 417
322
+ },
323
+ {
324
+ "seats": [
325
+ 161,
326
+ 163
327
+ ],
328
+ "winner_to": 162,
329
+ "loser_to": 425
330
+ },
331
+ {
332
+ "seats": [
333
+ 165,
334
+ 167
335
+ ],
336
+ "winner_to": 166,
337
+ "loser_to": 427
338
+ },
339
+ {
340
+ "seats": [
341
+ 169,
342
+ 171
343
+ ],
344
+ "winner_to": 170,
345
+ "loser_to": 431
346
+ },
347
+ {
348
+ "seats": [
349
+ 173,
350
+ 175
351
+ ],
352
+ "winner_to": 174,
353
+ "loser_to": 433
354
+ },
355
+ {
356
+ "seats": [
357
+ 177,
358
+ 179
359
+ ],
360
+ "winner_to": 178,
361
+ "loser_to": 439
362
+ },
363
+ {
364
+ "seats": [
365
+ 181,
366
+ 183
367
+ ],
368
+ "winner_to": 182,
369
+ "loser_to": 441
370
+ },
371
+ {
372
+ "seats": [
373
+ 185,
374
+ 187
375
+ ],
376
+ "winner_to": 186,
377
+ "loser_to": 445
378
+ },
379
+ {
380
+ "seats": [
381
+ 189,
382
+ 191
383
+ ],
384
+ "winner_to": 190,
385
+ "loser_to": 447
386
+ },
387
+ {
388
+ "seats": [
389
+ 193,
390
+ 195
391
+ ],
392
+ "winner_to": 194,
393
+ "loser_to": 457
394
+ },
395
+ {
396
+ "seats": [
397
+ 197,
398
+ 199
399
+ ],
400
+ "winner_to": 198,
401
+ "loser_to": 459
402
+ },
403
+ {
404
+ "seats": [
405
+ 201,
406
+ 203
407
+ ],
408
+ "winner_to": 202,
409
+ "loser_to": 463
410
+ },
411
+ {
412
+ "seats": [
413
+ 205,
414
+ 207
415
+ ],
416
+ "winner_to": 206,
417
+ "loser_to": 465
418
+ },
419
+ {
420
+ "seats": [
421
+ 209,
422
+ 211
423
+ ],
424
+ "winner_to": 210,
425
+ "loser_to": 471
426
+ },
427
+ {
428
+ "seats": [
429
+ 213,
430
+ 215
431
+ ],
432
+ "winner_to": 214,
433
+ "loser_to": 473
434
+ },
435
+ {
436
+ "seats": [
437
+ 217,
438
+ 219
439
+ ],
440
+ "winner_to": 218,
441
+ "loser_to": 477
442
+ },
443
+ {
444
+ "seats": [
445
+ 221,
446
+ 223
447
+ ],
448
+ "winner_to": 222,
449
+ "loser_to": 479
450
+ },
451
+ {
452
+ "seats": [
453
+ 225,
454
+ 227
455
+ ],
456
+ "winner_to": 226,
457
+ "loser_to": 487
458
+ },
459
+ {
460
+ "seats": [
461
+ 229,
462
+ 231
463
+ ],
464
+ "winner_to": 230,
465
+ "loser_to": 489
466
+ },
467
+ {
468
+ "seats": [
469
+ 233,
470
+ 235
471
+ ],
472
+ "winner_to": 234,
473
+ "loser_to": 493
474
+ },
475
+ {
476
+ "seats": [
477
+ 237,
478
+ 239
479
+ ],
480
+ "winner_to": 238,
481
+ "loser_to": 495
482
+ },
483
+ {
484
+ "seats": [
485
+ 241,
486
+ 243
487
+ ],
488
+ "winner_to": 242,
489
+ "loser_to": 501
490
+ },
491
+ {
492
+ "seats": [
493
+ 245,
494
+ 247
495
+ ],
496
+ "winner_to": 246,
497
+ "loser_to": 503
498
+ },
499
+ {
500
+ "seats": [
501
+ 249,
502
+ 251
503
+ ],
504
+ "winner_to": 250,
505
+ "loser_to": 507
506
+ },
507
+ {
508
+ "seats": [
509
+ 253,
510
+ 255
511
+ ],
512
+ "winner_to": 254,
513
+ "loser_to": 509
514
+ },
515
+ {
516
+ "seats": [
517
+ 2,
518
+ 6
519
+ ],
520
+ "winner_to": 4,
521
+ "loser_to": 267
522
+ },
523
+ {
524
+ "seats": [
525
+ 10,
526
+ 14
527
+ ],
528
+ "winner_to": 12,
529
+ "loser_to": 273
530
+ },
531
+ {
532
+ "seats": [
533
+ 18,
534
+ 22
535
+ ],
536
+ "winner_to": 20,
537
+ "loser_to": 281
538
+ },
539
+ {
540
+ "seats": [
541
+ 26,
542
+ 30
543
+ ],
544
+ "winner_to": 28,
545
+ "loser_to": 287
546
+ },
547
+ {
548
+ "seats": [
549
+ 34,
550
+ 38
551
+ ],
552
+ "winner_to": 36,
553
+ "loser_to": 297
554
+ },
555
+ {
556
+ "seats": [
557
+ 42,
558
+ 46
559
+ ],
560
+ "winner_to": 44,
561
+ "loser_to": 303
562
+ },
563
+ {
564
+ "seats": [
565
+ 50,
566
+ 54
567
+ ],
568
+ "winner_to": 52,
569
+ "loser_to": 311
570
+ },
571
+ {
572
+ "seats": [
573
+ 58,
574
+ 62
575
+ ],
576
+ "winner_to": 60,
577
+ "loser_to": 317
578
+ },
579
+ {
580
+ "seats": [
581
+ 66,
582
+ 70
583
+ ],
584
+ "winner_to": 68,
585
+ "loser_to": 329
586
+ },
587
+ {
588
+ "seats": [
589
+ 74,
590
+ 78
591
+ ],
592
+ "winner_to": 76,
593
+ "loser_to": 335
594
+ },
595
+ {
596
+ "seats": [
597
+ 82,
598
+ 86
599
+ ],
600
+ "winner_to": 84,
601
+ "loser_to": 343
602
+ },
603
+ {
604
+ "seats": [
605
+ 90,
606
+ 94
607
+ ],
608
+ "winner_to": 92,
609
+ "loser_to": 349
610
+ },
611
+ {
612
+ "seats": [
613
+ 98,
614
+ 102
615
+ ],
616
+ "winner_to": 100,
617
+ "loser_to": 359
618
+ },
619
+ {
620
+ "seats": [
621
+ 106,
622
+ 110
623
+ ],
624
+ "winner_to": 108,
625
+ "loser_to": 365
626
+ },
627
+ {
628
+ "seats": [
629
+ 114,
630
+ 118
631
+ ],
632
+ "winner_to": 116,
633
+ "loser_to": 373
634
+ },
635
+ {
636
+ "seats": [
637
+ 122,
638
+ 126
639
+ ],
640
+ "winner_to": 124,
641
+ "loser_to": 379
642
+ },
643
+ {
644
+ "seats": [
645
+ 130,
646
+ 134
647
+ ],
648
+ "winner_to": 132,
649
+ "loser_to": 393
650
+ },
651
+ {
652
+ "seats": [
653
+ 138,
654
+ 142
655
+ ],
656
+ "winner_to": 140,
657
+ "loser_to": 399
658
+ },
659
+ {
660
+ "seats": [
661
+ 146,
662
+ 150
663
+ ],
664
+ "winner_to": 148,
665
+ "loser_to": 407
666
+ },
667
+ {
668
+ "seats": [
669
+ 154,
670
+ 158
671
+ ],
672
+ "winner_to": 156,
673
+ "loser_to": 413
674
+ },
675
+ {
676
+ "seats": [
677
+ 162,
678
+ 166
679
+ ],
680
+ "winner_to": 164,
681
+ "loser_to": 423
682
+ },
683
+ {
684
+ "seats": [
685
+ 170,
686
+ 174
687
+ ],
688
+ "winner_to": 172,
689
+ "loser_to": 429
690
+ },
691
+ {
692
+ "seats": [
693
+ 178,
694
+ 182
695
+ ],
696
+ "winner_to": 180,
697
+ "loser_to": 437
698
+ },
699
+ {
700
+ "seats": [
701
+ 186,
702
+ 190
703
+ ],
704
+ "winner_to": 188,
705
+ "loser_to": 443
706
+ },
707
+ {
708
+ "seats": [
709
+ 194,
710
+ 198
711
+ ],
712
+ "winner_to": 196,
713
+ "loser_to": 455
714
+ },
715
+ {
716
+ "seats": [
717
+ 202,
718
+ 206
719
+ ],
720
+ "winner_to": 204,
721
+ "loser_to": 461
722
+ },
723
+ {
724
+ "seats": [
725
+ 210,
726
+ 214
727
+ ],
728
+ "winner_to": 212,
729
+ "loser_to": 469
730
+ },
731
+ {
732
+ "seats": [
733
+ 218,
734
+ 222
735
+ ],
736
+ "winner_to": 220,
737
+ "loser_to": 475
738
+ },
739
+ {
740
+ "seats": [
741
+ 226,
742
+ 230
743
+ ],
744
+ "winner_to": 228,
745
+ "loser_to": 485
746
+ },
747
+ {
748
+ "seats": [
749
+ 234,
750
+ 238
751
+ ],
752
+ "winner_to": 236,
753
+ "loser_to": 491
754
+ },
755
+ {
756
+ "seats": [
757
+ 242,
758
+ 246
759
+ ],
760
+ "winner_to": 244,
761
+ "loser_to": 499
762
+ },
763
+ {
764
+ "seats": [
765
+ 250,
766
+ 254
767
+ ],
768
+ "winner_to": 252,
769
+ "loser_to": 505
770
+ },
771
+ {
772
+ "seats": [
773
+ 4,
774
+ 12
775
+ ],
776
+ "winner_to": 8,
777
+ "loser_to": 265
778
+ },
779
+ {
780
+ "seats": [
781
+ 20,
782
+ 28
783
+ ],
784
+ "winner_to": 24,
785
+ "loser_to": 279
786
+ },
787
+ {
788
+ "seats": [
789
+ 36,
790
+ 44
791
+ ],
792
+ "winner_to": 40,
793
+ "loser_to": 295
794
+ },
795
+ {
796
+ "seats": [
797
+ 52,
798
+ 60
799
+ ],
800
+ "winner_to": 56,
801
+ "loser_to": 309
802
+ },
803
+ {
804
+ "seats": [
805
+ 68,
806
+ 76
807
+ ],
808
+ "winner_to": 72,
809
+ "loser_to": 327
810
+ },
811
+ {
812
+ "seats": [
813
+ 84,
814
+ 92
815
+ ],
816
+ "winner_to": 88,
817
+ "loser_to": 341
818
+ },
819
+ {
820
+ "seats": [
821
+ 100,
822
+ 108
823
+ ],
824
+ "winner_to": 104,
825
+ "loser_to": 357
826
+ },
827
+ {
828
+ "seats": [
829
+ 116,
830
+ 124
831
+ ],
832
+ "winner_to": 120,
833
+ "loser_to": 371
834
+ },
835
+ {
836
+ "seats": [
837
+ 132,
838
+ 140
839
+ ],
840
+ "winner_to": 136,
841
+ "loser_to": 391
842
+ },
843
+ {
844
+ "seats": [
845
+ 148,
846
+ 156
847
+ ],
848
+ "winner_to": 152,
849
+ "loser_to": 405
850
+ },
851
+ {
852
+ "seats": [
853
+ 164,
854
+ 172
855
+ ],
856
+ "winner_to": 168,
857
+ "loser_to": 421
858
+ },
859
+ {
860
+ "seats": [
861
+ 180,
862
+ 188
863
+ ],
864
+ "winner_to": 184,
865
+ "loser_to": 435
866
+ },
867
+ {
868
+ "seats": [
869
+ 196,
870
+ 204
871
+ ],
872
+ "winner_to": 200,
873
+ "loser_to": 453
874
+ },
875
+ {
876
+ "seats": [
877
+ 212,
878
+ 220
879
+ ],
880
+ "winner_to": 216,
881
+ "loser_to": 467
882
+ },
883
+ {
884
+ "seats": [
885
+ 228,
886
+ 236
887
+ ],
888
+ "winner_to": 232,
889
+ "loser_to": 483
890
+ },
891
+ {
892
+ "seats": [
893
+ 244,
894
+ 252
895
+ ],
896
+ "winner_to": 248,
897
+ "loser_to": 497
898
+ },
899
+ {
900
+ "seats": [
901
+ 8,
902
+ 24
903
+ ],
904
+ "winner_to": 16,
905
+ "loser_to": 263
906
+ },
907
+ {
908
+ "seats": [
909
+ 40,
910
+ 56
911
+ ],
912
+ "winner_to": 48,
913
+ "loser_to": 293
914
+ },
915
+ {
916
+ "seats": [
917
+ 72,
918
+ 88
919
+ ],
920
+ "winner_to": 80,
921
+ "loser_to": 325
922
+ },
923
+ {
924
+ "seats": [
925
+ 104,
926
+ 120
927
+ ],
928
+ "winner_to": 112,
929
+ "loser_to": 355
930
+ },
931
+ {
932
+ "seats": [
933
+ 136,
934
+ 152
935
+ ],
936
+ "winner_to": 144,
937
+ "loser_to": 389
938
+ },
939
+ {
940
+ "seats": [
941
+ 168,
942
+ 184
943
+ ],
944
+ "winner_to": 176,
945
+ "loser_to": 419
946
+ },
947
+ {
948
+ "seats": [
949
+ 200,
950
+ 216
951
+ ],
952
+ "winner_to": 208,
953
+ "loser_to": 451
954
+ },
955
+ {
956
+ "seats": [
957
+ 232,
958
+ 248
959
+ ],
960
+ "winner_to": 240,
961
+ "loser_to": 481
962
+ },
963
+ {
964
+ "seats": [
965
+ 16,
966
+ 48
967
+ ],
968
+ "winner_to": 32,
969
+ "loser_to": 261
970
+ },
971
+ {
972
+ "seats": [
973
+ 80,
974
+ 112
975
+ ],
976
+ "winner_to": 96,
977
+ "loser_to": 323
978
+ },
979
+ {
980
+ "seats": [
981
+ 144,
982
+ 176
983
+ ],
984
+ "winner_to": 160,
985
+ "loser_to": 387
986
+ },
987
+ {
988
+ "seats": [
989
+ 208,
990
+ 240
991
+ ],
992
+ "winner_to": 224,
993
+ "loser_to": 449
994
+ },
995
+ {
996
+ "seats": [
997
+ 32,
998
+ 96
999
+ ],
1000
+ "winner_to": 64,
1001
+ "loser_to": 259
1002
+ },
1003
+ {
1004
+ "seats": [
1005
+ 160,
1006
+ 224
1007
+ ],
1008
+ "winner_to": 192,
1009
+ "loser_to": 385
1010
+ },
1011
+ {
1012
+ "seats": [
1013
+ 64,
1014
+ 192
1015
+ ],
1016
+ "winner_to": 128,
1017
+ "loser_to": 257
1018
+ },
1019
+ {
1020
+ "seats": [
1021
+ 269,
1022
+ 271
1023
+ ],
1024
+ "winner_to": 270,
1025
+ "loser_to": null
1026
+ },
1027
+ {
1028
+ "seats": [
1029
+ 275,
1030
+ 277
1031
+ ],
1032
+ "winner_to": 276,
1033
+ "loser_to": null
1034
+ },
1035
+ {
1036
+ "seats": [
1037
+ 283,
1038
+ 285
1039
+ ],
1040
+ "winner_to": 284,
1041
+ "loser_to": null
1042
+ },
1043
+ {
1044
+ "seats": [
1045
+ 289,
1046
+ 291
1047
+ ],
1048
+ "winner_to": 290,
1049
+ "loser_to": null
1050
+ },
1051
+ {
1052
+ "seats": [
1053
+ 299,
1054
+ 301
1055
+ ],
1056
+ "winner_to": 300,
1057
+ "loser_to": null
1058
+ },
1059
+ {
1060
+ "seats": [
1061
+ 305,
1062
+ 307
1063
+ ],
1064
+ "winner_to": 306,
1065
+ "loser_to": null
1066
+ },
1067
+ {
1068
+ "seats": [
1069
+ 313,
1070
+ 315
1071
+ ],
1072
+ "winner_to": 314,
1073
+ "loser_to": null
1074
+ },
1075
+ {
1076
+ "seats": [
1077
+ 319,
1078
+ 321
1079
+ ],
1080
+ "winner_to": 320,
1081
+ "loser_to": null
1082
+ },
1083
+ {
1084
+ "seats": [
1085
+ 331,
1086
+ 333
1087
+ ],
1088
+ "winner_to": 332,
1089
+ "loser_to": null
1090
+ },
1091
+ {
1092
+ "seats": [
1093
+ 337,
1094
+ 339
1095
+ ],
1096
+ "winner_to": 338,
1097
+ "loser_to": null
1098
+ },
1099
+ {
1100
+ "seats": [
1101
+ 345,
1102
+ 347
1103
+ ],
1104
+ "winner_to": 346,
1105
+ "loser_to": null
1106
+ },
1107
+ {
1108
+ "seats": [
1109
+ 351,
1110
+ 353
1111
+ ],
1112
+ "winner_to": 352,
1113
+ "loser_to": null
1114
+ },
1115
+ {
1116
+ "seats": [
1117
+ 361,
1118
+ 363
1119
+ ],
1120
+ "winner_to": 362,
1121
+ "loser_to": null
1122
+ },
1123
+ {
1124
+ "seats": [
1125
+ 367,
1126
+ 369
1127
+ ],
1128
+ "winner_to": 368,
1129
+ "loser_to": null
1130
+ },
1131
+ {
1132
+ "seats": [
1133
+ 375,
1134
+ 377
1135
+ ],
1136
+ "winner_to": 376,
1137
+ "loser_to": null
1138
+ },
1139
+ {
1140
+ "seats": [
1141
+ 381,
1142
+ 383
1143
+ ],
1144
+ "winner_to": 382,
1145
+ "loser_to": null
1146
+ },
1147
+ {
1148
+ "seats": [
1149
+ 395,
1150
+ 397
1151
+ ],
1152
+ "winner_to": 396,
1153
+ "loser_to": null
1154
+ },
1155
+ {
1156
+ "seats": [
1157
+ 401,
1158
+ 403
1159
+ ],
1160
+ "winner_to": 402,
1161
+ "loser_to": null
1162
+ },
1163
+ {
1164
+ "seats": [
1165
+ 409,
1166
+ 411
1167
+ ],
1168
+ "winner_to": 410,
1169
+ "loser_to": null
1170
+ },
1171
+ {
1172
+ "seats": [
1173
+ 415,
1174
+ 417
1175
+ ],
1176
+ "winner_to": 416,
1177
+ "loser_to": null
1178
+ },
1179
+ {
1180
+ "seats": [
1181
+ 425,
1182
+ 427
1183
+ ],
1184
+ "winner_to": 426,
1185
+ "loser_to": null
1186
+ },
1187
+ {
1188
+ "seats": [
1189
+ 431,
1190
+ 433
1191
+ ],
1192
+ "winner_to": 432,
1193
+ "loser_to": null
1194
+ },
1195
+ {
1196
+ "seats": [
1197
+ 439,
1198
+ 441
1199
+ ],
1200
+ "winner_to": 440,
1201
+ "loser_to": null
1202
+ },
1203
+ {
1204
+ "seats": [
1205
+ 445,
1206
+ 447
1207
+ ],
1208
+ "winner_to": 446,
1209
+ "loser_to": null
1210
+ },
1211
+ {
1212
+ "seats": [
1213
+ 457,
1214
+ 459
1215
+ ],
1216
+ "winner_to": 458,
1217
+ "loser_to": null
1218
+ },
1219
+ {
1220
+ "seats": [
1221
+ 463,
1222
+ 465
1223
+ ],
1224
+ "winner_to": 464,
1225
+ "loser_to": null
1226
+ },
1227
+ {
1228
+ "seats": [
1229
+ 471,
1230
+ 473
1231
+ ],
1232
+ "winner_to": 472,
1233
+ "loser_to": null
1234
+ },
1235
+ {
1236
+ "seats": [
1237
+ 477,
1238
+ 479
1239
+ ],
1240
+ "winner_to": 478,
1241
+ "loser_to": null
1242
+ },
1243
+ {
1244
+ "seats": [
1245
+ 487,
1246
+ 489
1247
+ ],
1248
+ "winner_to": 488,
1249
+ "loser_to": null
1250
+ },
1251
+ {
1252
+ "seats": [
1253
+ 493,
1254
+ 495
1255
+ ],
1256
+ "winner_to": 494,
1257
+ "loser_to": null
1258
+ },
1259
+ {
1260
+ "seats": [
1261
+ 501,
1262
+ 503
1263
+ ],
1264
+ "winner_to": 502,
1265
+ "loser_to": null
1266
+ },
1267
+ {
1268
+ "seats": [
1269
+ 507,
1270
+ 509
1271
+ ],
1272
+ "winner_to": 508,
1273
+ "loser_to": null
1274
+ },
1275
+ {
1276
+ "seats": [
1277
+ 267,
1278
+ 270
1279
+ ],
1280
+ "winner_to": 268,
1281
+ "loser_to": null
1282
+ },
1283
+ {
1284
+ "seats": [
1285
+ 273,
1286
+ 276
1287
+ ],
1288
+ "winner_to": 274,
1289
+ "loser_to": null
1290
+ },
1291
+ {
1292
+ "seats": [
1293
+ 281,
1294
+ 284
1295
+ ],
1296
+ "winner_to": 282,
1297
+ "loser_to": null
1298
+ },
1299
+ {
1300
+ "seats": [
1301
+ 287,
1302
+ 290
1303
+ ],
1304
+ "winner_to": 288,
1305
+ "loser_to": null
1306
+ },
1307
+ {
1308
+ "seats": [
1309
+ 297,
1310
+ 300
1311
+ ],
1312
+ "winner_to": 298,
1313
+ "loser_to": null
1314
+ },
1315
+ {
1316
+ "seats": [
1317
+ 303,
1318
+ 306
1319
+ ],
1320
+ "winner_to": 304,
1321
+ "loser_to": null
1322
+ },
1323
+ {
1324
+ "seats": [
1325
+ 311,
1326
+ 314
1327
+ ],
1328
+ "winner_to": 312,
1329
+ "loser_to": null
1330
+ },
1331
+ {
1332
+ "seats": [
1333
+ 317,
1334
+ 320
1335
+ ],
1336
+ "winner_to": 318,
1337
+ "loser_to": null
1338
+ },
1339
+ {
1340
+ "seats": [
1341
+ 329,
1342
+ 332
1343
+ ],
1344
+ "winner_to": 330,
1345
+ "loser_to": null
1346
+ },
1347
+ {
1348
+ "seats": [
1349
+ 335,
1350
+ 338
1351
+ ],
1352
+ "winner_to": 336,
1353
+ "loser_to": null
1354
+ },
1355
+ {
1356
+ "seats": [
1357
+ 343,
1358
+ 346
1359
+ ],
1360
+ "winner_to": 344,
1361
+ "loser_to": null
1362
+ },
1363
+ {
1364
+ "seats": [
1365
+ 349,
1366
+ 352
1367
+ ],
1368
+ "winner_to": 350,
1369
+ "loser_to": null
1370
+ },
1371
+ {
1372
+ "seats": [
1373
+ 359,
1374
+ 362
1375
+ ],
1376
+ "winner_to": 360,
1377
+ "loser_to": null
1378
+ },
1379
+ {
1380
+ "seats": [
1381
+ 365,
1382
+ 368
1383
+ ],
1384
+ "winner_to": 366,
1385
+ "loser_to": null
1386
+ },
1387
+ {
1388
+ "seats": [
1389
+ 373,
1390
+ 376
1391
+ ],
1392
+ "winner_to": 374,
1393
+ "loser_to": null
1394
+ },
1395
+ {
1396
+ "seats": [
1397
+ 379,
1398
+ 382
1399
+ ],
1400
+ "winner_to": 380,
1401
+ "loser_to": null
1402
+ },
1403
+ {
1404
+ "seats": [
1405
+ 393,
1406
+ 396
1407
+ ],
1408
+ "winner_to": 394,
1409
+ "loser_to": null
1410
+ },
1411
+ {
1412
+ "seats": [
1413
+ 399,
1414
+ 402
1415
+ ],
1416
+ "winner_to": 400,
1417
+ "loser_to": null
1418
+ },
1419
+ {
1420
+ "seats": [
1421
+ 407,
1422
+ 410
1423
+ ],
1424
+ "winner_to": 408,
1425
+ "loser_to": null
1426
+ },
1427
+ {
1428
+ "seats": [
1429
+ 413,
1430
+ 416
1431
+ ],
1432
+ "winner_to": 414,
1433
+ "loser_to": null
1434
+ },
1435
+ {
1436
+ "seats": [
1437
+ 423,
1438
+ 426
1439
+ ],
1440
+ "winner_to": 424,
1441
+ "loser_to": null
1442
+ },
1443
+ {
1444
+ "seats": [
1445
+ 429,
1446
+ 432
1447
+ ],
1448
+ "winner_to": 430,
1449
+ "loser_to": null
1450
+ },
1451
+ {
1452
+ "seats": [
1453
+ 437,
1454
+ 440
1455
+ ],
1456
+ "winner_to": 438,
1457
+ "loser_to": null
1458
+ },
1459
+ {
1460
+ "seats": [
1461
+ 443,
1462
+ 446
1463
+ ],
1464
+ "winner_to": 444,
1465
+ "loser_to": null
1466
+ },
1467
+ {
1468
+ "seats": [
1469
+ 455,
1470
+ 458
1471
+ ],
1472
+ "winner_to": 456,
1473
+ "loser_to": null
1474
+ },
1475
+ {
1476
+ "seats": [
1477
+ 461,
1478
+ 464
1479
+ ],
1480
+ "winner_to": 462,
1481
+ "loser_to": null
1482
+ },
1483
+ {
1484
+ "seats": [
1485
+ 469,
1486
+ 472
1487
+ ],
1488
+ "winner_to": 470,
1489
+ "loser_to": null
1490
+ },
1491
+ {
1492
+ "seats": [
1493
+ 475,
1494
+ 478
1495
+ ],
1496
+ "winner_to": 476,
1497
+ "loser_to": null
1498
+ },
1499
+ {
1500
+ "seats": [
1501
+ 485,
1502
+ 488
1503
+ ],
1504
+ "winner_to": 486,
1505
+ "loser_to": null
1506
+ },
1507
+ {
1508
+ "seats": [
1509
+ 491,
1510
+ 494
1511
+ ],
1512
+ "winner_to": 492,
1513
+ "loser_to": null
1514
+ },
1515
+ {
1516
+ "seats": [
1517
+ 499,
1518
+ 502
1519
+ ],
1520
+ "winner_to": 500,
1521
+ "loser_to": null
1522
+ },
1523
+ {
1524
+ "seats": [
1525
+ 505,
1526
+ 508
1527
+ ],
1528
+ "winner_to": 506,
1529
+ "loser_to": null
1530
+ },
1531
+ {
1532
+ "seats": [
1533
+ 268,
1534
+ 274
1535
+ ],
1536
+ "winner_to": 272,
1537
+ "loser_to": null
1538
+ },
1539
+ {
1540
+ "seats": [
1541
+ 282,
1542
+ 288
1543
+ ],
1544
+ "winner_to": 286,
1545
+ "loser_to": null
1546
+ },
1547
+ {
1548
+ "seats": [
1549
+ 298,
1550
+ 304
1551
+ ],
1552
+ "winner_to": 302,
1553
+ "loser_to": null
1554
+ },
1555
+ {
1556
+ "seats": [
1557
+ 312,
1558
+ 318
1559
+ ],
1560
+ "winner_to": 316,
1561
+ "loser_to": null
1562
+ },
1563
+ {
1564
+ "seats": [
1565
+ 330,
1566
+ 336
1567
+ ],
1568
+ "winner_to": 334,
1569
+ "loser_to": null
1570
+ },
1571
+ {
1572
+ "seats": [
1573
+ 344,
1574
+ 350
1575
+ ],
1576
+ "winner_to": 348,
1577
+ "loser_to": null
1578
+ },
1579
+ {
1580
+ "seats": [
1581
+ 360,
1582
+ 366
1583
+ ],
1584
+ "winner_to": 364,
1585
+ "loser_to": null
1586
+ },
1587
+ {
1588
+ "seats": [
1589
+ 374,
1590
+ 380
1591
+ ],
1592
+ "winner_to": 378,
1593
+ "loser_to": null
1594
+ },
1595
+ {
1596
+ "seats": [
1597
+ 394,
1598
+ 400
1599
+ ],
1600
+ "winner_to": 398,
1601
+ "loser_to": null
1602
+ },
1603
+ {
1604
+ "seats": [
1605
+ 408,
1606
+ 414
1607
+ ],
1608
+ "winner_to": 412,
1609
+ "loser_to": null
1610
+ },
1611
+ {
1612
+ "seats": [
1613
+ 424,
1614
+ 430
1615
+ ],
1616
+ "winner_to": 428,
1617
+ "loser_to": null
1618
+ },
1619
+ {
1620
+ "seats": [
1621
+ 438,
1622
+ 444
1623
+ ],
1624
+ "winner_to": 442,
1625
+ "loser_to": null
1626
+ },
1627
+ {
1628
+ "seats": [
1629
+ 456,
1630
+ 462
1631
+ ],
1632
+ "winner_to": 460,
1633
+ "loser_to": null
1634
+ },
1635
+ {
1636
+ "seats": [
1637
+ 470,
1638
+ 476
1639
+ ],
1640
+ "winner_to": 474,
1641
+ "loser_to": null
1642
+ },
1643
+ {
1644
+ "seats": [
1645
+ 486,
1646
+ 492
1647
+ ],
1648
+ "winner_to": 490,
1649
+ "loser_to": null
1650
+ },
1651
+ {
1652
+ "seats": [
1653
+ 500,
1654
+ 506
1655
+ ],
1656
+ "winner_to": 504,
1657
+ "loser_to": null
1658
+ },
1659
+ {
1660
+ "seats": [
1661
+ 265,
1662
+ 272
1663
+ ],
1664
+ "winner_to": 266,
1665
+ "loser_to": null
1666
+ },
1667
+ {
1668
+ "seats": [
1669
+ 279,
1670
+ 286
1671
+ ],
1672
+ "winner_to": 280,
1673
+ "loser_to": null
1674
+ },
1675
+ {
1676
+ "seats": [
1677
+ 295,
1678
+ 302
1679
+ ],
1680
+ "winner_to": 296,
1681
+ "loser_to": null
1682
+ },
1683
+ {
1684
+ "seats": [
1685
+ 309,
1686
+ 316
1687
+ ],
1688
+ "winner_to": 310,
1689
+ "loser_to": null
1690
+ },
1691
+ {
1692
+ "seats": [
1693
+ 327,
1694
+ 334
1695
+ ],
1696
+ "winner_to": 328,
1697
+ "loser_to": null
1698
+ },
1699
+ {
1700
+ "seats": [
1701
+ 341,
1702
+ 348
1703
+ ],
1704
+ "winner_to": 342,
1705
+ "loser_to": null
1706
+ },
1707
+ {
1708
+ "seats": [
1709
+ 357,
1710
+ 364
1711
+ ],
1712
+ "winner_to": 358,
1713
+ "loser_to": null
1714
+ },
1715
+ {
1716
+ "seats": [
1717
+ 371,
1718
+ 378
1719
+ ],
1720
+ "winner_to": 372,
1721
+ "loser_to": null
1722
+ },
1723
+ {
1724
+ "seats": [
1725
+ 391,
1726
+ 398
1727
+ ],
1728
+ "winner_to": 392,
1729
+ "loser_to": null
1730
+ },
1731
+ {
1732
+ "seats": [
1733
+ 405,
1734
+ 412
1735
+ ],
1736
+ "winner_to": 406,
1737
+ "loser_to": null
1738
+ },
1739
+ {
1740
+ "seats": [
1741
+ 421,
1742
+ 428
1743
+ ],
1744
+ "winner_to": 422,
1745
+ "loser_to": null
1746
+ },
1747
+ {
1748
+ "seats": [
1749
+ 435,
1750
+ 442
1751
+ ],
1752
+ "winner_to": 436,
1753
+ "loser_to": null
1754
+ },
1755
+ {
1756
+ "seats": [
1757
+ 453,
1758
+ 460
1759
+ ],
1760
+ "winner_to": 454,
1761
+ "loser_to": null
1762
+ },
1763
+ {
1764
+ "seats": [
1765
+ 467,
1766
+ 474
1767
+ ],
1768
+ "winner_to": 468,
1769
+ "loser_to": null
1770
+ },
1771
+ {
1772
+ "seats": [
1773
+ 483,
1774
+ 490
1775
+ ],
1776
+ "winner_to": 484,
1777
+ "loser_to": null
1778
+ },
1779
+ {
1780
+ "seats": [
1781
+ 497,
1782
+ 504
1783
+ ],
1784
+ "winner_to": 498,
1785
+ "loser_to": null
1786
+ },
1787
+ {
1788
+ "seats": [
1789
+ 266,
1790
+ 280
1791
+ ],
1792
+ "winner_to": 278,
1793
+ "loser_to": null
1794
+ },
1795
+ {
1796
+ "seats": [
1797
+ 296,
1798
+ 310
1799
+ ],
1800
+ "winner_to": 308,
1801
+ "loser_to": null
1802
+ },
1803
+ {
1804
+ "seats": [
1805
+ 328,
1806
+ 342
1807
+ ],
1808
+ "winner_to": 340,
1809
+ "loser_to": null
1810
+ },
1811
+ {
1812
+ "seats": [
1813
+ 358,
1814
+ 372
1815
+ ],
1816
+ "winner_to": 370,
1817
+ "loser_to": null
1818
+ },
1819
+ {
1820
+ "seats": [
1821
+ 392,
1822
+ 406
1823
+ ],
1824
+ "winner_to": 404,
1825
+ "loser_to": null
1826
+ },
1827
+ {
1828
+ "seats": [
1829
+ 422,
1830
+ 436
1831
+ ],
1832
+ "winner_to": 434,
1833
+ "loser_to": null
1834
+ },
1835
+ {
1836
+ "seats": [
1837
+ 454,
1838
+ 468
1839
+ ],
1840
+ "winner_to": 466,
1841
+ "loser_to": null
1842
+ },
1843
+ {
1844
+ "seats": [
1845
+ 484,
1846
+ 498
1847
+ ],
1848
+ "winner_to": 496,
1849
+ "loser_to": null
1850
+ },
1851
+ {
1852
+ "seats": [
1853
+ 263,
1854
+ 278
1855
+ ],
1856
+ "winner_to": 264,
1857
+ "loser_to": null
1858
+ },
1859
+ {
1860
+ "seats": [
1861
+ 293,
1862
+ 308
1863
+ ],
1864
+ "winner_to": 294,
1865
+ "loser_to": null
1866
+ },
1867
+ {
1868
+ "seats": [
1869
+ 325,
1870
+ 340
1871
+ ],
1872
+ "winner_to": 326,
1873
+ "loser_to": null
1874
+ },
1875
+ {
1876
+ "seats": [
1877
+ 355,
1878
+ 370
1879
+ ],
1880
+ "winner_to": 356,
1881
+ "loser_to": null
1882
+ },
1883
+ {
1884
+ "seats": [
1885
+ 389,
1886
+ 404
1887
+ ],
1888
+ "winner_to": 390,
1889
+ "loser_to": null
1890
+ },
1891
+ {
1892
+ "seats": [
1893
+ 419,
1894
+ 434
1895
+ ],
1896
+ "winner_to": 420,
1897
+ "loser_to": null
1898
+ },
1899
+ {
1900
+ "seats": [
1901
+ 451,
1902
+ 466
1903
+ ],
1904
+ "winner_to": 452,
1905
+ "loser_to": null
1906
+ },
1907
+ {
1908
+ "seats": [
1909
+ 481,
1910
+ 496
1911
+ ],
1912
+ "winner_to": 482,
1913
+ "loser_to": null
1914
+ },
1915
+ {
1916
+ "seats": [
1917
+ 264,
1918
+ 294
1919
+ ],
1920
+ "winner_to": 292,
1921
+ "loser_to": null
1922
+ },
1923
+ {
1924
+ "seats": [
1925
+ 326,
1926
+ 356
1927
+ ],
1928
+ "winner_to": 354,
1929
+ "loser_to": null
1930
+ },
1931
+ {
1932
+ "seats": [
1933
+ 390,
1934
+ 420
1935
+ ],
1936
+ "winner_to": 418,
1937
+ "loser_to": null
1938
+ },
1939
+ {
1940
+ "seats": [
1941
+ 452,
1942
+ 482
1943
+ ],
1944
+ "winner_to": 480,
1945
+ "loser_to": null
1946
+ },
1947
+ {
1948
+ "seats": [
1949
+ 261,
1950
+ 292
1951
+ ],
1952
+ "winner_to": 262,
1953
+ "loser_to": null
1954
+ },
1955
+ {
1956
+ "seats": [
1957
+ 323,
1958
+ 354
1959
+ ],
1960
+ "winner_to": 324,
1961
+ "loser_to": null
1962
+ },
1963
+ {
1964
+ "seats": [
1965
+ 387,
1966
+ 418
1967
+ ],
1968
+ "winner_to": 388,
1969
+ "loser_to": null
1970
+ },
1971
+ {
1972
+ "seats": [
1973
+ 449,
1974
+ 480
1975
+ ],
1976
+ "winner_to": 450,
1977
+ "loser_to": null
1978
+ },
1979
+ {
1980
+ "seats": [
1981
+ 262,
1982
+ 324
1983
+ ],
1984
+ "winner_to": 322,
1985
+ "loser_to": null
1986
+ },
1987
+ {
1988
+ "seats": [
1989
+ 388,
1990
+ 450
1991
+ ],
1992
+ "winner_to": 448,
1993
+ "loser_to": null
1994
+ },
1995
+ {
1996
+ "seats": [
1997
+ 259,
1998
+ 322
1999
+ ],
2000
+ "winner_to": 260,
2001
+ "loser_to": null
2002
+ },
2003
+ {
2004
+ "seats": [
2005
+ 385,
2006
+ 448
2007
+ ],
2008
+ "winner_to": 386,
2009
+ "loser_to": null
2010
+ },
2011
+ {
2012
+ "seats": [
2013
+ 260,
2014
+ 386
2015
+ ],
2016
+ "winner_to": 384,
2017
+ "loser_to": null
2018
+ },
2019
+ {
2020
+ "seats": [
2021
+ 257,
2022
+ 384
2023
+ ],
2024
+ "winner_to": 258,
2025
+ "loser_to": null
2026
+ },
2027
+ {
2028
+ "seats": [
2029
+ 128,
2030
+ 258
2031
+ ],
2032
+ "winner_to": null,
2033
+ "loser_to": null
2034
+ }
2035
+ ],
2036
+ "seats": [
2037
+ {
2038
+ "position": 256
2039
+ },
2040
+ {
2041
+ "position": 128
2042
+ },
2043
+ {
2044
+ "position": 258
2045
+ },
2046
+ {
2047
+ "position": 64
2048
+ },
2049
+ {
2050
+ "position": 192
2051
+ },
2052
+ {
2053
+ "position": 32
2054
+ },
2055
+ {
2056
+ "position": 96
2057
+ },
2058
+ {
2059
+ "position": 160
2060
+ },
2061
+ {
2062
+ "position": 224
2063
+ },
2064
+ {
2065
+ "position": 16
2066
+ },
2067
+ {
2068
+ "position": 48
2069
+ },
2070
+ {
2071
+ "position": 80
2072
+ },
2073
+ {
2074
+ "position": 112
2075
+ },
2076
+ {
2077
+ "position": 144
2078
+ },
2079
+ {
2080
+ "position": 176
2081
+ },
2082
+ {
2083
+ "position": 208
2084
+ },
2085
+ {
2086
+ "position": 240
2087
+ },
2088
+ {
2089
+ "position": 8
2090
+ },
2091
+ {
2092
+ "position": 24
2093
+ },
2094
+ {
2095
+ "position": 40
2096
+ },
2097
+ {
2098
+ "position": 56
2099
+ },
2100
+ {
2101
+ "position": 72
2102
+ },
2103
+ {
2104
+ "position": 88
2105
+ },
2106
+ {
2107
+ "position": 104
2108
+ },
2109
+ {
2110
+ "position": 120
2111
+ },
2112
+ {
2113
+ "position": 136
2114
+ },
2115
+ {
2116
+ "position": 152
2117
+ },
2118
+ {
2119
+ "position": 168
2120
+ },
2121
+ {
2122
+ "position": 184
2123
+ },
2124
+ {
2125
+ "position": 200
2126
+ },
2127
+ {
2128
+ "position": 216
2129
+ },
2130
+ {
2131
+ "position": 232
2132
+ },
2133
+ {
2134
+ "position": 248
2135
+ },
2136
+ {
2137
+ "position": 4
2138
+ },
2139
+ {
2140
+ "position": 12
2141
+ },
2142
+ {
2143
+ "position": 20
2144
+ },
2145
+ {
2146
+ "position": 28
2147
+ },
2148
+ {
2149
+ "position": 36
2150
+ },
2151
+ {
2152
+ "position": 44
2153
+ },
2154
+ {
2155
+ "position": 52
2156
+ },
2157
+ {
2158
+ "position": 60
2159
+ },
2160
+ {
2161
+ "position": 68
2162
+ },
2163
+ {
2164
+ "position": 76
2165
+ },
2166
+ {
2167
+ "position": 84
2168
+ },
2169
+ {
2170
+ "position": 92
2171
+ },
2172
+ {
2173
+ "position": 100
2174
+ },
2175
+ {
2176
+ "position": 108
2177
+ },
2178
+ {
2179
+ "position": 116
2180
+ },
2181
+ {
2182
+ "position": 124
2183
+ },
2184
+ {
2185
+ "position": 132
2186
+ },
2187
+ {
2188
+ "position": 140
2189
+ },
2190
+ {
2191
+ "position": 148
2192
+ },
2193
+ {
2194
+ "position": 156
2195
+ },
2196
+ {
2197
+ "position": 164
2198
+ },
2199
+ {
2200
+ "position": 172
2201
+ },
2202
+ {
2203
+ "position": 180
2204
+ },
2205
+ {
2206
+ "position": 188
2207
+ },
2208
+ {
2209
+ "position": 196
2210
+ },
2211
+ {
2212
+ "position": 204
2213
+ },
2214
+ {
2215
+ "position": 212
2216
+ },
2217
+ {
2218
+ "position": 220
2219
+ },
2220
+ {
2221
+ "position": 228
2222
+ },
2223
+ {
2224
+ "position": 236
2225
+ },
2226
+ {
2227
+ "position": 244
2228
+ },
2229
+ {
2230
+ "position": 252
2231
+ },
2232
+ {
2233
+ "position": 2
2234
+ },
2235
+ {
2236
+ "position": 6
2237
+ },
2238
+ {
2239
+ "position": 10
2240
+ },
2241
+ {
2242
+ "position": 14
2243
+ },
2244
+ {
2245
+ "position": 18
2246
+ },
2247
+ {
2248
+ "position": 22
2249
+ },
2250
+ {
2251
+ "position": 26
2252
+ },
2253
+ {
2254
+ "position": 30
2255
+ },
2256
+ {
2257
+ "position": 34
2258
+ },
2259
+ {
2260
+ "position": 38
2261
+ },
2262
+ {
2263
+ "position": 42
2264
+ },
2265
+ {
2266
+ "position": 46
2267
+ },
2268
+ {
2269
+ "position": 50
2270
+ },
2271
+ {
2272
+ "position": 54
2273
+ },
2274
+ {
2275
+ "position": 58
2276
+ },
2277
+ {
2278
+ "position": 62
2279
+ },
2280
+ {
2281
+ "position": 66
2282
+ },
2283
+ {
2284
+ "position": 70
2285
+ },
2286
+ {
2287
+ "position": 74
2288
+ },
2289
+ {
2290
+ "position": 78
2291
+ },
2292
+ {
2293
+ "position": 82
2294
+ },
2295
+ {
2296
+ "position": 86
2297
+ },
2298
+ {
2299
+ "position": 90
2300
+ },
2301
+ {
2302
+ "position": 94
2303
+ },
2304
+ {
2305
+ "position": 98
2306
+ },
2307
+ {
2308
+ "position": 102
2309
+ },
2310
+ {
2311
+ "position": 106
2312
+ },
2313
+ {
2314
+ "position": 110
2315
+ },
2316
+ {
2317
+ "position": 114
2318
+ },
2319
+ {
2320
+ "position": 118
2321
+ },
2322
+ {
2323
+ "position": 122
2324
+ },
2325
+ {
2326
+ "position": 126
2327
+ },
2328
+ {
2329
+ "position": 130
2330
+ },
2331
+ {
2332
+ "position": 134
2333
+ },
2334
+ {
2335
+ "position": 138
2336
+ },
2337
+ {
2338
+ "position": 142
2339
+ },
2340
+ {
2341
+ "position": 146
2342
+ },
2343
+ {
2344
+ "position": 150
2345
+ },
2346
+ {
2347
+ "position": 154
2348
+ },
2349
+ {
2350
+ "position": 158
2351
+ },
2352
+ {
2353
+ "position": 162
2354
+ },
2355
+ {
2356
+ "position": 166
2357
+ },
2358
+ {
2359
+ "position": 170
2360
+ },
2361
+ {
2362
+ "position": 174
2363
+ },
2364
+ {
2365
+ "position": 178
2366
+ },
2367
+ {
2368
+ "position": 182
2369
+ },
2370
+ {
2371
+ "position": 186
2372
+ },
2373
+ {
2374
+ "position": 190
2375
+ },
2376
+ {
2377
+ "position": 194
2378
+ },
2379
+ {
2380
+ "position": 198
2381
+ },
2382
+ {
2383
+ "position": 202
2384
+ },
2385
+ {
2386
+ "position": 206
2387
+ },
2388
+ {
2389
+ "position": 210
2390
+ },
2391
+ {
2392
+ "position": 214
2393
+ },
2394
+ {
2395
+ "position": 218
2396
+ },
2397
+ {
2398
+ "position": 222
2399
+ },
2400
+ {
2401
+ "position": 226
2402
+ },
2403
+ {
2404
+ "position": 230
2405
+ },
2406
+ {
2407
+ "position": 234
2408
+ },
2409
+ {
2410
+ "position": 238
2411
+ },
2412
+ {
2413
+ "position": 242
2414
+ },
2415
+ {
2416
+ "position": 246
2417
+ },
2418
+ {
2419
+ "position": 250
2420
+ },
2421
+ {
2422
+ "position": 254
2423
+ },
2424
+ {
2425
+ "position": 1
2426
+ },
2427
+ {
2428
+ "position": 3
2429
+ },
2430
+ {
2431
+ "position": 5
2432
+ },
2433
+ {
2434
+ "position": 7
2435
+ },
2436
+ {
2437
+ "position": 9
2438
+ },
2439
+ {
2440
+ "position": 11
2441
+ },
2442
+ {
2443
+ "position": 13
2444
+ },
2445
+ {
2446
+ "position": 15
2447
+ },
2448
+ {
2449
+ "position": 17
2450
+ },
2451
+ {
2452
+ "position": 19
2453
+ },
2454
+ {
2455
+ "position": 21
2456
+ },
2457
+ {
2458
+ "position": 23
2459
+ },
2460
+ {
2461
+ "position": 25
2462
+ },
2463
+ {
2464
+ "position": 27
2465
+ },
2466
+ {
2467
+ "position": 29
2468
+ },
2469
+ {
2470
+ "position": 31
2471
+ },
2472
+ {
2473
+ "position": 33
2474
+ },
2475
+ {
2476
+ "position": 35
2477
+ },
2478
+ {
2479
+ "position": 37
2480
+ },
2481
+ {
2482
+ "position": 39
2483
+ },
2484
+ {
2485
+ "position": 41
2486
+ },
2487
+ {
2488
+ "position": 43
2489
+ },
2490
+ {
2491
+ "position": 45
2492
+ },
2493
+ {
2494
+ "position": 47
2495
+ },
2496
+ {
2497
+ "position": 49
2498
+ },
2499
+ {
2500
+ "position": 51
2501
+ },
2502
+ {
2503
+ "position": 53
2504
+ },
2505
+ {
2506
+ "position": 55
2507
+ },
2508
+ {
2509
+ "position": 57
2510
+ },
2511
+ {
2512
+ "position": 59
2513
+ },
2514
+ {
2515
+ "position": 61
2516
+ },
2517
+ {
2518
+ "position": 63
2519
+ },
2520
+ {
2521
+ "position": 65
2522
+ },
2523
+ {
2524
+ "position": 67
2525
+ },
2526
+ {
2527
+ "position": 69
2528
+ },
2529
+ {
2530
+ "position": 71
2531
+ },
2532
+ {
2533
+ "position": 73
2534
+ },
2535
+ {
2536
+ "position": 75
2537
+ },
2538
+ {
2539
+ "position": 77
2540
+ },
2541
+ {
2542
+ "position": 79
2543
+ },
2544
+ {
2545
+ "position": 81
2546
+ },
2547
+ {
2548
+ "position": 83
2549
+ },
2550
+ {
2551
+ "position": 85
2552
+ },
2553
+ {
2554
+ "position": 87
2555
+ },
2556
+ {
2557
+ "position": 89
2558
+ },
2559
+ {
2560
+ "position": 91
2561
+ },
2562
+ {
2563
+ "position": 93
2564
+ },
2565
+ {
2566
+ "position": 95
2567
+ },
2568
+ {
2569
+ "position": 97
2570
+ },
2571
+ {
2572
+ "position": 99
2573
+ },
2574
+ {
2575
+ "position": 101
2576
+ },
2577
+ {
2578
+ "position": 103
2579
+ },
2580
+ {
2581
+ "position": 105
2582
+ },
2583
+ {
2584
+ "position": 107
2585
+ },
2586
+ {
2587
+ "position": 109
2588
+ },
2589
+ {
2590
+ "position": 111
2591
+ },
2592
+ {
2593
+ "position": 113
2594
+ },
2595
+ {
2596
+ "position": 115
2597
+ },
2598
+ {
2599
+ "position": 117
2600
+ },
2601
+ {
2602
+ "position": 119
2603
+ },
2604
+ {
2605
+ "position": 121
2606
+ },
2607
+ {
2608
+ "position": 123
2609
+ },
2610
+ {
2611
+ "position": 125
2612
+ },
2613
+ {
2614
+ "position": 127
2615
+ },
2616
+ {
2617
+ "position": 129
2618
+ },
2619
+ {
2620
+ "position": 131
2621
+ },
2622
+ {
2623
+ "position": 133
2624
+ },
2625
+ {
2626
+ "position": 135
2627
+ },
2628
+ {
2629
+ "position": 137
2630
+ },
2631
+ {
2632
+ "position": 139
2633
+ },
2634
+ {
2635
+ "position": 141
2636
+ },
2637
+ {
2638
+ "position": 143
2639
+ },
2640
+ {
2641
+ "position": 145
2642
+ },
2643
+ {
2644
+ "position": 147
2645
+ },
2646
+ {
2647
+ "position": 149
2648
+ },
2649
+ {
2650
+ "position": 151
2651
+ },
2652
+ {
2653
+ "position": 153
2654
+ },
2655
+ {
2656
+ "position": 155
2657
+ },
2658
+ {
2659
+ "position": 157
2660
+ },
2661
+ {
2662
+ "position": 159
2663
+ },
2664
+ {
2665
+ "position": 161
2666
+ },
2667
+ {
2668
+ "position": 163
2669
+ },
2670
+ {
2671
+ "position": 165
2672
+ },
2673
+ {
2674
+ "position": 167
2675
+ },
2676
+ {
2677
+ "position": 169
2678
+ },
2679
+ {
2680
+ "position": 171
2681
+ },
2682
+ {
2683
+ "position": 173
2684
+ },
2685
+ {
2686
+ "position": 175
2687
+ },
2688
+ {
2689
+ "position": 177
2690
+ },
2691
+ {
2692
+ "position": 179
2693
+ },
2694
+ {
2695
+ "position": 181
2696
+ },
2697
+ {
2698
+ "position": 183
2699
+ },
2700
+ {
2701
+ "position": 185
2702
+ },
2703
+ {
2704
+ "position": 187
2705
+ },
2706
+ {
2707
+ "position": 189
2708
+ },
2709
+ {
2710
+ "position": 191
2711
+ },
2712
+ {
2713
+ "position": 193
2714
+ },
2715
+ {
2716
+ "position": 195
2717
+ },
2718
+ {
2719
+ "position": 197
2720
+ },
2721
+ {
2722
+ "position": 199
2723
+ },
2724
+ {
2725
+ "position": 201
2726
+ },
2727
+ {
2728
+ "position": 203
2729
+ },
2730
+ {
2731
+ "position": 205
2732
+ },
2733
+ {
2734
+ "position": 207
2735
+ },
2736
+ {
2737
+ "position": 209
2738
+ },
2739
+ {
2740
+ "position": 211
2741
+ },
2742
+ {
2743
+ "position": 213
2744
+ },
2745
+ {
2746
+ "position": 215
2747
+ },
2748
+ {
2749
+ "position": 217
2750
+ },
2751
+ {
2752
+ "position": 219
2753
+ },
2754
+ {
2755
+ "position": 221
2756
+ },
2757
+ {
2758
+ "position": 223
2759
+ },
2760
+ {
2761
+ "position": 225
2762
+ },
2763
+ {
2764
+ "position": 227
2765
+ },
2766
+ {
2767
+ "position": 229
2768
+ },
2769
+ {
2770
+ "position": 231
2771
+ },
2772
+ {
2773
+ "position": 233
2774
+ },
2775
+ {
2776
+ "position": 235
2777
+ },
2778
+ {
2779
+ "position": 237
2780
+ },
2781
+ {
2782
+ "position": 239
2783
+ },
2784
+ {
2785
+ "position": 241
2786
+ },
2787
+ {
2788
+ "position": 243
2789
+ },
2790
+ {
2791
+ "position": 245
2792
+ },
2793
+ {
2794
+ "position": 247
2795
+ },
2796
+ {
2797
+ "position": 249
2798
+ },
2799
+ {
2800
+ "position": 251
2801
+ },
2802
+ {
2803
+ "position": 253
2804
+ },
2805
+ {
2806
+ "position": 255
2807
+ },
2808
+ {
2809
+ "position": 257
2810
+ },
2811
+ {
2812
+ "position": 384
2813
+ },
2814
+ {
2815
+ "position": 260
2816
+ },
2817
+ {
2818
+ "position": 386
2819
+ },
2820
+ {
2821
+ "position": 259
2822
+ },
2823
+ {
2824
+ "position": 322
2825
+ },
2826
+ {
2827
+ "position": 262
2828
+ },
2829
+ {
2830
+ "position": 324
2831
+ },
2832
+ {
2833
+ "position": 261
2834
+ },
2835
+ {
2836
+ "position": 292
2837
+ },
2838
+ {
2839
+ "position": 264
2840
+ },
2841
+ {
2842
+ "position": 294
2843
+ },
2844
+ {
2845
+ "position": 263
2846
+ },
2847
+ {
2848
+ "position": 278
2849
+ },
2850
+ {
2851
+ "position": 266
2852
+ },
2853
+ {
2854
+ "position": 280
2855
+ },
2856
+ {
2857
+ "position": 265
2858
+ },
2859
+ {
2860
+ "position": 272
2861
+ },
2862
+ {
2863
+ "position": 268
2864
+ },
2865
+ {
2866
+ "position": 274
2867
+ },
2868
+ {
2869
+ "position": 267
2870
+ },
2871
+ {
2872
+ "position": 270
2873
+ },
2874
+ {
2875
+ "position": 269
2876
+ },
2877
+ {
2878
+ "position": 271
2879
+ },
2880
+ {
2881
+ "position": 273
2882
+ },
2883
+ {
2884
+ "position": 276
2885
+ },
2886
+ {
2887
+ "position": 275
2888
+ },
2889
+ {
2890
+ "position": 277
2891
+ },
2892
+ {
2893
+ "position": 279
2894
+ },
2895
+ {
2896
+ "position": 286
2897
+ },
2898
+ {
2899
+ "position": 282
2900
+ },
2901
+ {
2902
+ "position": 288
2903
+ },
2904
+ {
2905
+ "position": 281
2906
+ },
2907
+ {
2908
+ "position": 284
2909
+ },
2910
+ {
2911
+ "position": 283
2912
+ },
2913
+ {
2914
+ "position": 285
2915
+ },
2916
+ {
2917
+ "position": 287
2918
+ },
2919
+ {
2920
+ "position": 290
2921
+ },
2922
+ {
2923
+ "position": 289
2924
+ },
2925
+ {
2926
+ "position": 291
2927
+ },
2928
+ {
2929
+ "position": 293
2930
+ },
2931
+ {
2932
+ "position": 308
2933
+ },
2934
+ {
2935
+ "position": 296
2936
+ },
2937
+ {
2938
+ "position": 310
2939
+ },
2940
+ {
2941
+ "position": 295
2942
+ },
2943
+ {
2944
+ "position": 302
2945
+ },
2946
+ {
2947
+ "position": 298
2948
+ },
2949
+ {
2950
+ "position": 304
2951
+ },
2952
+ {
2953
+ "position": 297
2954
+ },
2955
+ {
2956
+ "position": 300
2957
+ },
2958
+ {
2959
+ "position": 299
2960
+ },
2961
+ {
2962
+ "position": 301
2963
+ },
2964
+ {
2965
+ "position": 303
2966
+ },
2967
+ {
2968
+ "position": 306
2969
+ },
2970
+ {
2971
+ "position": 305
2972
+ },
2973
+ {
2974
+ "position": 307
2975
+ },
2976
+ {
2977
+ "position": 309
2978
+ },
2979
+ {
2980
+ "position": 316
2981
+ },
2982
+ {
2983
+ "position": 312
2984
+ },
2985
+ {
2986
+ "position": 318
2987
+ },
2988
+ {
2989
+ "position": 311
2990
+ },
2991
+ {
2992
+ "position": 314
2993
+ },
2994
+ {
2995
+ "position": 313
2996
+ },
2997
+ {
2998
+ "position": 315
2999
+ },
3000
+ {
3001
+ "position": 317
3002
+ },
3003
+ {
3004
+ "position": 320
3005
+ },
3006
+ {
3007
+ "position": 319
3008
+ },
3009
+ {
3010
+ "position": 321
3011
+ },
3012
+ {
3013
+ "position": 323
3014
+ },
3015
+ {
3016
+ "position": 354
3017
+ },
3018
+ {
3019
+ "position": 326
3020
+ },
3021
+ {
3022
+ "position": 356
3023
+ },
3024
+ {
3025
+ "position": 325
3026
+ },
3027
+ {
3028
+ "position": 340
3029
+ },
3030
+ {
3031
+ "position": 328
3032
+ },
3033
+ {
3034
+ "position": 342
3035
+ },
3036
+ {
3037
+ "position": 327
3038
+ },
3039
+ {
3040
+ "position": 334
3041
+ },
3042
+ {
3043
+ "position": 330
3044
+ },
3045
+ {
3046
+ "position": 336
3047
+ },
3048
+ {
3049
+ "position": 329
3050
+ },
3051
+ {
3052
+ "position": 332
3053
+ },
3054
+ {
3055
+ "position": 331
3056
+ },
3057
+ {
3058
+ "position": 333
3059
+ },
3060
+ {
3061
+ "position": 335
3062
+ },
3063
+ {
3064
+ "position": 338
3065
+ },
3066
+ {
3067
+ "position": 337
3068
+ },
3069
+ {
3070
+ "position": 339
3071
+ },
3072
+ {
3073
+ "position": 341
3074
+ },
3075
+ {
3076
+ "position": 348
3077
+ },
3078
+ {
3079
+ "position": 344
3080
+ },
3081
+ {
3082
+ "position": 350
3083
+ },
3084
+ {
3085
+ "position": 343
3086
+ },
3087
+ {
3088
+ "position": 346
3089
+ },
3090
+ {
3091
+ "position": 345
3092
+ },
3093
+ {
3094
+ "position": 347
3095
+ },
3096
+ {
3097
+ "position": 349
3098
+ },
3099
+ {
3100
+ "position": 352
3101
+ },
3102
+ {
3103
+ "position": 351
3104
+ },
3105
+ {
3106
+ "position": 353
3107
+ },
3108
+ {
3109
+ "position": 355
3110
+ },
3111
+ {
3112
+ "position": 370
3113
+ },
3114
+ {
3115
+ "position": 358
3116
+ },
3117
+ {
3118
+ "position": 372
3119
+ },
3120
+ {
3121
+ "position": 357
3122
+ },
3123
+ {
3124
+ "position": 364
3125
+ },
3126
+ {
3127
+ "position": 360
3128
+ },
3129
+ {
3130
+ "position": 366
3131
+ },
3132
+ {
3133
+ "position": 359
3134
+ },
3135
+ {
3136
+ "position": 362
3137
+ },
3138
+ {
3139
+ "position": 361
3140
+ },
3141
+ {
3142
+ "position": 363
3143
+ },
3144
+ {
3145
+ "position": 365
3146
+ },
3147
+ {
3148
+ "position": 368
3149
+ },
3150
+ {
3151
+ "position": 367
3152
+ },
3153
+ {
3154
+ "position": 369
3155
+ },
3156
+ {
3157
+ "position": 371
3158
+ },
3159
+ {
3160
+ "position": 378
3161
+ },
3162
+ {
3163
+ "position": 374
3164
+ },
3165
+ {
3166
+ "position": 380
3167
+ },
3168
+ {
3169
+ "position": 373
3170
+ },
3171
+ {
3172
+ "position": 376
3173
+ },
3174
+ {
3175
+ "position": 375
3176
+ },
3177
+ {
3178
+ "position": 377
3179
+ },
3180
+ {
3181
+ "position": 379
3182
+ },
3183
+ {
3184
+ "position": 382
3185
+ },
3186
+ {
3187
+ "position": 381
3188
+ },
3189
+ {
3190
+ "position": 383
3191
+ },
3192
+ {
3193
+ "position": 385
3194
+ },
3195
+ {
3196
+ "position": 448
3197
+ },
3198
+ {
3199
+ "position": 388
3200
+ },
3201
+ {
3202
+ "position": 450
3203
+ },
3204
+ {
3205
+ "position": 387
3206
+ },
3207
+ {
3208
+ "position": 418
3209
+ },
3210
+ {
3211
+ "position": 390
3212
+ },
3213
+ {
3214
+ "position": 420
3215
+ },
3216
+ {
3217
+ "position": 389
3218
+ },
3219
+ {
3220
+ "position": 404
3221
+ },
3222
+ {
3223
+ "position": 392
3224
+ },
3225
+ {
3226
+ "position": 406
3227
+ },
3228
+ {
3229
+ "position": 391
3230
+ },
3231
+ {
3232
+ "position": 398
3233
+ },
3234
+ {
3235
+ "position": 394
3236
+ },
3237
+ {
3238
+ "position": 400
3239
+ },
3240
+ {
3241
+ "position": 393
3242
+ },
3243
+ {
3244
+ "position": 396
3245
+ },
3246
+ {
3247
+ "position": 395
3248
+ },
3249
+ {
3250
+ "position": 397
3251
+ },
3252
+ {
3253
+ "position": 399
3254
+ },
3255
+ {
3256
+ "position": 402
3257
+ },
3258
+ {
3259
+ "position": 401
3260
+ },
3261
+ {
3262
+ "position": 403
3263
+ },
3264
+ {
3265
+ "position": 405
3266
+ },
3267
+ {
3268
+ "position": 412
3269
+ },
3270
+ {
3271
+ "position": 408
3272
+ },
3273
+ {
3274
+ "position": 414
3275
+ },
3276
+ {
3277
+ "position": 407
3278
+ },
3279
+ {
3280
+ "position": 410
3281
+ },
3282
+ {
3283
+ "position": 409
3284
+ },
3285
+ {
3286
+ "position": 411
3287
+ },
3288
+ {
3289
+ "position": 413
3290
+ },
3291
+ {
3292
+ "position": 416
3293
+ },
3294
+ {
3295
+ "position": 415
3296
+ },
3297
+ {
3298
+ "position": 417
3299
+ },
3300
+ {
3301
+ "position": 419
3302
+ },
3303
+ {
3304
+ "position": 434
3305
+ },
3306
+ {
3307
+ "position": 422
3308
+ },
3309
+ {
3310
+ "position": 436
3311
+ },
3312
+ {
3313
+ "position": 421
3314
+ },
3315
+ {
3316
+ "position": 428
3317
+ },
3318
+ {
3319
+ "position": 424
3320
+ },
3321
+ {
3322
+ "position": 430
3323
+ },
3324
+ {
3325
+ "position": 423
3326
+ },
3327
+ {
3328
+ "position": 426
3329
+ },
3330
+ {
3331
+ "position": 425
3332
+ },
3333
+ {
3334
+ "position": 427
3335
+ },
3336
+ {
3337
+ "position": 429
3338
+ },
3339
+ {
3340
+ "position": 432
3341
+ },
3342
+ {
3343
+ "position": 431
3344
+ },
3345
+ {
3346
+ "position": 433
3347
+ },
3348
+ {
3349
+ "position": 435
3350
+ },
3351
+ {
3352
+ "position": 442
3353
+ },
3354
+ {
3355
+ "position": 438
3356
+ },
3357
+ {
3358
+ "position": 444
3359
+ },
3360
+ {
3361
+ "position": 437
3362
+ },
3363
+ {
3364
+ "position": 440
3365
+ },
3366
+ {
3367
+ "position": 439
3368
+ },
3369
+ {
3370
+ "position": 441
3371
+ },
3372
+ {
3373
+ "position": 443
3374
+ },
3375
+ {
3376
+ "position": 446
3377
+ },
3378
+ {
3379
+ "position": 445
3380
+ },
3381
+ {
3382
+ "position": 447
3383
+ },
3384
+ {
3385
+ "position": 449
3386
+ },
3387
+ {
3388
+ "position": 480
3389
+ },
3390
+ {
3391
+ "position": 452
3392
+ },
3393
+ {
3394
+ "position": 482
3395
+ },
3396
+ {
3397
+ "position": 451
3398
+ },
3399
+ {
3400
+ "position": 466
3401
+ },
3402
+ {
3403
+ "position": 454
3404
+ },
3405
+ {
3406
+ "position": 468
3407
+ },
3408
+ {
3409
+ "position": 453
3410
+ },
3411
+ {
3412
+ "position": 460
3413
+ },
3414
+ {
3415
+ "position": 456
3416
+ },
3417
+ {
3418
+ "position": 462
3419
+ },
3420
+ {
3421
+ "position": 455
3422
+ },
3423
+ {
3424
+ "position": 458
3425
+ },
3426
+ {
3427
+ "position": 457
3428
+ },
3429
+ {
3430
+ "position": 459
3431
+ },
3432
+ {
3433
+ "position": 461
3434
+ },
3435
+ {
3436
+ "position": 464
3437
+ },
3438
+ {
3439
+ "position": 463
3440
+ },
3441
+ {
3442
+ "position": 465
3443
+ },
3444
+ {
3445
+ "position": 467
3446
+ },
3447
+ {
3448
+ "position": 474
3449
+ },
3450
+ {
3451
+ "position": 470
3452
+ },
3453
+ {
3454
+ "position": 476
3455
+ },
3456
+ {
3457
+ "position": 469
3458
+ },
3459
+ {
3460
+ "position": 472
3461
+ },
3462
+ {
3463
+ "position": 471
3464
+ },
3465
+ {
3466
+ "position": 473
3467
+ },
3468
+ {
3469
+ "position": 475
3470
+ },
3471
+ {
3472
+ "position": 478
3473
+ },
3474
+ {
3475
+ "position": 477
3476
+ },
3477
+ {
3478
+ "position": 479
3479
+ },
3480
+ {
3481
+ "position": 481
3482
+ },
3483
+ {
3484
+ "position": 496
3485
+ },
3486
+ {
3487
+ "position": 484
3488
+ },
3489
+ {
3490
+ "position": 498
3491
+ },
3492
+ {
3493
+ "position": 483
3494
+ },
3495
+ {
3496
+ "position": 490
3497
+ },
3498
+ {
3499
+ "position": 486
3500
+ },
3501
+ {
3502
+ "position": 492
3503
+ },
3504
+ {
3505
+ "position": 485
3506
+ },
3507
+ {
3508
+ "position": 488
3509
+ },
3510
+ {
3511
+ "position": 487
3512
+ },
3513
+ {
3514
+ "position": 489
3515
+ },
3516
+ {
3517
+ "position": 491
3518
+ },
3519
+ {
3520
+ "position": 494
3521
+ },
3522
+ {
3523
+ "position": 493
3524
+ },
3525
+ {
3526
+ "position": 495
3527
+ },
3528
+ {
3529
+ "position": 497
3530
+ },
3531
+ {
3532
+ "position": 504
3533
+ },
3534
+ {
3535
+ "position": 500
3536
+ },
3537
+ {
3538
+ "position": 506
3539
+ },
3540
+ {
3541
+ "position": 499
3542
+ },
3543
+ {
3544
+ "position": 502
3545
+ },
3546
+ {
3547
+ "position": 501
3548
+ },
3549
+ {
3550
+ "position": 503
3551
+ },
3552
+ {
3553
+ "position": 505
3554
+ },
3555
+ {
3556
+ "position": 508
3557
+ },
3558
+ {
3559
+ "position": 507
3560
+ },
3561
+ {
3562
+ "position": 509
3563
+ }
3564
+ ],
3565
+ "starting_seats": [
3566
+ 1,
3567
+ 255,
3568
+ 129,
3569
+ 127,
3570
+ 65,
3571
+ 191,
3572
+ 193,
3573
+ 63,
3574
+ 33,
3575
+ 223,
3576
+ 161,
3577
+ 95,
3578
+ 97,
3579
+ 159,
3580
+ 225,
3581
+ 31,
3582
+ 17,
3583
+ 239,
3584
+ 145,
3585
+ 111,
3586
+ 81,
3587
+ 175,
3588
+ 209,
3589
+ 47,
3590
+ 49,
3591
+ 207,
3592
+ 177,
3593
+ 79,
3594
+ 113,
3595
+ 143,
3596
+ 241,
3597
+ 15,
3598
+ 9,
3599
+ 247,
3600
+ 137,
3601
+ 119,
3602
+ 73,
3603
+ 183,
3604
+ 201,
3605
+ 55,
3606
+ 41,
3607
+ 215,
3608
+ 169,
3609
+ 87,
3610
+ 105,
3611
+ 151,
3612
+ 233,
3613
+ 23,
3614
+ 25,
3615
+ 231,
3616
+ 153,
3617
+ 103,
3618
+ 89,
3619
+ 167,
3620
+ 217,
3621
+ 39,
3622
+ 57,
3623
+ 199,
3624
+ 185,
3625
+ 71,
3626
+ 121,
3627
+ 135,
3628
+ 249,
3629
+ 7,
3630
+ 5,
3631
+ 251,
3632
+ 133,
3633
+ 123,
3634
+ 69,
3635
+ 187,
3636
+ 197,
3637
+ 59,
3638
+ 37,
3639
+ 219,
3640
+ 165,
3641
+ 91,
3642
+ 101,
3643
+ 155,
3644
+ 229,
3645
+ 27,
3646
+ 21,
3647
+ 235,
3648
+ 149,
3649
+ 107,
3650
+ 85,
3651
+ 171,
3652
+ 213,
3653
+ 43,
3654
+ 53,
3655
+ 203,
3656
+ 181,
3657
+ 75,
3658
+ 117,
3659
+ 139,
3660
+ 245,
3661
+ 11,
3662
+ 13,
3663
+ 243,
3664
+ 141,
3665
+ 115,
3666
+ 77,
3667
+ 179,
3668
+ 205,
3669
+ 51,
3670
+ 45,
3671
+ 211,
3672
+ 173,
3673
+ 83,
3674
+ 109,
3675
+ 147,
3676
+ 237,
3677
+ 19,
3678
+ 29,
3679
+ 227,
3680
+ 157,
3681
+ 99,
3682
+ 93,
3683
+ 163,
3684
+ 221,
3685
+ 35,
3686
+ 61,
3687
+ 195,
3688
+ 189,
3689
+ 67,
3690
+ 125,
3691
+ 131,
3692
+ 253,
3693
+ 3
3694
+ ]
3695
+ }