-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.sql
More file actions
1150 lines (1131 loc) · 106 KB
/
Copy pathschema.sql
File metadata and controls
1150 lines (1131 loc) · 106 KB
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
CREATE TABLE IF NOT EXISTS user (
user_id INT PRIMARY KEY AUTO_INCREMENT,
email VARCHAR(255) NOT NULL UNIQUE,
password VARCHAR(255) NOT NULL,
is_admin BOOLEAN
);
CREATE TABLE IF NOT EXISTS tournament (
tournament_id INT PRIMARY KEY AUTO_INCREMENT,
name VARCHAR(255) NOT NULL UNIQUE
);
CREATE TABLE IF NOT EXISTS tournament_surface (
name VARCHAR(255) PRIMARY KEY,
surface VARCHAR(255) NOT NULL,
FOREIGN KEY (name) REFERENCES tournament(name) ON DELETE CASCADE
);
CREATE TABLE IF NOT EXISTS finals_match (
match_id INT PRIMARY KEY AUTO_INCREMENT,
year INT NOT NULL,
prize DECIMAL(10, 2),
tournament_id INT NOT NULL,
FOREIGN KEY (tournament_id) REFERENCES tournament(tournament_id) ON DELETE CASCADE,
CONSTRAINT chk_year CHECK (year >= 1900 AND year <= 2100)
);
CREATE TABLE IF NOT EXISTS player (
player_id INT PRIMARY KEY AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
nationality VARCHAR(255),
handedness VARCHAR(255)
);
CREATE TABLE IF NOT EXISTS match_players (
match_id INT NOT NULL,
player_id INT NOT NULL,
is_winner BOOLEAN NOT NULL,
player_rank INT,
PRIMARY KEY (match_id, player_id),
FOREIGN KEY (match_id) REFERENCES finals_match(match_id) ON DELETE CASCADE,
FOREIGN KEY (player_id) REFERENCES player(player_id) ON DELETE CASCADE
);
CREATE TABLE IF NOT EXISTS collection (
user_id INT NOT NULL,
collection_id INT NOT NULL,
name VARCHAR(255) NOT NULL,
description TEXT,
PRIMARY KEY (user_id, collection_id),
FOREIGN KEY (user_id) REFERENCES user(user_id) ON DELETE CASCADE
);
CREATE TABLE IF NOT EXISTS collection_item (
user_id INT NOT NULL,
collection_id INT NOT NULL,
match_id INT NOT NULL,
PRIMARY KEY (user_id, collection_id, match_id),
FOREIGN KEY (user_id, collection_id) REFERENCES collection(user_id, collection_id) ON DELETE CASCADE,
FOREIGN KEY (match_id) REFERENCES finals_match(match_id) ON DELETE CASCADE
);
CREATE TABLE IF NOT EXISTS adds_player (
user_id INT NOT NULL,
player_id INT NOT NULL,
added_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (user_id, player_id),
FOREIGN KEY (user_id) REFERENCES user(user_id) ON DELETE CASCADE,
FOREIGN KEY (player_id) REFERENCES player(player_id) ON DELETE CASCADE
);
CREATE TABLE IF NOT EXISTS adds_match (
user_id INT NOT NULL,
match_id INT NOT NULL,
added_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (user_id, match_id),
FOREIGN KEY (user_id) REFERENCES user(user_id) ON DELETE CASCADE,
FOREIGN KEY (match_id) REFERENCES finals_match(match_id) ON DELETE CASCADE
);
INSERT INTO tournament (tournament_id, name) VALUES (1, 'Australian Open');
INSERT INTO tournament (tournament_id, name) VALUES (2, 'U.S. Open');
INSERT INTO tournament (tournament_id, name) VALUES (3, 'Wimbledon');
INSERT INTO tournament (tournament_id, name) VALUES (4, 'French Open');
INSERT INTO tournament_surface (name, surface) VALUES ('Australian Open', 'Plexicushion Prestige');
INSERT INTO tournament_surface (name, surface) VALUES ('U.S. Open', 'DecoTurf - outdoors');
INSERT INTO tournament_surface (name, surface) VALUES ('Wimbledon', 'Grass / Outdoor');
INSERT INTO tournament_surface (name, surface) VALUES ('French Open', 'Clay');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (1, 'Novak Djokovic', 'Serbian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (2, 'Stefanos Tsitsipas', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (3, 'Carlos Alcaraz', 'Spanish', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (4, 'Casper Rudd', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (5, 'Nick Kyrgios', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (6, 'Rafael Nadal', 'Spanish', 'left');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (7, 'Daniil Medvedev', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (8, 'Matteo Berrettini', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (9, 'Dominic Thiem', 'Austrian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (10, 'Alexander Zverev', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (11, 'Roger Federer', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (12, 'Juan Martin del Potro', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (13, 'Kevin Anderson', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (14, 'Marin ili', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (15, 'Stan Wawrinka', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (16, 'Andy Murray', 'British', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (17, 'Milos Raonic', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (18, 'Marin Cilic', 'Croatian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (19, 'Kei Nishikori', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (20, 'David Ferrer', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (21, 'Tomas Berdych', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (22, 'Robin Soderling', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (23, 'Andy Roddick', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (24, 'Jo-Wilfried Tsonga', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (25, 'Fernando Gonzalez', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (26, 'Marcos Baghdatis', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (27, 'Andre Agassi', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (28, 'Mariano Puerta', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (29, 'Marat Safin', 'Russian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (30, 'Lleyton Hewitt', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (31, 'Gaston Gaudio', 'Argentine', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (32, 'Guillermo Coria', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (33, 'Juan Carlos Ferrero', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (34, 'Mark Philippoussis', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (35, 'Martin Verkerk', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (36, 'Rainer Schuettler', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (37, 'Pete Sampras', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (38, 'David Nalbandian', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (39, 'Albert Costa', 'Spanish', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (40, 'Thomas Johannson', 'Swedish', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (41, 'Goran Ivanisevic', 'Croatian', 'left');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (42, 'Patrick Rafter', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (43, 'Gustavo Kuerten', 'Brazilian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (44, 'Alex Corretja', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (45, 'Arnaud Clement', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (46, 'Magnus Norman', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (47, 'Yevgeny Kafelnikov', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (48, 'Todd Martin', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (49, 'Andre Medvedev', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (50, 'Thomas Enqvist', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (51, 'Carlos Moya', 'Spanish', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (52, 'Petr Korda', 'Czech', 'left');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (53, 'Marcelo Rios', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (54, 'Greg Rusedski', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (55, 'Cedric Pioline', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (56, 'Sergi Bruguera', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (57, 'Michael Chang', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (58, 'Richard Krajicek', 'Dutch', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (59, 'MaliVai Washington', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (60, 'Michael Stich', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (61, 'Boris Becker', 'German', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (62, 'Thomas Muster', 'Austrian', 'left');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (63, 'Alberto Berasategui', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (64, 'Jim Courier', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (65, 'Stefan Edberg', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (66, 'Ivan Lendl', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (67, 'Andres Gomez', 'Ecuadorian', 'left');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (68, 'Miloslav Mecir', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (69, 'Mats Wilander', 'Swedish', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (70, 'Henri Leconte', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (71, 'Pat Cash', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (72, 'Mikael Pernfors', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (73, 'John McEnroe', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (74, 'Kevin Curren', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (75, 'Jimmy Connors', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (76, 'Chris Lewis', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (77, 'Yannick Noah', 'French', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (78, 'Johan Kriek', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (79, 'Steve Denton', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (80, 'Guillermo Vilas', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (81, 'Bjorn Borg', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (82, 'Brian Teacher', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (83, 'Kim Warwick', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (84, 'Vitas Gerulaitis', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (85, 'John Sadri', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (86, 'Roscoe Tanner', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (87, 'Victor Pecci', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (88, 'John Marks', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (89, 'John Lloyd', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (90, 'Brian Gottfried', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (91, 'Ilie Nastase', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (92, 'Adriano Panatta', 'Italian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (93, 'Harold Soloman', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (94, 'Mark Edmondson', 'Australian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (95, 'John Newcombe', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (96, 'Manuel Orantes', 'American', 'left');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (97, 'Arthur Ashe', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (98, 'Ken Rosewall', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (99, 'Phil Dent', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (100, 'Jan Kodes', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (101, 'Alex Metreveli', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (102, 'Nikola Pilic', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (103, 'Onny Parun', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (104, 'Stan Smith', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (105, 'Andres Gimeno', 'Spanish', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (106, 'Patrick Proisy', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (107, 'Mal Anderson', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (108, 'Tony Roche', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (109, 'Zeljiko Franulovic', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (110, 'Dick Crealy', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (111, 'Rod Laver', 'Australian', 'left');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (112, 'Tom Okker', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (113, 'Bill Bowrey', 'Australian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (114, 'Juan Gisbert', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (115, 'Clark Graebner', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (116, 'Wilhelm Bungert', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (117, 'Roy Emerson', 'Australian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (118, 'Fred Stolle', 'Australian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (119, 'Manuel Santana', 'Spanish', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (120, 'Dennis Ralston', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (121, 'Istvan Gulyas', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (122, 'Cliff Drysdale', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (123, 'Nicola Pietrangeli', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (124, 'Rafael Osuna', 'Mexican', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (125, 'Frank Froehling, III', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (126, 'C.R. McKinley', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (127, 'Pierre Darmon', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (128, 'Ken Fletcher', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (129, 'Martin Mulligan', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (130, 'Chuck McKinley', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (131, 'Neale Fraser', 'Australian', 'left');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (132, 'Luis Ayala', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (133, 'Alejandro Olmedo', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (134, 'Ian Vermaak', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (135, 'Alex Olmedo', 'peruvian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (136, 'Ashley J. Cooper', 'Australian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (137, 'Malcolm J. Anderson', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (138, 'Mervyn Rose', 'Australian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (139, 'Lewis Hoad', 'Australian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (140, 'Ashley Cooper', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (141, 'Sven Davidson', 'Swedish', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (142, 'Herbert Flam', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (143, 'Tony Trabert', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (144, 'Kurt Nielsen', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (145, 'Lew Hoad', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (146, 'E. Victor Seixas Jr.', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (147, 'Rex Hartwig', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (148, 'Jaroslav Drobny', 'Czechoslovak', 'left');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (149, 'E. Victor Seixas, Jr.', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (150, 'Frank Sedgman', 'Australian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (151, 'Gardnar Mulloy', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (152, 'Ken McGregor', 'Australian', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (153, 'R. Savitt', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (154, 'Eric Sturgess', NULL, NULL);
INSERT INTO player (player_id, name, nationality, handedness) VALUES (155, 'Dick Savitt', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (156, 'Arthur Larsen', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (157, 'J.E. Patty', 'American', 'right');
INSERT INTO player (player_id, name, nationality, handedness) VALUES (158, 'Budge Patty', 'American', 'right');
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (1, 2023, 2050000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (2, 2022, 2600000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (3, 2022, 2507460, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (4, 2022, 1870000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (5, 2022, 4400000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (6, 2021, 2500000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (7, 2021, 1700000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (8, 2021, 1400000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (9, 2021, 2875000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (10, 2020, 1600000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (11, 2020, 2500000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (12, 2020, 4120000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (13, 2019, 3850000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (14, 2019, 2350000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (15, 2019, 2300000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (16, 2019, 4100000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (17, 2018, 3800000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (18, 2018, 2250000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (19, 2018, 2200000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (20, 2018, 4000000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (21, 2017, 3700000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (22, 2017, 2200000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (23, 2017, 2100000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (24, 2017, 3700000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (25, 2016, 3500000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (26, 2016, 2000000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (27, 2016, 2000000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (28, 2016, 3400000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (29, 2015, 3300000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (30, 2015, 1880000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (31, 2015, 1800000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (32, 2015, 3100000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (33, 2014, 3000000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (34, 2014, 1760000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (35, 2014, 1650000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (36, 2014, 2650000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (37, 2013, 2600000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (38, 2013, 1600000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (39, 2013, 1500000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (40, 2013, 2430000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (41, 2012, 1900000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (42, 2012, 1150000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (43, 2012, 1250000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (44, 2012, 2300000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (45, 2011, 1800000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (46, 2011, 1100000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (47, 2011, 1200000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (48, 2011, 2200000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (49, 2010, 1700000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (50, 2010, 1000000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (51, 2010, 1120000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (52, 2010, 2100000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (53, 2009, 1600000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (54, 2009, 850000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (55, 2009, 1060000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (56, 2009, 2000000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (57, 2008, 1500000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (58, 2008, 750000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (59, 2008, 1000000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (60, 2008, 1370000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (61, 2007, 1400000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (62, 2007, 700000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (63, 2007, 1000000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (64, 2007, 1281000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (65, 2006, 1200000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (66, 2006, 655000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (67, 2006, 940000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (68, 2006, 1220000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (69, 2005, 1100000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (70, 2005, 630000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (71, 2005, 880000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (72, 2005, 1206620, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (73, 2004, 1000000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (74, 2004, 602500, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (75, 2004, 860000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (76, 2004, 1200000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (77, 2003, 1000000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (78, 2003, 575000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (79, 2003, 840000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (80, 2003, 1127850, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (81, 2002, 900000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (82, 2002, 525000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (83, 2002, 780000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (84, 2002, 1000000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (85, 2001, 850000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (86, 2001, 500000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (87, 2001, 4538000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (88, 2001, 830500, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (89, 2000, 800000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (90, 2000, 477500, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (91, 2000, 4240000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (92, 2000, 755000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (93, 1999, 750000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (94, 1999, 455000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (95, 1999, 4040000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (96, 1999, 722000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (97, 1998, 700000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (98, 1998, 435000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (99, 1998, 3852000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (100, 1998, 615000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (101, 1997, 650000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (102, 1997, 415000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (103, 1997, 3668000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (104, 1997, 585000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (105, 1996, 600000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (106, 1996, 392500, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (107, 1996, 3452000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (108, 1996, 562000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (109, 1995, 575000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (110, 1995, 365000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (111, 1995, 3320000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (112, 1995, 480000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (113, 1994, 550000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (114, 1994, 345000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (115, 1994, 3160000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (116, 1994, 460000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (117, 1993, 535000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (118, 1993, 305000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (119, 1993, 2680000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (120, 1993, 410000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (121, 1992, 500000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (122, 1992, 265000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (123, 1992, 2680000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (124, 1992, 360000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (125, 1991, 400000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (126, 1991, 240000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (127, 1991, 2448000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (128, 1991, 320000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (129, 1990, 350000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (130, 1990, 230000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (131, 1990, 2226100, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (132, 1990, 266667, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (133, 1989, 300000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (134, 1989, 190000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (135, 1989, 1791390, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (136, 1989, 140000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (137, 1988, 275000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (138, 1988, 165000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (139, 1988, 1500240, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (140, 1988, 105000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (141, 1987, 250000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (142, 1987, 155000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (143, 1987, 1303800, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (144, 1987, 103875, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (145, 1986, 210000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (146, 1986, 140000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (147, 1986, 1397250, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (148, 1985, 100000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (149, 1985, 187500, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (150, 1985, 130000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (151, 1985, 1338200, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (152, 1984, 100000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (153, 1984, 160000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (154, 1984, 100000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (155, 1984, 1058600, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (156, 1983, 100000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (157, 1983, 120000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (158, 1983, 66600, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (159, 1983, 500000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (160, 1982, 77500, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (161, 1982, 90000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (162, 1982, 41677, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (163, 1982, 400000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (164, 1981, 72000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (165, 1981, 66000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (166, 1981, 21600, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (167, 1981, 250000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (168, 1980, 64000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (169, 1980, 46000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (170, 1980, 20000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (171, 1980, 221000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (172, 1979, 50015, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (173, 1979, 39000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (174, 1979, 20000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (175, 1979, 208000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (176, 1978, 50015, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (177, 1978, 38000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (178, 1978, 19000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (179, 1978, 210000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (180, 1977, 41000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (181, 1977, 33000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (182, 1977, 15000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (183, 1977, 190000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (184, 1977, 28000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (185, 1976, 30000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (186, 1976, 12500, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (187, 1976, 130000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (188, 1976, 8156, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (189, 1975, 25000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (190, 1975, 10000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (191, 1975, 120000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (192, 1975, 9234, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (193, 1974, 22500, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (194, 1974, 10000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (195, 1974, 120000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (196, 1974, 6500, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (197, 1973, 25000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (198, 1973, 5000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (199, 1973, 70000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (200, 1973, 6750, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (201, 1972, 25000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (202, 1972, 5000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (203, 1972, 48000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (204, 1972, 2000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (205, 1971, 15000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (206, 1971, 3750, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (207, 1971, 48000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (208, 1971, 9000, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (209, 1970, 20000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (210, 1970, 3000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (211, 1970, 56000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (212, 1970, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (213, 1969, 16000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (214, 1969, 3000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (215, 1969, 35000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (216, 1969, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (217, 1968, 14000, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (218, 1968, 2000, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (219, 1968, 15000, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (220, 1968, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (221, 1967, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (222, 1967, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (223, 1967, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (224, 1967, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (225, 1966, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (226, 1966, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (227, 1966, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (228, 1966, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (229, 1965, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (230, 1965, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (231, 1965, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (232, 1965, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (233, 1964, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (234, 1964, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (235, 1964, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (236, 1964, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (237, 1963, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (238, 1963, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (239, 1963, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (240, 1963, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (241, 1962, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (242, 1962, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (243, 1962, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (244, 1962, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (245, 1961, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (246, 1961, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (247, 1961, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (248, 1961, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (249, 1960, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (250, 1960, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (251, 1960, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (252, 1960, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (253, 1959, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (254, 1959, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (255, 1959, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (256, 1959, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (257, 1958, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (258, 1958, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (259, 1958, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (260, 1958, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (261, 1957, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (262, 1957, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (263, 1957, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (264, 1957, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (265, 1956, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (266, 1956, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (267, 1956, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (268, 1956, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (269, 1955, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (270, 1955, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (271, 1955, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (272, 1955, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (273, 1954, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (274, 1954, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (275, 1954, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (276, 1954, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (277, 1953, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (278, 1953, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (279, 1953, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (280, 1953, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (281, 1952, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (282, 1952, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (283, 1952, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (284, 1952, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (285, 1951, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (286, 1951, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (287, 1951, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (288, 1951, NULL, 1);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (289, 1950, NULL, 2);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (290, 1950, NULL, 3);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (291, 1950, NULL, 4);
INSERT INTO finals_match (match_id, year, prize, tournament_id) VALUES (292, 1950, NULL, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (1, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (1, 2, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (2, 3, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (2, 4, FALSE, 5);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (3, 1, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (3, 5, FALSE, 25);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (4, 6, TRUE, 5);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (4, 4, FALSE, 8);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (5, 6, TRUE, 5);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (5, 7, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (6, 7, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (6, 1, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (7, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (7, 8, FALSE, 7);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (8, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (8, 2, FALSE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (9, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (9, 7, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (10, 6, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (10, 1, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (11, 9, TRUE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (11, 10, FALSE, 7);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (12, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (12, 9, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (13, 6, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (13, 7, FALSE, 5);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (14, 1, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (14, 11, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (15, 6, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (15, 9, FALSE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (16, 1, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (16, 6, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (17, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (17, 12, FALSE, 5);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (18, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (18, 13, FALSE, 6);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (19, 6, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (19, 9, FALSE, 8);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (20, 11, TRUE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (20, 14, FALSE, 7);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (21, 6, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (21, 13, FALSE, 14);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (22, 11, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (22, 14, FALSE, 6);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (23, 6, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (23, 15, FALSE, 9);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (24, 11, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (24, 6, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (25, 15, TRUE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (25, 1, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (26, 16, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (26, 17, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (27, 1, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (27, 16, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (28, 1, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (28, 16, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (29, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (29, 11, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (30, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (30, 11, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (31, 15, TRUE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (31, 1, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (32, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (32, 16, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (33, 18, TRUE, 9);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (33, 19, FALSE, 5);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (34, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (34, 11, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (35, 6, TRUE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (35, 1, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (36, 15, TRUE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (36, 6, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (37, 6, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (37, 1, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (38, 16, TRUE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (38, 1, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (39, 6, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (39, 20, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (40, 1, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (40, 16, FALSE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (41, 16, TRUE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (41, 1, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (42, 11, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (42, 16, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (43, 6, TRUE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (43, 1, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (44, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (44, 6, FALSE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (45, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (45, 6, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (46, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (46, 6, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (47, 6, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (47, 11, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (48, 1, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (48, 16, FALSE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (49, 6, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (49, 1, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (50, 6, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (50, 21, FALSE, 6);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (51, 6, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (51, 22, FALSE, 5);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (52, 11, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (52, 16, FALSE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (53, 12, TRUE, 5);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (53, 11, FALSE, 5);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (54, 11, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (54, 23, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (55, 11, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (55, 22, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (56, 6, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (56, 11, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (57, 11, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (57, 16, FALSE, 4);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (58, 6, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (58, 11, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (59, 6, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (59, 11, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (60, 1, TRUE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (60, 24, FALSE, 6);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (61, 11, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (61, 1, FALSE, 3);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (62, 11, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (62, 6, FALSE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (63, 6, TRUE, 2);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (63, 11, FALSE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (64, 11, TRUE, 1);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (64, 25, FALSE, 7);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (65, 11, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (65, 23, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (66, 11, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (66, 6, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (67, 6, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (67, 11, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (68, 11, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (68, 26, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (69, 11, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (69, 27, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (70, 11, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (70, 23, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (71, 6, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (71, 28, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (72, 29, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (72, 30, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (73, 11, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (73, 30, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (74, 11, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (74, 23, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (75, 31, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (75, 32, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (76, 11, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (76, 29, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (77, 23, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (77, 33, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (78, 11, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (78, 34, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (79, 33, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (79, 35, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (80, 27, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (80, 36, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (81, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (81, 27, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (82, 30, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (82, 38, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (83, 39, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (83, 33, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (84, 40, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (84, 29, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (85, 30, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (85, 37, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (86, 41, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (86, 42, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (87, 43, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (87, 44, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (88, 27, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (88, 45, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (89, 29, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (89, 37, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (90, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (90, 42, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (91, 43, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (91, 46, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (92, 27, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (92, 47, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (93, 27, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (93, 48, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (94, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (94, 27, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (95, 27, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (95, 49, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (96, 47, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (96, 50, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (97, 42, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (97, 34, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (98, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (98, 41, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (99, 51, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (99, 44, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (100, 52, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (100, 53, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (101, 42, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (101, 54, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (102, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (102, 55, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (103, 43, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (103, 56, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (104, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (104, 51, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (105, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (105, 57, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (106, 58, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (106, 59, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (107, 47, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (107, 60, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (108, 61, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (108, 57, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (109, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (109, 27, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (110, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (110, 61, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (111, 62, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (111, 57, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (112, 27, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (112, 37, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (113, 27, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (113, 60, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (114, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (114, 41, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (115, 56, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (115, 63, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (116, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (116, 48, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (117, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (117, 55, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (118, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (118, 64, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (119, 56, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (119, 64, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (120, 64, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (120, 65, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (121, 65, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (121, 37, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (122, 27, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (122, 41, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (123, 64, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (123, 52, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (124, 64, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (124, 65, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (125, 65, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (125, 64, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (126, 60, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (126, 61, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (127, 64, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (127, 27, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (128, 61, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (128, 66, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (129, 37, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (129, 27, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (130, 65, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (130, 61, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (131, 67, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (131, 27, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (132, 66, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (132, 65, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (133, 61, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (133, 66, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (134, 61, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (134, 65, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (135, 57, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (135, 65, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (136, 66, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (136, 68, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (137, 69, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (137, 66, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (138, 65, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (138, 61, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (139, 69, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (139, 70, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (140, 69, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (140, 71, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (141, 66, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (141, 69, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (142, 71, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (142, 66, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (143, 66, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (143, 69, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (144, 65, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (144, 71, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (145, 66, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (145, 68, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (146, 61, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (146, 66, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (147, 66, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (147, 72, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (148, 65, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (148, 69, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (149, 66, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (149, 73, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (150, 61, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (150, 74, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (151, 69, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (151, 66, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (152, 69, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (152, 74, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (153, 73, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (153, 66, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (154, 73, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (154, 75, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (155, 66, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (155, 73, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (156, 69, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (156, 66, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (157, 75, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (157, 66, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (158, 73, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (158, 76, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (159, 77, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (159, 69, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (160, 78, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (160, 79, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (161, 75, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (161, 66, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (162, 75, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (162, 73, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (163, 69, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (163, 80, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (164, 78, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (164, 79, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (165, 73, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (165, 81, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (166, 73, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (166, 81, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (167, 81, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (167, 66, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (168, 82, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (168, 83, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (169, 73, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (169, 81, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (170, 81, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (170, 73, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (171, 81, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (171, 84, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (172, 80, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (172, 85, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (173, 73, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (173, 84, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (174, 81, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (174, 86, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (175, 81, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (175, 87, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (176, 80, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (176, 88, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (177, 75, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (177, 81, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (178, 81, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (178, 75, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (179, 81, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (179, 80, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (180, 84, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (180, 89, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (181, 80, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (181, 75, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (182, 81, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (182, 75, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (183, 80, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (183, 90, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (184, 86, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (184, 80, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (185, 75, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (185, 81, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (186, 81, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (186, 91, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (187, 92, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (187, 93, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (188, 94, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (188, 95, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (189, 96, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (189, 75, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (190, 97, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (190, 75, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (191, 81, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (191, 80, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (192, 95, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (192, 75, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (193, 75, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (193, 98, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (194, 75, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (194, 98, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (195, 81, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (195, 96, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (196, 75, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (196, 99, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (197, 95, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (197, 100, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (198, 100, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (198, 101, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (199, 91, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (199, 102, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (200, 95, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (200, 103, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (201, 91, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (201, 97, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (202, 104, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (202, 91, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (203, 105, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (203, 106, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (204, 98, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (204, 107, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (205, 104, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (205, 100, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (206, 95, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (206, 104, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (207, 100, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (207, 91, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (208, 98, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (208, 97, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (209, 98, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (209, 108, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (210, 95, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (210, 98, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (211, 100, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (211, 109, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (212, 97, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (212, 110, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (213, 111, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (213, 108, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (214, 111, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (214, 95, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (215, 111, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (215, 98, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (216, 111, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (216, 105, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (217, 97, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (217, 112, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (218, 111, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (218, 108, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (219, 98, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (219, 111, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (220, 113, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (220, 114, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (221, 95, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (221, 115, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (222, 95, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (222, 116, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (223, 117, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (223, 108, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (224, 117, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (224, 97, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (225, 118, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (225, 95, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (226, 119, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (226, 120, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (227, 108, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (227, 121, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (228, 117, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (228, 97, FALSE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (229, 119, TRUE, NULL);
INSERT INTO match_players (match_id, player_id, is_winner, player_rank) VALUES (229, 122, FALSE, NULL);