-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDumb File.sql
More file actions
7322 lines (7258 loc) · 470 KB
/
Copy pathDumb File.sql
File metadata and controls
7322 lines (7258 loc) · 470 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
-- phpMyAdmin SQL Dump
-- version 5.2.0-rc1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1:3306
-- Generation Time: May 07, 2022 at 06:06 PM
-- Server version: 8.0.29
-- PHP Version: 7.4.3
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `epl_amer`
--
CREATE DATABASE IF NOT EXISTS `epl_amer` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
USE `epl_amer`;
-- --------------------------------------------------------
--
-- Stand-in structure for view `AwayWonSeason`
-- (See below for the actual view)
--
DROP VIEW IF EXISTS `AwayWonSeason`;
CREATE TABLE `AwayWonSeason` (
`TeamName` varchar(30)
,`Season` char(7)
,`MathcesWon` bigint
);
-- --------------------------------------------------------
--
-- Table structure for table `club`
--
-- Creation: Apr 30, 2022 at 02:46 AM
-- Last update: Apr 30, 2022 at 02:46 AM
--
DROP TABLE IF EXISTS `club`;
CREATE TABLE `club` (
`Name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`Website` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`StadiumName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `club`
--
INSERT INTO `club` (`Name`, `Website`, `StadiumName`) VALUES
('AFC Bournemouth', 'http://www.afcb.co.uk/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Vitality Stadium'),
('Arsenal', 'https://www.arsenal.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Emirates Stadium'),
('Aston Villa', 'https://www.avfc.co.uk/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Villa Park'),
('Brentford', 'https://www.brentfordfc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Brentford Community Stadium'),
('Brighton and Hove Albion', 'https://www.brightonandhovealbion.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Amex Stadium'),
('Burnley', 'http://www.burnleyfootballclub.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Turf Moor'),
('Cardiff City', 'http://www.cardiffcityfc.co.uk/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Cardiff City Stadium'),
('Chelsea', 'https://www.chelseafc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Stamford Bridge'),
('Crystal Palace', 'http://www.cpfc.co.uk/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Selhurst Park'),
('Everton', 'http://www.evertonfc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Goodison Park'),
('Fulham', 'http://www.fulhamfc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Craven Cottage'),
('Huddersfield Town', 'https://www.htafc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'John Smith\'s Stadium'),
('Hull City', 'http://www.hullcitytigers.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'KCOM Stadium'),
('Leeds United', 'http://www.leedsunited.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Elland Road'),
('Leicester City', 'http://www.lcfc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'King Power Stadium'),
('Liverpool', 'http://www.liverpoolfc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Anfield'),
('Manchester City', 'http://www.mancity.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Etihad Stadium'),
('Manchester United', 'http://www.manutd.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Old Trafford'),
('Middlesbrough', 'http://www.mfc.co.uk/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Riverside Stadium'),
('Newcastle United', 'http://www.nufc.co.uk/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'St. James\' Park'),
('Norwich City', 'http://www.canaries.co.uk/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Carrow Road'),
('Sheffield United', 'http://www.sufc.co.uk/?utm_source=www.premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Bramall Lane'),
('Southampton', 'https://www.southamptonfc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'St. Mary\'s Stadium'),
('Stoke City', 'http://www.stokecityfc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'bet365 Stadium'),
('Sunderland', 'http://www.safc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Stadium of Light'),
('Swansea City', 'http://www.swanseacity.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Liberty Stadium'),
('Tottenham Hotspur', 'http://www.tottenhamhotspur.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Tottenham Hotspur Stadium'),
('Watford', 'https://www.watfordfc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Vicarage Road'),
('West Bromwich Albion', 'http://www.wba.co.uk/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'The Hawthorns'),
('West Ham United', 'http://www.whufc.com/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'London Stadium'),
('Wolverhampton Wanderers', 'http://www.wolves.co.uk/?utm_source=premier-league-website&utm_campaign=website&utm_medium=link', 'Molineux Stadium');
-- --------------------------------------------------------
--
-- Stand-in structure for view `HomeWonSeason`
-- (See below for the actual view)
--
DROP VIEW IF EXISTS `HomeWonSeason`;
CREATE TABLE `HomeWonSeason` (
`TeamName` varchar(30)
,`Season` char(7)
,`MathcesWon` bigint
);
-- --------------------------------------------------------
--
-- Table structure for table `match`
--
-- Creation: Apr 30, 2022 at 02:46 AM
-- Last update: Apr 30, 2022 at 02:46 AM
--
DROP TABLE IF EXISTS `match`;
CREATE TABLE `match` (
`Season` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`HomeTeamName` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`AwayTeamName` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`Date` date NOT NULL,
`HomePossession` decimal(3,1) NOT NULL,
`HomeYellowCards` int NOT NULL,
`HomeRedCards` int NOT NULL,
`HomeFouls` int NOT NULL,
`HomeShots` int NOT NULL,
`HomeGoals` int NOT NULL,
`AwayYellowCards` int NOT NULL,
`AwayRedCards` int NOT NULL,
`AwayFouls` int NOT NULL,
`AwayShots` int NOT NULL,
`AwayGoals` int NOT NULL,
`StadiumName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `match`
--
INSERT INTO `match` (`Season`, `HomeTeamName`, `AwayTeamName`, `Date`, `HomePossession`, `HomeYellowCards`, `HomeRedCards`, `HomeFouls`, `HomeShots`, `HomeGoals`, `AwayYellowCards`, `AwayRedCards`, `AwayFouls`, `AwayShots`, `AwayGoals`, `StadiumName`) VALUES
('2018/19', 'AFC Bournemouth', 'Arsenal', '2018-11-25', '41.3', 2, 0, 6, 11, 1, 1, 0, 9, 20, 2, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Brighton and Hove Albion', '2018-12-22', '57.2', 2, 0, 8, 14, 2, 0, 1, 18, 10, 0, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Burnley', '2019-04-06', '59.9', 2, 0, 12, 10, 1, 3, 0, 16, 10, 3, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Cardiff City', '2018-08-11', '62.9', 1, 0, 11, 12, 2, 1, 0, 9, 10, 0, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Chelsea', '2019-01-30', '32.1', 1, 0, 8, 12, 4, 0, 0, 6, 11, 0, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Crystal Palace', '2018-10-01', '44.4', 3, 0, 9, 11, 2, 4, 0, 12, 10, 1, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Everton', '2018-08-25', '49.9', 0, 1, 12, 17, 2, 3, 1, 10, 11, 2, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Fulham', '2019-04-20', '49.0', 1, 0, 11, 15, 0, 3, 0, 18, 17, 1, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Huddersfield Town', '2018-12-04', '32.8', 4, 0, 14, 6, 2, 2, 0, 11, 23, 1, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Leicester City', '2018-09-15', '46.7', 3, 0, 13, 10, 4, 2, 1, 15, 14, 2, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Liverpool', '2018-12-08', '40.5', 2, 0, 9, 8, 0, 1, 0, 11, 10, 4, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Manchester City', '2019-03-02', '18.0', 1, 0, 7, 0, 0, 2, 0, 7, 23, 1, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Manchester United', '2018-11-03', '48.7', 4, 0, 12, 18, 1, 3, 0, 12, 18, 2, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Newcastle United', '2019-03-16', '48.9', 3, 0, 9, 10, 2, 2, 0, 12, 12, 2, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Southampton', '2018-10-20', '57.3', 1, 0, 11, 9, 0, 2, 0, 14, 8, 0, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Tottenham Hotspur', '2019-05-04', '53.6', 1, 0, 11, 20, 1, 5, 2, 12, 11, 0, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Watford', '2019-01-02', '57.0', 1, 0, 9, 25, 3, 4, 0, 15, 11, 3, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'West Ham United', '2019-01-19', '38.5', 0, 0, 6, 10, 2, 1, 0, 10, 9, 0, 'Vitality Stadium'),
('2018/19', 'AFC Bournemouth', 'Wolverhampton Wanderers', '2019-02-23', '44.6', 4, 0, 10, 10, 1, 5, 0, 15, 10, 1, 'Vitality Stadium'),
('2018/19', 'Arsenal', 'AFC Bournemouth', '2019-02-27', '64.8', 2, 0, 11, 16, 5, 2, 0, 9, 13, 1, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Brighton and Hove Albion', '2019-05-05', '70.5', 5, 0, 9, 20, 1, 2, 0, 14, 11, 1, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Burnley', '2018-12-22', '60.1', 2, 0, 10, 11, 3, 5, 0, 14, 7, 1, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Cardiff City', '2019-01-29', '70.9', 3, 0, 14, 15, 2, 3, 0, 12, 19, 1, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Chelsea', '2019-01-19', '35.7', 0, 0, 13, 13, 2, 2, 0, 15, 13, 0, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Crystal Palace', '2019-04-21', '72.6', 4, 0, 15, 12, 2, 1, 0, 12, 16, 3, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Everton', '2018-09-23', '62.5', 2, 0, 17, 9, 2, 1, 0, 12, 10, 0, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Fulham', '2019-01-01', '59.6', 0, 0, 7, 16, 4, 1, 0, 12, 9, 1, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Huddersfield Town', '2018-12-08', '61.9', 5, 0, 13, 14, 1, 4, 0, 20, 6, 0, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Leicester City', '2018-10-22', '69.1', 2, 0, 10, 19, 3, 2, 0, 10, 8, 1, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Liverpool', '2018-11-03', '61.8', 1, 0, 7, 12, 1, 1, 0, 7, 13, 1, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Manchester City', '2018-08-12', '42.0', 2, 0, 11, 9, 0, 2, 0, 14, 17, 2, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Manchester United', '2019-03-10', '46.1', 2, 0, 12, 14, 2, 2, 0, 18, 14, 0, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Newcastle United', '2019-04-01', '70.6', 2, 0, 11, 7, 2, 0, 0, 10, 3, 0, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Southampton', '2019-02-24', '62.1', 0, 0, 7, 12, 2, 0, 0, 14, 10, 0, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Tottenham Hotspur', '2018-12-02', '59.3', 3, 0, 15, 22, 4, 3, 1, 17, 11, 2, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Watford', '2018-09-29', '63.5', 2, 0, 11, 9, 2, 2, 0, 17, 14, 0, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'West Ham United', '2018-08-25', '61.5', 1, 0, 16, 17, 3, 3, 0, 13, 13, 1, 'Emirates Stadium'),
('2018/19', 'Arsenal', 'Wolverhampton Wanderers', '2018-11-11', '71.7', 2, 0, 9, 10, 1, 2, 0, 16, 13, 1, 'Emirates Stadium'),
('2018/19', 'Brighton and Hove Albion', 'AFC Bournemouth', '2019-04-13', '50.1', 2, 1, 10, 8, 0, 4, 0, 6, 14, 5, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Arsenal', '2018-12-26', '32.0', 2, 0, 10, 12, 1, 1, 0, 4, 7, 1, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Burnley', '2019-02-09', '68.2', 1, 0, 8, 16, 1, 1, 0, 7, 9, 3, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Cardiff City', '2019-04-16', '63.9', 0, 0, 11, 14, 0, 1, 0, 13, 10, 2, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Chelsea', '2018-12-16', '41.7', 2, 0, 14, 6, 1, 2, 0, 6, 10, 2, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Crystal Palace', '2018-12-04', '31.5', 2, 1, 14, 9, 3, 3, 0, 12, 18, 1, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Everton', '2018-12-29', '44.8', 0, 0, 10, 11, 1, 2, 0, 11, 13, 0, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Fulham', '2018-09-01', '41.5', 3, 0, 12, 15, 2, 3, 0, 14, 10, 2, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Huddersfield Town', '2019-03-02', '52.7', 2, 0, 11, 14, 1, 2, 0, 6, 6, 0, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Leicester City', '2018-11-24', '54.6', 3, 0, 10, 14, 1, 1, 1, 7, 8, 1, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Liverpool', '2019-01-12', '29.1', 0, 0, 15, 7, 0, 0, 0, 5, 10, 1, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Manchester City', '2019-05-12', '23.7', 0, 0, 12, 6, 1, 0, 0, 8, 20, 4, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Manchester United', '2018-08-19', '33.4', 1, 0, 16, 6, 3, 1, 0, 13, 9, 2, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Newcastle United', '2019-04-27', '49.8', 2, 0, 7, 9, 1, 3, 0, 10, 9, 1, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Southampton', '2019-03-30', '60.2', 1, 0, 8, 14, 0, 2, 0, 10, 8, 1, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Tottenham Hotspur', '2018-09-22', '28.6', 2, 0, 15, 8, 1, 1, 0, 9, 16, 2, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Watford', '2019-02-02', '55.1', 1, 0, 15, 21, 0, 0, 0, 10, 5, 0, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'West Ham United', '2018-10-05', '35.4', 3, 0, 12, 9, 1, 2, 0, 8, 17, 0, 'Amex Stadium'),
('2018/19', 'Brighton and Hove Albion', 'Wolverhampton Wanderers', '2018-10-27', '39.9', 3, 0, 11, 7, 1, 0, 0, 8, 25, 0, 'Amex Stadium'),
('2018/19', 'Burnley', 'AFC Bournemouth', '2018-09-22', '37.6', 2, 0, 17, 12, 4, 0, 0, 6, 19, 0, 'Turf Moor'),
('2018/19', 'Burnley', 'Arsenal', '2019-05-12', '39.7', 5, 0, 11, 14, 1, 1, 0, 3, 17, 3, 'Turf Moor'),
('2018/19', 'Burnley', 'Brighton and Hove Albion', '2018-12-08', '37.4', 2, 0, 11, 14, 1, 0, 0, 11, 14, 0, 'Turf Moor'),
('2018/19', 'Burnley', 'Cardiff City', '2019-04-13', '46.0', 2, 0, 7, 14, 2, 4, 0, 10, 14, 0, 'Turf Moor'),
('2018/19', 'Burnley', 'Chelsea', '2018-10-28', '30.2', 4, 0, 14, 7, 0, 2, 0, 10, 24, 4, 'Turf Moor'),
('2018/19', 'Burnley', 'Crystal Palace', '2019-03-02', '56.3', 1, 0, 9, 18, 1, 2, 0, 9, 10, 3, 'Turf Moor'),
('2018/19', 'Burnley', 'Everton', '2018-12-26', '49.0', 2, 0, 11, 11, 1, 4, 0, 19, 13, 5, 'Turf Moor'),
('2018/19', 'Burnley', 'Fulham', '2019-01-12', '41.8', 1, 0, 5, 11, 2, 2, 0, 9, 12, 1, 'Turf Moor'),
('2018/19', 'Burnley', 'Huddersfield Town', '2018-10-06', '31.8', 2, 0, 9, 6, 1, 2, 0, 11, 18, 1, 'Turf Moor'),
('2018/19', 'Burnley', 'Leicester City', '2019-03-16', '62.2', 1, 0, 9, 13, 1, 1, 1, 10, 9, 2, 'Turf Moor'),
('2018/19', 'Burnley', 'Liverpool', '2018-12-05', '25.8', 1, 0, 10, 10, 1, 0, 0, 3, 18, 3, 'Turf Moor'),
('2018/19', 'Burnley', 'Manchester City', '2019-04-28', '30.1', 1, 0, 5, 2, 0, 1, 0, 7, 25, 1, 'Turf Moor'),
('2018/19', 'Burnley', 'Manchester United', '2018-09-02', '46.6', 2, 0, 7, 9, 0, 3, 1, 13, 21, 2, 'Turf Moor'),
('2018/19', 'Burnley', 'Newcastle United', '2018-11-26', '56.5', 0, 0, 6, 14, 1, 1, 0, 11, 17, 2, 'Turf Moor'),
('2018/19', 'Burnley', 'Southampton', '2019-02-02', '54.2', 3, 0, 10, 15, 1, 1, 0, 9, 10, 1, 'Turf Moor'),
('2018/19', 'Burnley', 'Tottenham Hotspur', '2019-02-23', '30.5', 1, 0, 9, 10, 2, 3, 0, 12, 17, 1, 'Turf Moor'),
('2018/19', 'Burnley', 'Watford', '2018-08-19', '58.4', 1, 0, 8, 8, 1, 2, 0, 19, 9, 3, 'Turf Moor'),
('2018/19', 'Burnley', 'West Ham United', '2018-12-30', '43.0', 1, 0, 15, 17, 2, 4, 0, 11, 11, 0, 'Turf Moor'),
('2018/19', 'Burnley', 'Wolverhampton Wanderers', '2019-03-30', '37.2', 1, 0, 12, 6, 2, 1, 0, 10, 8, 0, 'Turf Moor'),
('2018/19', 'Cardiff City', 'AFC Bournemouth', '2019-02-02', '26.9', 1, 0, 17, 12, 2, 2, 0, 14, 9, 0, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Arsenal', '2018-09-02', '27.7', 3, 0, 12, 14, 2, 4, 0, 14, 17, 3, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Brighton and Hove Albion', '2018-11-10', '60.6', 2, 0, 7, 20, 2, 1, 1, 21, 7, 1, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Burnley', '2018-09-30', '54.3', 1, 0, 11, 20, 1, 3, 0, 15, 3, 2, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Chelsea', '2019-03-31', '28.9', 2, 0, 8, 8, 1, 3, 0, 14, 21, 2, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Crystal Palace', '2019-05-04', '39.3', 0, 0, 14, 18, 2, 0, 0, 11, 21, 3, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Everton', '2019-02-26', '32.8', 3, 0, 12, 6, 0, 1, 0, 12, 12, 3, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Fulham', '2018-10-20', '40.5', 3, 0, 15, 22, 4, 3, 0, 16, 9, 2, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Huddersfield Town', '2019-01-12', '38.9', 3, 0, 12, 3, 0, 1, 0, 14, 14, 0, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Leicester City', '2018-11-03', '40.1', 2, 0, 13, 11, 0, 2, 0, 12, 13, 1, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Liverpool', '2019-04-21', '23.9', 1, 0, 6, 7, 0, 1, 0, 5, 17, 2, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Manchester City', '2018-09-22', '21.4', 1, 0, 6, 2, 0, 1, 0, 4, 21, 5, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Manchester United', '2018-12-22', '25.7', 2, 0, 13, 9, 1, 1, 0, 13, 17, 5, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Newcastle United', '2018-08-18', '51.3', 2, 0, 14, 12, 0, 2, 1, 16, 12, 0, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Southampton', '2018-12-08', '36.2', 2, 0, 9, 13, 1, 2, 0, 10, 12, 0, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Tottenham Hotspur', '2019-01-01', '26.9', 1, 0, 6, 5, 0, 0, 0, 6, 13, 3, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Watford', '2019-02-22', '35.4', 1, 0, 10, 15, 1, 2, 0, 11, 12, 5, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'West Ham United', '2019-03-09', '29.3', 2, 0, 7, 16, 2, 1, 0, 12, 9, 0, 'Cardiff City Stadium'),
('2018/19', 'Cardiff City', 'Wolverhampton Wanderers', '2018-11-30', '47.9', 1, 0, 3, 17, 2, 2, 0, 12, 15, 1, 'Cardiff City Stadium'),
('2018/19', 'Chelsea', 'AFC Bournemouth', '2018-09-01', '72.6', 2, 0, 10, 24, 2, 2, 0, 7, 8, 0, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Arsenal', '2018-08-18', '62.3', 0, 0, 12, 24, 3, 2, 0, 9, 15, 2, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Brighton and Hove Albion', '2019-04-03', '68.3', 0, 0, 5, 17, 3, 0, 0, 9, 3, 0, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Burnley', '2019-04-22', '76.4', 2, 0, 9, 22, 2, 1, 0, 4, 6, 2, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Cardiff City', '2018-09-15', '76.8', 0, 0, 8, 18, 4, 0, 0, 10, 6, 1, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Crystal Palace', '2018-11-04', '73.7', 0, 0, 6, 15, 3, 1, 0, 13, 7, 1, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Everton', '2018-11-11', '68.7', 4, 0, 7, 15, 0, 3, 0, 11, 6, 0, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Fulham', '2018-12-02', '66.0', 2, 0, 8, 16, 2, 1, 0, 17, 9, 0, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Huddersfield Town', '2019-02-02', '65.0', 0, 0, 8, 23, 5, 0, 0, 5, 5, 0, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Leicester City', '2018-12-22', '72.1', 0, 0, 10, 17, 0, 2, 0, 9, 8, 1, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Liverpool', '2018-09-29', '47.2', 0, 0, 7, 10, 1, 2, 0, 9, 13, 1, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Manchester City', '2018-12-08', '38.7', 2, 0, 12, 8, 2, 0, 0, 11, 14, 0, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Manchester United', '2018-10-20', '62.3', 2, 0, 9, 21, 2, 5, 0, 17, 7, 2, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Newcastle United', '2019-01-12', '65.9', 1, 0, 6, 10, 2, 1, 0, 13, 9, 1, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Southampton', '2019-01-02', '71.6', 1, 0, 8, 17, 0, 2, 0, 11, 6, 0, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Tottenham Hotspur', '2019-02-27', '46.5', 1, 0, 7, 11, 2, 1, 0, 14, 9, 0, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Watford', '2019-05-05', '58.4', 0, 0, 6, 19, 3, 1, 0, 12, 16, 0, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'West Ham United', '2019-04-08', '54.0', 2, 0, 8, 16, 2, 1, 0, 7, 9, 0, 'Stamford Bridge'),
('2018/19', 'Chelsea', 'Wolverhampton Wanderers', '2019-03-10', '75.6', 1, 0, 8, 22, 1, 4, 0, 14, 2, 1, 'Stamford Bridge'),
('2018/19', 'Crystal Palace', 'AFC Bournemouth', '2019-05-12', '45.0', 3, 0, 11, 17, 5, 0, 0, 8, 16, 3, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Arsenal', '2018-10-28', '42.2', 1, 0, 10, 16, 2, 2, 0, 16, 7, 2, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Brighton and Hove Albion', '2019-03-09', '62.7', 1, 0, 8, 15, 1, 5, 0, 18, 4, 2, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Burnley', '2018-12-01', '58.6', 1, 0, 9, 29, 2, 1, 0, 10, 4, 0, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Cardiff City', '2018-12-26', '62.4', 0, 0, 9, 31, 0, 3, 0, 11, 9, 0, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Chelsea', '2018-12-30', '34.2', 0, 0, 11, 4, 0, 1, 0, 8, 12, 1, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Everton', '2019-04-27', '36.1', 2, 0, 9, 8, 0, 0, 0, 15, 22, 0, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Fulham', '2019-02-02', '37.3', 2, 0, 9, 17, 2, 3, 0, 12, 8, 0, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Huddersfield Town', '2019-03-30', '48.5', 0, 0, 10, 19, 2, 0, 0, 7, 15, 0, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Leicester City', '2018-12-15', '43.3', 2, 0, 10, 8, 1, 1, 0, 8, 12, 0, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Liverpool', '2018-08-20', '36.8', 1, 1, 6, 8, 0, 1, 0, 13, 16, 2, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Manchester City', '2019-04-14', '27.6', 0, 0, 5, 7, 1, 0, 0, 11, 20, 3, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Manchester United', '2019-02-27', '45.5', 2, 0, 8, 17, 1, 3, 0, 9, 13, 3, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Newcastle United', '2018-09-22', '61.9', 1, 0, 8, 16, 0, 1, 0, 11, 6, 0, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Southampton', '2018-09-01', '50.7', 1, 0, 11, 20, 0, 1, 0, 12, 19, 2, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Tottenham Hotspur', '2018-11-10', '35.4', 1, 0, 12, 11, 0, 1, 0, 9, 11, 1, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Watford', '2019-01-12', '55.3', 1, 0, 11, 15, 1, 4, 0, 11, 16, 2, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'West Ham United', '2019-02-09', '57.2', 3, 0, 12, 25, 1, 0, 0, 9, 6, 1, 'Selhurst Park'),
('2018/19', 'Crystal Palace', 'Wolverhampton Wanderers', '2018-10-06', '67.1', 3, 0, 11, 11, 0, 4, 0, 13, 7, 1, 'Selhurst Park'),
('2018/19', 'Everton', 'AFC Bournemouth', '2019-01-13', '50.9', 5, 0, 17, 15, 2, 0, 0, 8, 16, 0, 'Goodison Park'),
('2018/19', 'Everton', 'Arsenal', '2019-04-07', '42.9', 1, 0, 8, 23, 1, 4, 0, 9, 7, 0, 'Goodison Park'),
('2018/19', 'Everton', 'Brighton and Hove Albion', '2018-11-03', '61.5', 0, 0, 9, 14, 3, 1, 0, 17, 5, 1, 'Goodison Park'),
('2018/19', 'Everton', 'Burnley', '2019-05-03', '60.1', 0, 0, 8, 20, 2, 2, 0, 9, 5, 0, 'Goodison Park'),
('2018/19', 'Everton', 'Cardiff City', '2018-11-24', '70.7', 0, 0, 12, 16, 1, 3, 0, 13, 7, 0, 'Goodison Park'),
('2018/19', 'Everton', 'Chelsea', '2019-03-17', '32.7', 1, 0, 17, 15, 2, 2, 0, 9, 17, 0, 'Goodison Park'),
('2018/19', 'Everton', 'Crystal Palace', '2018-10-21', '59.8', 2, 0, 13, 20, 2, 1, 0, 17, 7, 0, 'Goodison Park'),
('2018/19', 'Everton', 'Fulham', '2018-09-29', '51.2', 0, 0, 13, 19, 3, 3, 0, 13, 6, 0, 'Goodison Park'),
('2018/19', 'Everton', 'Huddersfield Town', '2018-09-01', '57.6', 3, 0, 13, 11, 1, 3, 0, 14, 9, 1, 'Goodison Park'),
('2018/19', 'Everton', 'Leicester City', '2019-01-01', '59.6', 3, 0, 5, 17, 0, 1, 0, 8, 8, 1, 'Goodison Park'),
('2018/19', 'Everton', 'Liverpool', '2019-03-03', '42.2', 1, 0, 12, 7, 0, 2, 0, 10, 10, 0, 'Goodison Park'),
('2018/19', 'Everton', 'Manchester City', '2019-02-06', '38.8', 1, 0, 12, 4, 0, 1, 0, 6, 15, 2, 'Goodison Park'),
('2018/19', 'Everton', 'Manchester United', '2019-04-21', '48.3', 1, 0, 11, 15, 4, 1, 0, 7, 7, 0, 'Goodison Park'),
('2018/19', 'Everton', 'Newcastle United', '2018-12-05', '76.3', 0, 0, 7, 19, 1, 5, 0, 18, 8, 1, 'Goodison Park'),
('2018/19', 'Everton', 'Southampton', '2018-08-18', '58.0', 0, 0, 8, 13, 2, 5, 0, 20, 15, 1, 'Goodison Park'),
('2018/19', 'Everton', 'Tottenham Hotspur', '2018-12-23', '41.5', 0, 0, 13, 10, 2, 2, 0, 9, 17, 6, 'Goodison Park'),
('2018/19', 'Everton', 'Watford', '2018-12-10', '56.6', 1, 0, 13, 12, 2, 1, 0, 13, 15, 2, 'Goodison Park'),
('2018/19', 'Everton', 'West Ham United', '2018-09-16', '55.9', 2, 0, 15, 16, 1, 5, 0, 12, 9, 3, 'Goodison Park'),
('2018/19', 'Everton', 'Wolverhampton Wanderers', '2019-02-02', '64.0', 3, 0, 12, 13, 1, 1, 0, 14, 8, 3, 'Goodison Park'),
('2018/19', 'Fulham', 'AFC Bournemouth', '2018-10-27', '52.0', 2, 1, 16, 11, 0, 1, 0, 3, 12, 3, 'Craven Cottage'),
('2018/19', 'Fulham', 'Arsenal', '2018-10-07', '48.9', 2, 0, 11, 21, 1, 0, 0, 12, 9, 5, 'Craven Cottage'),
('2018/19', 'Fulham', 'Brighton and Hove Albion', '2019-01-29', '61.9', 2, 0, 10, 24, 4, 3, 0, 5, 15, 2, 'Craven Cottage'),
('2018/19', 'Fulham', 'Burnley', '2018-08-26', '63.8', 2, 0, 11, 25, 4, 1, 0, 8, 12, 2, 'Craven Cottage'),
('2018/19', 'Fulham', 'Cardiff City', '2019-04-27', '73.0', 0, 0, 10, 8, 1, 0, 0, 8, 13, 0, 'Craven Cottage'),
('2018/19', 'Fulham', 'Chelsea', '2019-03-03', '36.0', 2, 0, 11, 12, 1, 1, 0, 10, 20, 2, 'Craven Cottage'),
('2018/19', 'Fulham', 'Crystal Palace', '2018-08-11', '66.3', 1, 0, 9, 15, 0, 2, 0, 11, 12, 2, 'Craven Cottage'),
('2018/19', 'Fulham', 'Everton', '2019-04-13', '40.6', 2, 0, 8, 12, 2, 1, 0, 10, 9, 0, 'Craven Cottage'),
('2018/19', 'Fulham', 'Huddersfield Town', '2018-12-29', '43.5', 3, 0, 12, 14, 1, 1, 0, 10, 9, 0, 'Craven Cottage'),
('2018/19', 'Fulham', 'Leicester City', '2018-12-05', '45.5', 0, 0, 12, 25, 1, 0, 0, 7, 13, 1, 'Craven Cottage'),
('2018/19', 'Fulham', 'Liverpool', '2019-03-17', '37.2', 2, 0, 11, 7, 1, 1, 0, 7, 16, 2, 'Craven Cottage'),
('2018/19', 'Fulham', 'Manchester City', '2019-03-30', '34.6', 2, 0, 4, 5, 0, 0, 0, 12, 24, 2, 'Craven Cottage'),
('2018/19', 'Fulham', 'Manchester United', '2019-02-09', '51.2', 3, 0, 14, 15, 0, 2, 0, 9, 15, 3, 'Craven Cottage'),
('2018/19', 'Fulham', 'Newcastle United', '2019-05-12', '68.1', 1, 0, 6, 16, 0, 0, 0, 8, 13, 4, 'Craven Cottage'),
('2018/19', 'Fulham', 'Southampton', '2018-11-24', '37.2', 2, 0, 10, 10, 3, 3, 0, 6, 19, 2, 'Craven Cottage'),
('2018/19', 'Fulham', 'Tottenham Hotspur', '2019-01-20', '26.8', 2, 0, 10, 12, 1, 3, 0, 8, 14, 2, 'Craven Cottage'),
('2018/19', 'Fulham', 'Watford', '2018-09-22', '60.7', 2, 0, 11, 15, 1, 1, 0, 9, 11, 1, 'Craven Cottage'),
('2018/19', 'Fulham', 'West Ham United', '2018-12-15', '56.0', 2, 0, 14, 16, 0, 1, 0, 10, 6, 2, 'Craven Cottage'),
('2018/19', 'Fulham', 'Wolverhampton Wanderers', '2018-12-26', '29.8', 2, 0, 9, 11, 1, 1, 0, 6, 14, 1, 'Craven Cottage'),
('2018/19', 'Huddersfield Town', 'AFC Bournemouth', '2019-03-09', '56.5', 3, 0, 14, 8, 0, 1, 0, 9, 8, 2, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Arsenal', '2019-02-09', '54.6', 3, 0, 17, 16, 1, 2, 0, 12, 9, 2, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Brighton and Hove Albion', '2018-12-01', '32.1', 0, 1, 10, 7, 1, 2, 0, 12, 14, 2, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Burnley', '2019-01-02', '42.9', 0, 1, 11, 9, 1, 4, 1, 9, 16, 2, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Cardiff City', '2018-08-25', '58.0', 0, 1, 8, 5, 0, 1, 0, 10, 14, 0, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Chelsea', '2018-08-11', '37.2', 2, 0, 9, 6, 0, 1, 0, 8, 13, 3, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Crystal Palace', '2018-09-15', '58.4', 1, 0, 11, 15, 0, 2, 0, 17, 7, 1, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Everton', '2019-01-29', '58.4', 1, 0, 13, 10, 0, 4, 1, 10, 10, 1, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Fulham', '2018-11-05', '45.1', 1, 0, 11, 10, 1, 2, 0, 8, 8, 0, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Leicester City', '2019-04-06', '44.8', 3, 0, 13, 10, 1, 0, 0, 11, 18, 4, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Liverpool', '2018-10-20', '47.8', 0, 0, 9, 13, 0, 2, 0, 6, 11, 1, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Manchester City', '2019-01-20', '32.4', 2, 0, 10, 5, 0, 2, 0, 9, 12, 3, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Manchester United', '2019-05-05', '35.8', 1, 0, 10, 7, 1, 1, 0, 10, 23, 1, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Newcastle United', '2018-12-15', '73.5', 1, 0, 5, 15, 0, 1, 0, 13, 8, 1, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Southampton', '2018-12-22', '62.3', 2, 0, 12, 16, 1, 3, 0, 9, 13, 3, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Tottenham Hotspur', '2018-09-29', '52.7', 2, 0, 17, 9, 0, 2, 0, 16, 10, 2, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Watford', '2019-04-20', '45.7', 2, 0, 15, 13, 1, 2, 0, 9, 11, 2, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'West Ham United', '2018-11-10', '43.9', 1, 0, 9, 15, 1, 1, 0, 8, 12, 1, 'John Smith\'s Stadium'),
('2018/19', 'Huddersfield Town', 'Wolverhampton Wanderers', '2019-02-26', '49.9', 2, 0, 10, 15, 1, 2, 0, 10, 7, 0, 'John Smith\'s Stadium'),
('2018/19', 'Leicester City', 'AFC Bournemouth', '2019-03-30', '58.8', 0, 0, 6, 18, 2, 2, 0, 12, 8, 0, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Arsenal', '2019-04-28', '67.2', 3, 0, 13, 24, 3, 1, 1, 13, 6, 0, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Brighton and Hove Albion', '2019-02-26', '49.1', 1, 0, 6, 19, 2, 1, 0, 4, 15, 1, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Burnley', '2018-11-10', '63.0', 2, 0, 13, 22, 0, 0, 0, 10, 6, 0, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Cardiff City', '2018-12-29', '62.2', 0, 0, 14, 16, 0, 2, 0, 16, 12, 1, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Chelsea', '2019-05-12', '46.9', 0, 0, 9, 9, 0, 1, 0, 8, 14, 0, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Crystal Palace', '2019-02-23', '65.4', 2, 0, 7, 27, 1, 1, 0, 14, 7, 4, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Everton', '2018-10-06', '51.3', 2, 1, 10, 8, 1, 1, 0, 11, 17, 2, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Fulham', '2019-03-09', '52.8', 0, 0, 9, 18, 3, 2, 0, 13, 6, 1, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Huddersfield Town', '2018-09-22', '62.0', 2, 0, 10, 18, 3, 1, 0, 16, 9, 1, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Liverpool', '2018-09-01', '51.2', 3, 0, 9, 12, 1, 2, 0, 12, 10, 2, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Manchester City', '2018-12-26', '33.9', 2, 0, 5, 10, 2, 2, 1, 8, 11, 1, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Manchester United', '2019-02-03', '44.8', 4, 0, 14, 17, 0, 4, 0, 9, 10, 1, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Newcastle United', '2019-04-12', '71.7', 2, 0, 6, 12, 0, 3, 0, 10, 11, 1, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Southampton', '2019-01-12', '71.7', 2, 0, 7, 23, 1, 1, 1, 9, 8, 2, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Tottenham Hotspur', '2018-12-08', '42.2', 3, 0, 12, 11, 0, 1, 0, 7, 7, 2, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Watford', '2018-12-01', '37.7', 2, 0, 7, 7, 2, 1, 1, 6, 8, 0, 'King Power Stadium'),
('2018/19', 'Leicester City', 'West Ham United', '2018-10-27', '64.2', 1, 0, 17, 21, 1, 1, 1, 5, 11, 1, 'King Power Stadium'),
('2018/19', 'Leicester City', 'Wolverhampton Wanderers', '2018-08-18', '42.8', 2, 1, 10, 6, 2, 1, 0, 8, 11, 0, 'King Power Stadium'),
('2018/19', 'Liverpool', 'AFC Bournemouth', '2019-02-09', '65.6', 2, 0, 14, 20, 3, 2, 0, 6, 12, 0, 'Anfield'),
('2018/19', 'Liverpool', 'Arsenal', '2018-12-29', '47.9', 1, 0, 8, 15, 5, 2, 0, 13, 8, 1, 'Anfield'),
('2018/19', 'Liverpool', 'Brighton and Hove Albion', '2018-08-25', '70.0', 1, 0, 8, 22, 1, 1, 0, 14, 6, 0, 'Anfield'),
('2018/19', 'Liverpool', 'Burnley', '2019-03-10', '68.6', 2, 0, 4, 23, 4, 0, 0, 7, 3, 2, 'Anfield'),
('2018/19', 'Liverpool', 'Cardiff City', '2018-10-27', '79.6', 0, 0, 6, 19, 4, 0, 0, 4, 2, 1, 'Anfield'),
('2018/19', 'Liverpool', 'Chelsea', '2019-04-14', '61.8', 0, 0, 5, 15, 2, 1, 0, 9, 6, 0, 'Anfield'),
('2018/19', 'Liverpool', 'Crystal Palace', '2019-01-19', '70.6', 0, 1, 6, 19, 4, 1, 0, 8, 9, 3, 'Anfield'),
('2018/19', 'Liverpool', 'Everton', '2018-12-02', '57.6', 3, 0, 12, 16, 1, 2, 0, 7, 9, 0, 'Anfield'),
('2018/19', 'Liverpool', 'Fulham', '2018-11-11', '73.0', 1, 0, 11, 21, 2, 1, 0, 9, 8, 0, 'Anfield'),
('2018/19', 'Liverpool', 'Huddersfield Town', '2019-04-26', '70.3', 0, 0, 5, 21, 5, 0, 0, 14, 5, 0, 'Anfield'),
('2018/19', 'Liverpool', 'Leicester City', '2019-01-30', '72.1', 1, 0, 13, 10, 1, 3, 0, 6, 5, 1, 'Anfield'),
('2018/19', 'Liverpool', 'Manchester City', '2018-10-07', '49.4', 1, 0, 10, 7, 0, 3, 0, 10, 6, 0, 'Anfield'),
('2018/19', 'Liverpool', 'Manchester United', '2018-12-16', '64.5', 0, 0, 6, 36, 3, 2, 0, 14, 6, 1, 'Anfield'),
('2018/19', 'Liverpool', 'Newcastle United', '2018-12-26', '75.0', 0, 0, 7, 16, 4, 0, 0, 10, 6, 0, 'Anfield'),
('2018/19', 'Liverpool', 'Southampton', '2018-09-22', '60.6', 0, 0, 7, 12, 3, 2, 0, 10, 7, 0, 'Anfield'),
('2018/19', 'Liverpool', 'Tottenham Hotspur', '2019-03-31', '48.7', 0, 0, 5, 14, 2, 1, 0, 8, 11, 1, 'Anfield'),
('2018/19', 'Liverpool', 'Watford', '2019-02-27', '61.6', 0, 0, 5, 19, 5, 2, 0, 7, 5, 0, 'Anfield'),
('2018/19', 'Liverpool', 'West Ham United', '2018-08-12', '64.8', 1, 0, 14, 18, 4, 2, 0, 9, 5, 0, 'Anfield'),
('2018/19', 'Liverpool', 'Wolverhampton Wanderers', '2019-05-12', '59.0', 0, 0, 3, 13, 2, 2, 0, 11, 7, 0, 'Anfield'),
('2018/19', 'Manchester City', 'AFC Bournemouth', '2018-12-01', '73.1', 0, 0, 9, 16, 3, 0, 0, 3, 4, 1, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Arsenal', '2019-02-03', '58.8', 1, 0, 11, 19, 3, 1, 0, 8, 4, 1, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Brighton and Hove Albion', '2018-09-29', '80.1', 0, 0, 4, 28, 2, 3, 0, 10, 4, 0, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Burnley', '2018-10-20', '69.1', 2, 0, 11, 24, 5, 2, 0, 5, 5, 0, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Cardiff City', '2019-04-03', '78.8', 0, 0, 3, 27, 2, 3, 0, 7, 4, 0, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Chelsea', '2019-02-10', '55.8', 1, 0, 9, 15, 6, 2, 0, 13, 12, 0, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Crystal Palace', '2018-12-22', '78.3', 0, 0, 7, 19, 2, 4, 0, 6, 5, 3, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Everton', '2018-12-15', '67.0', 1, 0, 7, 13, 3, 2, 0, 9, 9, 1, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Fulham', '2018-09-15', '64.7', 0, 0, 7, 28, 3, 0, 0, 7, 9, 0, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Huddersfield Town', '2018-08-19', '76.9', 0, 0, 9, 32, 6, 2, 0, 4, 5, 1, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Leicester City', '2019-05-06', '61.0', 3, 0, 12, 19, 1, 2, 0, 5, 7, 0, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Liverpool', '2019-01-03', '49.6', 4, 0, 12, 9, 2, 2, 0, 7, 7, 1, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Manchester United', '2018-11-11', '64.9', 1, 0, 12, 17, 3, 1, 0, 12, 6, 1, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Newcastle United', '2018-09-01', '78.1', 0, 0, 5, 24, 2, 0, 0, 13, 3, 1, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Southampton', '2018-11-04', '67.3', 1, 0, 14, 18, 6, 1, 0, 9, 13, 1, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Tottenham Hotspur', '2019-04-20', '60.7', 1, 0, 11, 15, 1, 2, 0, 11, 10, 0, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Watford', '2019-03-09', '71.1', 1, 0, 11, 19, 3, 1, 0, 7, 2, 1, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'West Ham United', '2019-02-27', '75.6', 0, 0, 2, 20, 1, 2, 0, 6, 2, 0, 'Etihad Stadium'),
('2018/19', 'Manchester City', 'Wolverhampton Wanderers', '2019-01-14', '76.1', 1, 0, 6, 24, 3, 0, 1, 3, 3, 0, 'Etihad Stadium'),
('2018/19', 'Manchester United', 'AFC Bournemouth', '2018-12-30', '64.9', 2, 1, 10, 11, 4, 0, 0, 7, 7, 1, 'Old Trafford'),
('2018/19', 'Manchester United', 'Arsenal', '2018-12-05', '44.8', 3, 0, 13, 10, 2, 3, 0, 10, 9, 2, 'Old Trafford'),
('2018/19', 'Manchester United', 'Brighton and Hove Albion', '2019-01-19', '56.0', 1, 0, 11, 20, 2, 0, 0, 11, 7, 1, 'Old Trafford'),
('2018/19', 'Manchester United', 'Burnley', '2019-01-29', '74.4', 1, 0, 10, 28, 2, 3, 0, 9, 6, 2, 'Old Trafford'),
('2018/19', 'Manchester United', 'Cardiff City', '2019-05-12', '73.6', 3, 0, 9, 26, 0, 3, 0, 6, 13, 2, 'Old Trafford'),
('2018/19', 'Manchester United', 'Chelsea', '2019-04-28', '51.7', 3, 0, 9, 7, 1, 2, 0, 14, 16, 1, 'Old Trafford'),
('2018/19', 'Manchester United', 'Crystal Palace', '2018-11-24', '59.8', 1, 0, 13, 12, 0, 2, 0, 12, 13, 0, 'Old Trafford'),
('2018/19', 'Manchester United', 'Everton', '2018-10-28', '53.7', 2, 0, 15, 14, 2, 1, 0, 12, 14, 1, 'Old Trafford'),
('2018/19', 'Manchester United', 'Fulham', '2018-12-08', '62.7', 1, 0, 11, 20, 4, 1, 1, 15, 10, 1, 'Old Trafford'),
('2018/19', 'Manchester United', 'Huddersfield Town', '2018-12-26', '64.7', 1, 0, 9, 16, 3, 1, 0, 13, 10, 1, 'Old Trafford'),
('2018/19', 'Manchester United', 'Leicester City', '2018-08-10', '46.3', 2, 0, 11, 8, 2, 1, 0, 8, 13, 1, 'Old Trafford'),
('2018/19', 'Manchester United', 'Liverpool', '2019-02-24', '35.4', 1, 0, 15, 6, 0, 3, 0, 17, 7, 0, 'Old Trafford'),
('2018/19', 'Manchester United', 'Manchester City', '2019-04-24', '36.8', 2, 0, 10, 12, 0, 2, 0, 10, 8, 2, 'Old Trafford'),
('2018/19', 'Manchester United', 'Newcastle United', '2018-10-06', '73.0', 2, 0, 16, 18, 3, 2, 0, 8, 13, 2, 'Old Trafford'),
('2018/19', 'Manchester United', 'Southampton', '2019-03-02', '64.2', 2, 0, 7, 16, 3, 1, 0, 10, 9, 2, 'Old Trafford'),
('2018/19', 'Manchester United', 'Tottenham Hotspur', '2018-08-27', '57.0', 2, 0, 11, 23, 0, 3, 0, 16, 9, 3, 'Old Trafford'),
('2018/19', 'Manchester United', 'Watford', '2019-03-30', '51.5', 1, 0, 14, 8, 2, 2, 0, 9, 20, 1, 'Old Trafford'),
('2018/19', 'Manchester United', 'West Ham United', '2019-04-13', '42.3', 1, 0, 14, 14, 2, 1, 0, 5, 18, 1, 'Old Trafford'),
('2018/19', 'Manchester United', 'Wolverhampton Wanderers', '2018-09-22', '64.5', 1, 0, 5, 15, 1, 1, 0, 17, 11, 1, 'Old Trafford'),
('2018/19', 'Newcastle United', 'AFC Bournemouth', '2018-11-10', '39.3', 2, 0, 9, 18, 2, 1, 0, 11, 14, 1, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Arsenal', '2018-09-15', '36.3', 0, 0, 13, 4, 1, 0, 0, 11, 12, 2, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Brighton and Hove Albion', '2018-10-20', '68.0', 0, 0, 13, 27, 0, 2, 0, 17, 8, 1, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Burnley', '2019-02-26', '54.3', 1, 0, 8, 13, 2, 3, 0, 8, 12, 0, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Cardiff City', '2019-01-19', '53.5', 0, 0, 11, 16, 3, 1, 0, 6, 9, 0, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Chelsea', '2018-08-26', '18.9', 3, 0, 16, 6, 1, 1, 0, 8, 15, 2, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Crystal Palace', '2019-04-06', '53.8', 1, 0, 12, 18, 0, 2, 0, 13, 3, 1, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Everton', '2019-03-09', '45.5', 3, 0, 13, 19, 3, 1, 0, 10, 7, 2, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Fulham', '2018-12-22', '53.5', 1, 0, 9, 9, 0, 2, 0, 12, 4, 0, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Huddersfield Town', '2019-02-23', '54.3', 2, 0, 11, 29, 2, 0, 1, 7, 3, 0, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Leicester City', '2018-09-29', '41.5', 0, 0, 11, 6, 0, 0, 0, 5, 12, 2, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Liverpool', '2019-05-04', '30.9', 1, 0, 10, 14, 2, 1, 0, 4, 11, 3, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Manchester City', '2019-01-29', '23.8', 2, 0, 9, 7, 2, 3, 0, 7, 12, 1, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Manchester United', '2019-01-02', '34.9', 1, 0, 10, 14, 0, 2, 0, 9, 16, 2, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Southampton', '2019-04-20', '43.4', 0, 0, 5, 15, 3, 2, 0, 11, 15, 1, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Tottenham Hotspur', '2018-08-11', '40.4', 2, 0, 11, 15, 1, 2, 0, 12, 15, 2, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Watford', '2018-11-03', '41.9', 1, 0, 12, 10, 1, 5, 0, 11, 16, 0, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'West Ham United', '2018-12-01', '58.7', 3, 0, 10, 16, 0, 3, 0, 10, 7, 3, 'St. James\' Park'),
('2018/19', 'Newcastle United', 'Wolverhampton Wanderers', '2018-12-09', '50.4', 2, 1, 10, 12, 1, 5, 0, 17, 13, 2, 'St. James\' Park'),
('2018/19', 'Southampton', 'AFC Bournemouth', '2019-04-27', '44.4', 2, 0, 8, 22, 3, 1, 0, 9, 9, 3, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Arsenal', '2018-12-16', '33.8', 3, 0, 12, 12, 3, 1, 0, 10, 13, 2, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Brighton and Hove Albion', '2018-09-17', '51.2', 2, 0, 10, 14, 2, 3, 0, 13, 12, 2, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Burnley', '2018-08-12', '47.7', 0, 0, 10, 18, 0, 1, 0, 9, 16, 0, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Cardiff City', '2019-02-09', '66.7', 3, 0, 15, 14, 1, 3, 0, 12, 6, 2, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Chelsea', '2018-10-07', '34.7', 6, 0, 13, 15, 0, 0, 0, 11, 21, 3, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Crystal Palace', '2019-01-30', '58.8', 2, 0, 11, 13, 1, 2, 1, 8, 15, 1, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Everton', '2019-01-19', '39.4', 2, 0, 12, 11, 2, 1, 0, 11, 7, 1, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Fulham', '2019-02-27', '40.9', 0, 0, 15, 14, 2, 1, 0, 13, 14, 0, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Huddersfield Town', '2019-05-12', '53.7', 0, 0, 8, 10, 1, 1, 0, 6, 10, 1, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Leicester City', '2018-08-25', '51.7', 1, 1, 13, 11, 1, 1, 0, 11, 8, 2, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Liverpool', '2019-04-05', '33.0', 2, 0, 8, 11, 1, 4, 0, 7, 17, 3, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Manchester City', '2018-12-30', '23.4', 2, 1, 11, 5, 1, 3, 0, 10, 14, 3, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Manchester United', '2018-12-01', '40.3', 4, 0, 12, 16, 2, 4, 0, 13, 11, 2, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Newcastle United', '2018-10-27', '50.2', 0, 0, 9, 22, 0, 1, 0, 12, 6, 0, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Tottenham Hotspur', '2019-03-09', '36.8', 4, 0, 16, 12, 2, 2, 0, 9, 16, 1, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Watford', '2018-11-10', '42.3', 3, 0, 13, 14, 1, 2, 0, 13, 12, 1, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'West Ham United', '2018-12-27', '45.8', 2, 0, 10, 11, 1, 0, 0, 3, 16, 2, 'St. Mary\'s Stadium'),
('2018/19', 'Southampton', 'Wolverhampton Wanderers', '2019-04-13', '30.7', 1, 0, 13, 12, 3, 3, 0, 8, 17, 1, 'St. Mary\'s Stadium'),
('2018/19', 'Tottenham Hotspur', 'AFC Bournemouth', '2018-12-26', '56.7', 2, 0, 5, 10, 5, 1, 0, 8, 14, 0, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Arsenal', '2019-03-02', '60.2', 3, 0, 15, 11, 1, 2, 1, 14, 9, 1, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Brighton and Hove Albion', '2019-04-23', '78.5', 1, 0, 7, 29, 1, 2, 0, 13, 6, 0, 'Tottenham Hotspur Stadium'),
('2018/19', 'Tottenham Hotspur', 'Burnley', '2018-12-15', '70.3', 0, 0, 7, 15, 1, 2, 0, 8, 4, 0, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Cardiff City', '2018-10-06', '75.5', 3, 0, 7, 19, 1, 1, 1, 11, 8, 0, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Chelsea', '2018-11-24', '39.9', 0, 0, 19, 18, 3, 3, 0, 12, 13, 1, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Crystal Palace', '2019-04-03', '65.3', 1, 0, 8, 26, 2, 0, 0, 5, 5, 0, 'Tottenham Hotspur Stadium'),
('2018/19', 'Tottenham Hotspur', 'Everton', '2019-05-12', '55.0', 0, 0, 10, 11, 2, 2, 0, 13, 16, 2, 'Tottenham Hotspur Stadium'),
('2018/19', 'Tottenham Hotspur', 'Fulham', '2018-08-18', '59.6', 0, 0, 9, 25, 3, 0, 0, 5, 10, 1, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Huddersfield Town', '2019-04-13', '70.0', 2, 0, 10, 22, 4, 2, 0, 12, 7, 0, 'Tottenham Hotspur Stadium'),
('2018/19', 'Tottenham Hotspur', 'Leicester City', '2019-02-10', '53.1', 3, 0, 11, 12, 3, 1, 0, 4, 20, 1, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Liverpool', '2018-09-15', '60.4', 0, 0, 17, 11, 1, 0, 0, 16, 17, 2, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Manchester City', '2018-10-29', '48.0', 2, 0, 13, 4, 0, 2, 0, 13, 13, 1, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Manchester United', '2019-01-13', '61.2', 1, 0, 8, 21, 0, 2, 0, 8, 13, 1, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Newcastle United', '2019-02-02', '71.6', 0, 0, 6, 21, 1, 1, 0, 6, 8, 0, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Southampton', '2018-12-05', '52.1', 0, 0, 7, 13, 3, 0, 0, 5, 18, 1, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'Watford', '2019-01-30', '68.5', 0, 0, 6, 17, 2, 4, 0, 9, 9, 1, 'Wembley Stadium'),
('2018/19', 'Tottenham Hotspur', 'West Ham United', '2019-04-27', '63.0', 0, 0, 3, 14, 0, 2, 0, 8, 16, 1, 'Tottenham Hotspur Stadium'),
('2018/19', 'Tottenham Hotspur', 'Wolverhampton Wanderers', '2018-12-29', '60.8', 3, 0, 7, 10, 1, 2, 0, 7, 11, 3, 'Wembley Stadium'),
('2018/19', 'Watford', 'AFC Bournemouth', '2018-10-06', '47.2', 3, 1, 11, 14, 0, 1, 0, 9, 10, 4, 'Vicarage Road'),
('2018/19', 'Watford', 'Arsenal', '2019-04-15', '34.1', 2, 1, 12, 11, 0, 0, 0, 8, 19, 1, 'Vicarage Road'),
('2018/19', 'Watford', 'Brighton and Hove Albion', '2018-08-11', '53.2', 2, 0, 10, 19, 2, 2, 0, 16, 6, 0, 'Vicarage Road'),
('2018/19', 'Watford', 'Burnley', '2019-01-19', '54.8', 1, 0, 14, 9, 0, 2, 0, 9, 12, 0, 'Vicarage Road'),
('2018/19', 'Watford', 'Cardiff City', '2018-12-15', '71.5', 0, 0, 7, 17, 3, 0, 0, 5, 10, 2, 'Vicarage Road'),
('2018/19', 'Watford', 'Chelsea', '2018-12-26', '35.0', 1, 0, 15, 11, 1, 0, 0, 5, 10, 2, 'Vicarage Road'),
('2018/19', 'Watford', 'Crystal Palace', '2018-08-26', '43.7', 4, 0, 14, 13, 2, 2, 0, 11, 9, 1, 'Vicarage Road'),
('2018/19', 'Watford', 'Everton', '2019-02-09', '44.0', 2, 0, 21, 7, 1, 0, 1, 10, 9, 0, 'Vicarage Road'),
('2018/19', 'Watford', 'Fulham', '2019-04-02', '46.6', 3, 0, 12, 15, 4, 2, 0, 5, 17, 1, 'Vicarage Road'),
('2018/19', 'Watford', 'Huddersfield Town', '2018-10-27', '48.1', 1, 0, 9, 12, 3, 2, 0, 13, 13, 0, 'Vicarage Road'),
('2018/19', 'Watford', 'Leicester City', '2019-03-03', '39.0', 5, 0, 15, 6, 2, 1, 0, 12, 14, 1, 'Vicarage Road'),
('2018/19', 'Watford', 'Liverpool', '2018-11-24', '36.3', 0, 0, 12, 5, 0, 1, 1, 13, 10, 3, 'Vicarage Road'),
('2018/19', 'Watford', 'Manchester City', '2018-12-04', '29.9', 0, 0, 4, 11, 1, 1, 0, 8, 15, 2, 'Vicarage Road'),
('2018/19', 'Watford', 'Manchester United', '2018-09-15', '42.9', 2, 0, 9, 14, 1, 1, 1, 11, 9, 2, 'Vicarage Road'),
('2018/19', 'Watford', 'Newcastle United', '2018-12-29', '62.7', 1, 0, 17, 12, 1, 2, 0, 16, 8, 1, 'Vicarage Road'),
('2018/19', 'Watford', 'Southampton', '2019-04-23', '62.2', 5, 0, 10, 15, 1, 2, 0, 14, 8, 1, 'Vicarage Road'),
('2018/19', 'Watford', 'Tottenham Hotspur', '2018-09-02', '34.4', 2, 0, 9, 7, 2, 1, 0, 8, 11, 1, 'Vicarage Road'),
('2018/19', 'Watford', 'West Ham United', '2019-05-12', '48.3', 1, 1, 10, 17, 1, 0, 0, 10, 16, 4, 'Vicarage Road'),
('2018/19', 'Watford', 'Wolverhampton Wanderers', '2019-04-27', '56.5', 3, 0, 10, 10, 1, 2, 0, 11, 11, 2, 'Vicarage Road'),
('2018/19', 'West Ham United', 'AFC Bournemouth', '2018-08-18', '61.0', 6, 0, 14, 11, 1, 2, 0, 10, 12, 2, 'London Stadium'),
('2018/19', 'West Ham United', 'Arsenal', '2019-01-12', '41.4', 0, 0, 7, 11, 1, 2, 0, 10, 11, 0, 'London Stadium'),
('2018/19', 'West Ham United', 'Brighton and Hove Albion', '2019-01-02', '54.3', 0, 0, 9, 13, 2, 1, 0, 11, 13, 2, 'London Stadium'),
('2018/19', 'West Ham United', 'Burnley', '2018-11-03', '62.8', 1, 0, 7, 22, 4, 4, 0, 9, 6, 2, 'London Stadium'),
('2018/19', 'West Ham United', 'Cardiff City', '2018-12-04', '61.0', 1, 0, 10, 17, 3, 2, 0, 10, 9, 1, 'London Stadium'),
('2018/19', 'West Ham United', 'Chelsea', '2018-09-23', '28.2', 2, 0, 11, 6, 0, 1, 0, 9, 17, 0, 'London Stadium'),
('2018/19', 'West Ham United', 'Crystal Palace', '2018-12-08', '48.3', 1, 0, 10, 13, 3, 2, 0, 8, 8, 2, 'London Stadium'),
('2018/19', 'West Ham United', 'Everton', '2019-03-30', '49.3', 1, 0, 7, 3, 0, 1, 0, 14, 17, 2, 'London Stadium'),
('2018/19', 'West Ham United', 'Fulham', '2019-02-22', '55.1', 1, 0, 11, 21, 3, 1, 0, 11, 8, 1, 'London Stadium'),
('2018/19', 'West Ham United', 'Huddersfield Town', '2019-03-16', '64.1', 0, 0, 7, 16, 4, 2, 0, 15, 15, 3, 'London Stadium'),
('2018/19', 'West Ham United', 'Leicester City', '2019-04-20', '49.3', 2, 0, 8, 11, 2, 0, 0, 9, 11, 2, 'London Stadium'),
('2018/19', 'West Ham United', 'Liverpool', '2019-02-04', '26.7', 1, 0, 9, 13, 1, 1, 0, 11, 11, 1, 'London Stadium'),
('2018/19', 'West Ham United', 'Manchester City', '2018-11-24', '30.7', 0, 0, 6, 9, 0, 0, 0, 3, 9, 4, 'London Stadium'),
('2018/19', 'West Ham United', 'Manchester United', '2018-09-29', '49.0', 0, 0, 12, 8, 3, 1, 0, 12, 9, 1, 'London Stadium'),
('2018/19', 'West Ham United', 'Newcastle United', '2019-03-02', '55.8', 3, 0, 8, 10, 2, 4, 0, 14, 17, 0, 'London Stadium'),
('2018/19', 'West Ham United', 'Southampton', '2019-05-04', '56.3', 1, 0, 2, 17, 3, 1, 0, 11, 11, 0, 'London Stadium'),
('2018/19', 'West Ham United', 'Tottenham Hotspur', '2018-10-20', '44.0', 3, 0, 8, 13, 0, 0, 0, 10, 10, 1, 'London Stadium'),
('2018/19', 'West Ham United', 'Watford', '2018-12-22', '51.6', 3, 0, 9, 18, 0, 2, 0, 11, 11, 2, 'London Stadium'),
('2018/19', 'West Ham United', 'Wolverhampton Wanderers', '2018-09-01', '47.7', 2, 0, 10, 13, 0, 1, 0, 11, 15, 1, 'London Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'AFC Bournemouth', '2018-12-15', '37.8', 1, 0, 15, 10, 2, 2, 0, 7, 13, 0, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Arsenal', '2019-04-24', '29.6', 2, 0, 12, 11, 3, 3, 0, 9, 11, 1, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Brighton and Hove Albion', '2019-04-20', '68.2', 0, 0, 0, 23, 0, 1, 0, 8, 5, 0, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Burnley', '2018-09-16', '58.9', 2, 0, 10, 30, 1, 4, 0, 9, 7, 0, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Cardiff City', '2019-03-02', '56.3', 1, 0, 11, 13, 2, 2, 0, 6, 12, 0, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Chelsea', '2018-12-05', '29.9', 4, 0, 18, 6, 2, 4, 0, 10, 17, 1, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Crystal Palace', '2019-01-02', '51.9', 4, 0, 9, 9, 0, 1, 0, 7, 17, 2, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Everton', '2018-08-11', '57.4', 0, 0, 8, 11, 2, 1, 1, 7, 8, 2, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Fulham', '2019-05-04', '39.2', 1, 0, 10, 19, 1, 3, 0, 15, 6, 0, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Huddersfield Town', '2018-11-25', '44.8', 1, 0, 9, 12, 0, 2, 0, 8, 14, 2, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Leicester City', '2019-01-19', '45.6', 3, 0, 11, 12, 4, 3, 0, 10, 16, 3, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Liverpool', '2018-12-21', '38.3', 0, 0, 7, 11, 0, 0, 0, 3, 15, 2, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Manchester City', '2018-08-25', '28.9', 1, 0, 13, 11, 1, 2, 0, 8, 18, 1, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Manchester United', '2019-04-02', '49.8', 1, 0, 5, 9, 2, 2, 1, 11, 18, 1, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Newcastle United', '2019-02-11', '59.5', 1, 0, 7, 22, 1, 3, 0, 9, 9, 1, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Southampton', '2018-09-29', '48.8', 3, 0, 11, 14, 2, 1, 0, 7, 17, 0, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Tottenham Hotspur', '2018-11-03', '48.6', 1, 0, 11, 16, 2, 2, 0, 8, 10, 3, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'Watford', '2018-10-20', '44.8', 3, 0, 23, 10, 0, 1, 0, 13, 9, 2, 'Molineux Stadium'),
('2018/19', 'Wolverhampton Wanderers', 'West Ham United', '2019-01-29', '54.7', 4, 0, 8, 20, 3, 1, 0, 10, 4, 0, 'Molineux Stadium'),
('2019/20', 'AFC Bournemouth', 'Arsenal', '2019-12-26', '39.5', 4, 0, 5, 12, 1, 4, 0, 13, 17, 1, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Aston Villa', '2020-02-01', '39.6', 1, 1, 10, 16, 2, 3, 0, 15, 18, 1, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Brighton and Hove Albion', '2020-01-21', '34.7', 1, 0, 9, 11, 3, 1, 0, 12, 21, 1, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Burnley', '2019-12-21', '64.8', 2, 0, 13, 3, 0, 4, 0, 21, 2, 1, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Chelsea', '2020-02-29', '26.9', 2, 0, 8, 9, 2, 2, 0, 5, 23, 2, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Crystal Palace', '2020-06-20', '58.7', 3, 0, 13, 12, 0, 2, 0, 15, 7, 2, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Everton', '2019-09-15', '40.5', 0, 0, 5, 13, 3, 4, 0, 14, 14, 1, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Leicester City', '2020-07-12', '44.1', 2, 0, 11, 9, 4, 1, 1, 12, 13, 1, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Liverpool', '2019-12-07', '26.2', 0, 0, 5, 3, 0, 1, 0, 6, 21, 3, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Manchester City', '2019-08-25', '26.2', 1, 0, 7, 10, 1, 3, 0, 13, 18, 3, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Manchester United', '2019-11-02', '42.6', 4, 0, 14, 13, 1, 3, 0, 12, 15, 0, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Newcastle United', '2020-07-01', '54.9', 2, 0, 11, 12, 1, 0, 0, 10, 12, 4, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Norwich City', '2019-10-19', '47.7', 1, 0, 8, 11, 0, 3, 0, 11, 10, 0, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Sheffield United', '2019-08-10', '52.9', 2, 0, 10, 13, 1, 1, 0, 19, 8, 1, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Southampton', '2020-07-19', '43.0', 2, 0, 12, 11, 0, 2, 0, 11, 16, 2, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Tottenham Hotspur', '2020-07-09', '35.7', 3, 0, 11, 9, 0, 2, 0, 14, 9, 0, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Watford', '2020-01-12', '56.7', 1, 0, 3, 10, 0, 1, 0, 13, 18, 3, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'West Ham United', '2019-09-28', '49.1', 3, 0, 7, 13, 2, 1, 0, 8, 17, 2, 'Vitality Stadium'),
('2019/20', 'AFC Bournemouth', 'Wolverhampton Wanderers', '2019-11-23', '46.6', 2, 1, 10, 9, 1, 1, 0, 12, 18, 2, 'Vitality Stadium'),
('2019/20', 'Arsenal', 'AFC Bournemouth', '2019-10-06', '52.5', 1, 0, 12, 12, 1, 2, 0, 6, 10, 0, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Aston Villa', '2019-09-22', '58.1', 5, 1, 13, 21, 3, 1, 0, 15, 14, 2, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Brighton and Hove Albion', '2019-12-05', '49.2', 3, 0, 10, 12, 1, 1, 0, 11, 20, 2, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Burnley', '2019-08-17', '67.5', 2, 0, 13, 15, 2, 1, 0, 11, 18, 1, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Chelsea', '2019-12-29', '42.1', 5, 0, 13, 7, 1, 4, 0, 19, 13, 2, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Crystal Palace', '2019-10-27', '56.2', 2, 0, 18, 15, 2, 0, 0, 9, 10, 2, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Everton', '2020-02-23', '51.3', 0, 0, 12, 9, 3, 4, 0, 12, 17, 2, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Leicester City', '2020-07-07', '37.5', 1, 1, 10, 11, 1, 0, 0, 14, 13, 1, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Liverpool', '2020-07-15', '31.1', 3, 0, 14, 3, 2, 1, 0, 10, 24, 1, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Manchester City', '2019-12-15', '42.4', 1, 0, 9, 6, 0, 4, 0, 24, 14, 3, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Manchester United', '2020-01-01', '48.8', 2, 0, 11, 10, 2, 0, 0, 15, 10, 0, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Newcastle United', '2020-02-16', '68.4', 2, 0, 15, 15, 4, 0, 0, 9, 10, 0, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Norwich City', '2020-07-01', '51.6', 1, 0, 10, 13, 4, 4, 0, 10, 8, 0, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Sheffield United', '2020-01-18', '61.0', 1, 0, 9, 11, 1, 2, 0, 13, 12, 1, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Southampton', '2019-11-23', '61.0', 6, 0, 13, 12, 2, 2, 0, 19, 21, 2, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Tottenham Hotspur', '2019-09-01', '54.8', 3, 0, 13, 26, 2, 5, 0, 19, 13, 2, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Watford', '2020-07-26', '51.1', 3, 0, 9, 13, 3, 3, 0, 12, 19, 2, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'West Ham United', '2020-03-07', '68.9', 1, 0, 11, 9, 1, 2, 0, 9, 14, 0, 'Emirates Stadium'),
('2019/20', 'Arsenal', 'Wolverhampton Wanderers', '2019-11-02', '57.5', 0, 0, 6, 10, 1, 2, 0, 15, 24, 1, 'Emirates Stadium'),
('2019/20', 'Aston Villa', 'AFC Bournemouth', '2019-08-17', '62.6', 0, 0, 10, 21, 1, 2, 0, 13, 12, 2, 'Villa Park'),
('2019/20', 'Aston Villa', 'Arsenal', '2020-07-21', '31.0', 2, 0, 13, 8, 1, 4, 0, 19, 7, 0, 'Villa Park');
INSERT INTO `match` (`Season`, `HomeTeamName`, `AwayTeamName`, `Date`, `HomePossession`, `HomeYellowCards`, `HomeRedCards`, `HomeFouls`, `HomeShots`, `HomeGoals`, `AwayYellowCards`, `AwayRedCards`, `AwayFouls`, `AwayShots`, `AwayGoals`, `StadiumName`) VALUES
('2019/20', 'Aston Villa', 'Brighton and Hove Albion', '2019-10-19', '48.9', 1, 0, 9, 24, 2, 2, 1, 17, 20, 1, 'Villa Park'),
('2019/20', 'Aston Villa', 'Burnley', '2019-09-28', '60.2', 1, 0, 10, 16, 2, 4, 0, 16, 10, 2, 'Villa Park'),
('2019/20', 'Aston Villa', 'Chelsea', '2020-06-21', '26.0', 2, 0, 9, 8, 1, 1, 0, 17, 19, 2, 'Villa Park'),
('2019/20', 'Aston Villa', 'Crystal Palace', '2020-07-12', '44.9', 2, 0, 21, 12, 2, 4, 1, 21, 9, 0, 'Villa Park'),
('2019/20', 'Aston Villa', 'Everton', '2019-08-23', '35.2', 2, 0, 10, 7, 2, 3, 0, 18, 12, 0, 'Villa Park'),
('2019/20', 'Aston Villa', 'Leicester City', '2019-12-08', '40.4', 6, 0, 21, 15, 1, 2, 0, 15, 23, 4, 'Villa Park'),
('2019/20', 'Aston Villa', 'Liverpool', '2019-11-02', '26.3', 1, 0, 12, 4, 1, 2, 0, 9, 25, 2, 'Villa Park'),
('2019/20', 'Aston Villa', 'Manchester City', '2020-01-12', '29.4', 2, 0, 5, 7, 1, 1, 0, 12, 22, 6, 'Villa Park'),
('2019/20', 'Aston Villa', 'Manchester United', '2020-07-09', '33.4', 2, 0, 7, 9, 0, 3, 0, 13, 14, 3, 'Villa Park'),
('2019/20', 'Aston Villa', 'Newcastle United', '2019-11-25', '62.0', 1, 0, 10, 17, 2, 1, 0, 9, 11, 0, 'Villa Park'),
('2019/20', 'Aston Villa', 'Norwich City', '2019-12-26', '42.5', 2, 0, 15, 11, 1, 3, 0, 12, 16, 0, 'Villa Park'),
('2019/20', 'Aston Villa', 'Sheffield United', '2020-06-17', '45.1', 1, 0, 11, 14, 0, 1, 0, 14, 5, 0, 'Villa Park'),
('2019/20', 'Aston Villa', 'Southampton', '2019-12-21', '56.5', 2, 0, 16, 19, 1, 1, 0, 15, 17, 3, 'Villa Park'),
('2019/20', 'Aston Villa', 'Tottenham Hotspur', '2020-02-16', '54.3', 2, 0, 12, 18, 2, 0, 0, 10, 23, 3, 'Villa Park'),
('2019/20', 'Aston Villa', 'Watford', '2020-01-21', '64.5', 2, 0, 11, 16, 2, 2, 0, 18, 8, 1, 'Villa Park'),
('2019/20', 'Aston Villa', 'West Ham United', '2019-09-16', '46.6', 2, 0, 13, 10, 0, 1, 1, 12, 13, 0, 'Villa Park'),
('2019/20', 'Aston Villa', 'Wolverhampton Wanderers', '2020-06-27', '48.0', 1, 0, 16, 11, 0, 1, 0, 16, 9, 1, 'Villa Park'),
('2019/20', 'Brighton and Hove Albion', 'AFC Bournemouth', '2019-12-28', '55.1', 0, 0, 9, 16, 2, 2, 0, 11, 10, 0, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Arsenal', '2020-06-20', '41.3', 2, 0, 13, 9, 2, 1, 0, 8, 13, 1, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Aston Villa', '2020-01-18', '55.3', 3, 0, 11, 10, 1, 3, 0, 13, 8, 1, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Burnley', '2019-09-14', '62.5', 0, 0, 13, 14, 1, 2, 0, 7, 7, 1, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Chelsea', '2020-01-01', '47.7', 2, 0, 8, 16, 1, 3, 0, 15, 16, 1, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Crystal Palace', '2020-02-29', '66.5', 2, 0, 8, 23, 0, 1, 0, 9, 12, 1, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Everton', '2019-10-26', '55.5', 2, 0, 12, 8, 3, 1, 0, 12, 10, 2, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Leicester City', '2019-11-23', '52.6', 2, 0, 9, 7, 0, 0, 0, 1, 19, 2, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Liverpool', '2020-07-08', '44.4', 1, 0, 7, 12, 1, 4, 0, 15, 20, 3, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Manchester City', '2020-07-11', '29.8', 1, 0, 7, 3, 0, 0, 0, 3, 26, 5, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Manchester United', '2020-06-30', '38.0', 0, 0, 10, 8, 0, 1, 0, 9, 12, 3, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Newcastle United', '2020-07-20', '62.5', 4, 0, 13, 11, 0, 2, 0, 12, 12, 0, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Norwich City', '2019-11-02', '58.5', 0, 0, 11, 21, 2, 1, 0, 8, 7, 0, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Sheffield United', '2019-12-21', '69.0', 1, 0, 6, 9, 0, 3, 0, 11, 7, 1, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Southampton', '2019-08-24', '50.7', 1, 1, 9, 12, 0, 3, 0, 10, 12, 2, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Tottenham Hotspur', '2019-10-05', '47.7', 2, 0, 11, 17, 3, 1, 0, 7, 8, 0, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Watford', '2020-02-08', '67.2', 2, 0, 9, 10, 1, 2, 0, 12, 5, 1, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'West Ham United', '2019-08-17', '57.3', 0, 0, 11, 16, 1, 2, 0, 10, 8, 1, 'Amex Stadium'),
('2019/20', 'Brighton and Hove Albion', 'Wolverhampton Wanderers', '2019-12-08', '62.0', 3, 0, 10, 13, 2, 0, 0, 7, 13, 2, 'Amex Stadium'),
('2019/20', 'Burnley', 'AFC Bournemouth', '2020-02-22', '42.1', 4, 0, 9, 16, 3, 3, 0, 9, 12, 0, 'Turf Moor'),
('2019/20', 'Burnley', 'Arsenal', '2020-02-02', '42.7', 1, 0, 8, 15, 0, 3, 0, 11, 13, 0, 'Turf Moor'),
('2019/20', 'Burnley', 'Aston Villa', '2020-01-01', '61.9', 1, 0, 12, 20, 1, 1, 0, 10, 11, 2, 'Turf Moor'),
('2019/20', 'Burnley', 'Brighton and Hove Albion', '2020-07-26', '54.2', 3, 0, 11, 13, 1, 0, 0, 11, 15, 2, 'Turf Moor'),
('2019/20', 'Burnley', 'Chelsea', '2019-10-26', '36.7', 3, 0, 7, 13, 2, 2, 0, 8, 16, 4, 'Turf Moor'),
('2019/20', 'Burnley', 'Crystal Palace', '2019-11-30', '43.5', 2, 0, 13, 15, 0, 0, 0, 9, 7, 2, 'Turf Moor'),
('2019/20', 'Burnley', 'Everton', '2019-10-05', '40.8', 2, 0, 5, 9, 1, 1, 1, 12, 11, 0, 'Turf Moor'),
('2019/20', 'Burnley', 'Leicester City', '2020-01-19', '44.5', 1, 0, 14, 8, 2, 0, 0, 8, 18, 1, 'Turf Moor'),
('2019/20', 'Burnley', 'Liverpool', '2019-08-31', '36.2', 0, 0, 10, 7, 0, 0, 0, 16, 15, 3, 'Turf Moor'),
('2019/20', 'Burnley', 'Manchester City', '2019-12-03', '24.5', 1, 0, 9, 4, 1, 1, 0, 6, 17, 4, 'Turf Moor'),
('2019/20', 'Burnley', 'Manchester United', '2019-12-28', '38.6', 4, 0, 17, 8, 0, 3, 0, 10, 14, 2, 'Turf Moor'),
('2019/20', 'Burnley', 'Newcastle United', '2019-12-14', '48.0', 0, 0, 15, 7, 1, 2, 0, 12, 9, 0, 'Turf Moor'),
('2019/20', 'Burnley', 'Norwich City', '2019-09-21', '41.4', 0, 0, 11, 13, 2, 1, 0, 10, 11, 0, 'Turf Moor'),
('2019/20', 'Burnley', 'Sheffield United', '2020-07-05', '47.4', 0, 0, 8, 9, 1, 0, 0, 14, 10, 1, 'Turf Moor'),
('2019/20', 'Burnley', 'Southampton', '2019-08-10', '46.5', 0, 0, 6, 10, 3, 0, 0, 12, 11, 0, 'Turf Moor'),
('2019/20', 'Burnley', 'Tottenham Hotspur', '2020-03-07', '45.0', 5, 0, 16, 21, 1, 4, 0, 11, 13, 1, 'Turf Moor'),
('2019/20', 'Burnley', 'Watford', '2020-06-25', '55.2', 1, 0, 13, 9, 1, 0, 0, 15, 10, 0, 'Turf Moor'),
('2019/20', 'Burnley', 'West Ham United', '2019-11-09', '40.0', 2, 0, 17, 14, 3, 1, 0, 10, 7, 0, 'Turf Moor'),
('2019/20', 'Burnley', 'Wolverhampton Wanderers', '2020-07-15', '46.7', 0, 0, 10, 9, 1, 0, 0, 8, 14, 1, 'Turf Moor'),
('2019/20', 'Chelsea', 'AFC Bournemouth', '2019-12-14', '67.0', 1, 0, 9, 18, 0, 2, 0, 14, 11, 1, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Arsenal', '2020-01-21', '58.8', 2, 0, 11, 19, 2, 1, 1, 6, 2, 2, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Aston Villa', '2019-12-04', '64.5', 2, 0, 18, 25, 2, 1, 0, 10, 9, 1, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Brighton and Hove Albion', '2019-09-28', '52.6', 2, 0, 5, 24, 2, 3, 0, 13, 8, 0, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Burnley', '2020-01-11', '65.5', 0, 0, 7, 18, 3, 3, 0, 4, 7, 0, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Crystal Palace', '2019-11-09', '60.6', 3, 0, 9, 23, 2, 2, 0, 17, 3, 0, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Everton', '2020-03-08', '60.2', 1, 0, 8, 17, 4, 2, 0, 10, 3, 0, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Leicester City', '2019-08-18', '50.2', 1, 0, 9, 14, 1, 0, 0, 14, 12, 1, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Liverpool', '2019-09-22', '55.0', 3, 0, 8, 13, 1, 3, 0, 13, 6, 2, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Manchester City', '2020-06-25', '35.3', 1, 0, 13, 15, 2, 1, 1, 3, 11, 1, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Manchester United', '2020-02-17', '61.2', 4, 0, 11, 17, 0, 3, 0, 11, 9, 2, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Newcastle United', '2019-10-19', '71.1', 2, 0, 9, 16, 1, 1, 0, 12, 5, 0, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Norwich City', '2020-07-14', '67.7', 2, 0, 10, 22, 1, 2, 0, 9, 2, 0, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Sheffield United', '2019-08-31', '62.3', 0, 0, 6, 13, 2, 1, 0, 11, 8, 2, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Southampton', '2019-12-26', '66.1', 3, 0, 10, 10, 0, 2, 0, 9, 5, 2, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Tottenham Hotspur', '2020-02-22', '49.1', 1, 0, 14, 17, 2, 2, 0, 14, 5, 1, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Watford', '2020-07-04', '70.4', 0, 0, 9, 21, 3, 2, 0, 12, 7, 0, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'West Ham United', '2019-11-30', '65.7', 0, 0, 0, 19, 0, 3, 0, 16, 5, 1, 'Stamford Bridge'),
('2019/20', 'Chelsea', 'Wolverhampton Wanderers', '2020-07-26', '62.9', 2, 0, 10, 11, 2, 3, 0, 16, 5, 0, 'Stamford Bridge'),
('2019/20', 'Crystal Palace', 'AFC Bournemouth', '2019-12-03', '30.8', 3, 1, 6, 7, 1, 3, 0, 15, 6, 0, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Arsenal', '2020-01-11', '42.7', 2, 0, 14, 6, 1, 3, 1, 22, 7, 1, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Aston Villa', '2019-08-31', '52.8', 2, 0, 15, 22, 1, 4, 1, 16, 10, 0, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Brighton and Hove Albion', '2019-12-16', '34.8', 1, 0, 7, 11, 1, 1, 0, 12, 15, 1, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Burnley', '2020-06-29', '58.4', 1, 0, 12, 17, 0, 1, 0, 13, 8, 1, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Chelsea', '2020-07-07', '42.0', 1, 0, 11, 13, 2, 0, 0, 10, 14, 3, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Everton', '2019-08-10', '35.4', 2, 0, 16, 6, 0, 1, 1, 14, 10, 0, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Leicester City', '2019-11-03', '44.2', 2, 0, 15, 12, 0, 2, 0, 16, 14, 2, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Liverpool', '2019-11-23', '40.0', 0, 0, 8, 16, 1, 1, 0, 7, 12, 2, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Manchester City', '2019-10-19', '28.7', 1, 0, 8, 7, 0, 1, 0, 10, 21, 2, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Manchester United', '2020-07-16', '40.6', 1, 0, 10, 13, 0, 2, 0, 15, 17, 2, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Newcastle United', '2020-02-22', '44.2', 2, 0, 15, 18, 1, 6, 1, 11, 8, 0, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Norwich City', '2019-09-28', '44.6', 3, 0, 14, 15, 2, 1, 0, 10, 10, 0, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Sheffield United', '2020-02-01', '60.7', 3, 1, 9, 13, 0, 2, 0, 15, 10, 1, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Southampton', '2020-01-21', '44.4', 1, 0, 12, 6, 0, 2, 0, 13, 15, 2, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Tottenham Hotspur', '2020-07-26', '47.2', 3, 0, 11, 13, 1, 2, 0, 13, 7, 1, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Watford', '2020-03-07', '44.2', 4, 0, 12, 10, 1, 4, 0, 16, 10, 0, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'West Ham United', '2019-12-26', '58.2', 0, 0, 5, 13, 2, 2, 0, 10, 10, 1, 'Selhurst Park'),
('2019/20', 'Crystal Palace', 'Wolverhampton Wanderers', '2019-09-22', '49.9', 2, 0, 7, 13, 1, 1, 1, 10, 13, 1, 'Selhurst Park'),
('2019/20', 'Everton', 'AFC Bournemouth', '2020-07-26', '70.0', 1, 0, 11, 13, 1, 0, 0, 9, 13, 3, 'Goodison Park'),
('2019/20', 'Everton', 'Arsenal', '2019-12-21', '43.0', 2, 0, 10, 9, 0, 3, 0, 11, 6, 0, 'Goodison Park'),
('2019/20', 'Everton', 'Aston Villa', '2020-07-16', '54.9', 2, 0, 15, 9, 1, 1, 0, 13, 15, 1, 'Goodison Park'),
('2019/20', 'Everton', 'Brighton and Hove Albion', '2020-01-11', '53.8', 2, 0, 7, 14, 1, 1, 0, 7, 9, 0, 'Goodison Park'),
('2019/20', 'Everton', 'Burnley', '2019-12-26', '67.5', 0, 0, 15, 21, 1, 0, 0, 14, 6, 0, 'Goodison Park'),
('2019/20', 'Everton', 'Chelsea', '2019-12-07', '30.0', 3, 0, 14, 13, 3, 0, 0, 9, 15, 1, 'Goodison Park'),
('2019/20', 'Everton', 'Crystal Palace', '2020-02-08', '46.6', 0, 0, 11, 14, 3, 1, 0, 12, 10, 1, 'Goodison Park'),
('2019/20', 'Everton', 'Leicester City', '2020-07-01', '34.9', 1, 0, 13, 7, 2, 1, 0, 10, 15, 1, 'Goodison Park'),
('2019/20', 'Everton', 'Liverpool', '2020-06-21', '29.9', 2, 0, 15, 8, 0, 2, 0, 12, 10, 0, 'Goodison Park'),
('2019/20', 'Everton', 'Manchester City', '2019-09-28', '37.2', 2, 0, 4, 12, 1, 2, 0, 8, 19, 3, 'Goodison Park'),
('2019/20', 'Everton', 'Manchester United', '2020-03-01', '44.1', 3, 0, 11, 16, 1, 4, 0, 11, 14, 1, 'Goodison Park'),
('2019/20', 'Everton', 'Newcastle United', '2020-01-21', '54.9', 1, 0, 13, 17, 2, 1, 0, 10, 9, 2, 'Goodison Park'),
('2019/20', 'Everton', 'Norwich City', '2019-11-23', '57.3', 3, 0, 12, 18, 0, 5, 0, 11, 13, 2, 'Goodison Park'),
('2019/20', 'Everton', 'Sheffield United', '2019-09-21', '69.8', 1, 0, 9, 16, 0, 3, 0, 9, 2, 2, 'Goodison Park'),
('2019/20', 'Everton', 'Southampton', '2020-07-09', '38.7', 3, 0, 13, 11, 1, 3, 0, 14, 16, 1, 'Goodison Park'),
('2019/20', 'Everton', 'Tottenham Hotspur', '2019-11-03', '47.3', 1, 0, 9, 7, 1, 2, 1, 8, 5, 1, 'Goodison Park'),
('2019/20', 'Everton', 'Watford', '2019-08-17', '44.1', 2, 0, 11, 12, 1, 3, 0, 11, 8, 0, 'Goodison Park'),
('2019/20', 'Everton', 'West Ham United', '2019-10-19', '51.3', 2, 0, 15, 19, 2, 2, 0, 15, 8, 0, 'Goodison Park'),
('2019/20', 'Everton', 'Wolverhampton Wanderers', '2019-09-01', '58.7', 1, 0, 12, 15, 3, 4, 1, 12, 8, 2, 'Goodison Park'),
('2019/20', 'Leicester City', 'AFC Bournemouth', '2019-08-31', '55.0', 1, 0, 9, 15, 3, 3, 0, 11, 8, 1, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Arsenal', '2019-11-09', '50.2', 1, 0, 10, 19, 2, 1, 0, 10, 8, 0, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Aston Villa', '2020-03-09', '64.6', 2, 0, 15, 15, 4, 1, 0, 12, 4, 0, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Brighton and Hove Albion', '2020-06-23', '66.4', 2, 0, 10, 11, 0, 2, 0, 13, 10, 0, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Burnley', '2019-10-19', '64.5', 0, 0, 4, 19, 2, 3, 0, 10, 13, 1, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Chelsea', '2020-02-01', '49.7', 2, 0, 16, 14, 2, 2, 0, 14, 7, 2, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Crystal Palace', '2020-07-04', '52.2', 2, 0, 18, 15, 3, 1, 0, 8, 7, 0, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Everton', '2019-12-01', '69.3', 0, 0, 7, 16, 2, 1, 0, 9, 11, 1, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Liverpool', '2019-12-26', '41.2', 1, 0, 5, 3, 0, 1, 0, 7, 15, 4, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Manchester City', '2020-02-22', '31.9', 0, 0, 14, 10, 0, 0, 0, 10, 18, 1, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Manchester United', '2020-07-26', '45.8', 1, 1, 12, 14, 0, 5, 0, 11, 7, 2, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Newcastle United', '2019-09-29', '68.9', 1, 0, 12, 13, 5, 1, 1, 9, 3, 0, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Norwich City', '2019-12-14', '56.8', 0, 0, 11, 18, 1, 5, 0, 15, 10, 1, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Sheffield United', '2020-07-16', '54.4', 1, 0, 12, 15, 2, 2, 0, 10, 5, 0, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Southampton', '2020-01-11', '58.2', 0, 0, 9, 5, 1, 3, 0, 17, 16, 2, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Tottenham Hotspur', '2019-09-21', '44.2', 1, 0, 16, 16, 2, 2, 0, 13, 11, 1, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Watford', '2019-12-04', '63.0', 3, 0, 13, 12, 2, 2, 0, 16, 4, 0, 'King Power Stadium'),
('2019/20', 'Leicester City', 'West Ham United', '2020-01-22', '67.3', 1, 0, 10, 19, 4, 1, 0, 19, 6, 1, 'King Power Stadium'),
('2019/20', 'Leicester City', 'Wolverhampton Wanderers', '2019-08-11', '70.0', 0, 0, 3, 16, 0, 2, 0, 13, 8, 0, 'King Power Stadium'),
('2019/20', 'Liverpool', 'AFC Bournemouth', '2020-03-07', '74.5', 0, 0, 10, 14, 2, 1, 0, 12, 6, 1, 'Anfield'),
('2019/20', 'Liverpool', 'Arsenal', '2019-08-24', '52.0', 1, 0, 8, 25, 3, 1, 0, 5, 9, 1, 'Anfield'),
('2019/20', 'Liverpool', 'Aston Villa', '2020-07-05', '71.2', 1, 0, 18, 6, 2, 1, 0, 8, 9, 0, 'Anfield'),
('2019/20', 'Liverpool', 'Brighton and Hove Albion', '2019-11-30', '44.8', 0, 1, 3, 15, 2, 0, 0, 10, 12, 1, 'Anfield'),
('2019/20', 'Liverpool', 'Burnley', '2020-07-11', '70.8', 1, 0, 7, 23, 1, 2, 0, 4, 6, 1, 'Anfield'),
('2019/20', 'Liverpool', 'Chelsea', '2020-07-22', '50.0', 1, 0, 8, 10, 5, 0, 0, 11, 10, 3, 'Anfield'),
('2019/20', 'Liverpool', 'Crystal Palace', '2020-06-24', '73.3', 0, 0, 7, 21, 4, 0, 0, 5, 3, 0, 'Anfield'),
('2019/20', 'Liverpool', 'Everton', '2019-12-04', '58.5', 1, 0, 13, 11, 5, 2, 0, 17, 12, 2, 'Anfield'),
('2019/20', 'Liverpool', 'Leicester City', '2019-10-05', '50.7', 1, 0, 9, 18, 2, 4, 0, 17, 2, 1, 'Anfield'),
('2019/20', 'Liverpool', 'Manchester City', '2019-11-10', '45.0', 0, 0, 10, 12, 3, 2, 0, 5, 18, 1, 'Anfield'),
('2019/20', 'Liverpool', 'Manchester United', '2020-01-19', '53.2', 1, 0, 7, 16, 2, 3, 0, 10, 9, 0, 'Anfield'),
('2019/20', 'Liverpool', 'Newcastle United', '2019-09-14', '75.3', 0, 0, 5, 21, 3, 0, 0, 4, 8, 1, 'Anfield'),
('2019/20', 'Liverpool', 'Norwich City', '2019-08-09', '57.9', 0, 0, 9, 15, 4, 2, 0, 9, 12, 1, 'Anfield'),
('2019/20', 'Liverpool', 'Sheffield United', '2020-01-02', '74.8', 0, 0, 5, 19, 2, 0, 0, 8, 3, 0, 'Anfield'),
('2019/20', 'Liverpool', 'Southampton', '2020-02-01', '61.5', 0, 0, 9, 16, 4, 2, 0, 15, 17, 0, 'Anfield'),
('2019/20', 'Liverpool', 'Tottenham Hotspur', '2019-10-27', '68.0', 3, 0, 9, 21, 2, 3, 0, 11, 11, 1, 'Anfield'),
('2019/20', 'Liverpool', 'Watford', '2019-12-14', '67.9', 2, 0, 8, 16, 2, 1, 0, 6, 8, 0, 'Anfield'),
('2019/20', 'Liverpool', 'West Ham United', '2020-02-24', '69.3', 0, 0, 4, 25, 3, 3, 0, 10, 7, 2, 'Anfield'),
('2019/20', 'Liverpool', 'Wolverhampton Wanderers', '2019-12-29', '62.9', 1, 0, 7, 10, 1, 0, 0, 3, 10, 0, 'Anfield'),
('2019/20', 'Manchester City', 'AFC Bournemouth', '2020-07-15', '72.5', 1, 0, 10, 8, 2, 1, 0, 10, 15, 1, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Arsenal', '2020-06-17', '67.1', 1, 0, 9, 20, 3, 1, 1, 7, 3, 0, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Aston Villa', '2019-10-26', '63.1', 1, 1, 10, 26, 3, 1, 0, 5, 11, 0, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Brighton and Hove Albion', '2019-08-31', '53.5', 1, 0, 10, 15, 4, 1, 0, 6, 6, 0, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Burnley', '2020-06-22', '71.7', 1, 0, 8, 19, 5, 1, 0, 7, 1, 0, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Chelsea', '2019-11-23', '46.7', 1, 0, 5, 15, 2, 1, 0, 9, 11, 1, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Crystal Palace', '2020-01-18', '72.5', 1, 0, 9, 25, 2, 2, 0, 7, 5, 2, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Everton', '2020-01-01', '65.4', 0, 0, 11, 16, 2, 4, 0, 11, 7, 1, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Leicester City', '2019-12-21', '62.7', 2, 0, 14, 23, 3, 2, 0, 9, 5, 1, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Liverpool', '2020-07-02', '47.0', 2, 0, 8, 14, 4, 2, 0, 7, 11, 0, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Manchester United', '2019-12-07', '71.9', 3, 0, 10, 22, 1, 2, 0, 10, 11, 2, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Newcastle United', '2020-07-08', '73.6', 0, 0, 13, 23, 5, 0, 0, 7, 6, 0, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Norwich City', '2020-07-26', '73.1', 1, 0, 7, 31, 5, 1, 0, 4, 5, 0, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Sheffield United', '2019-12-29', '72.9', 1, 0, 5, 16, 2, 1, 0, 6, 8, 0, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Southampton', '2019-11-02', '75.3', 3, 0, 11, 26, 2, 1, 0, 10, 3, 1, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Tottenham Hotspur', '2019-08-17', '55.4', 1, 0, 14, 30, 2, 0, 0, 4, 3, 2, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Watford', '2019-09-21', '68.7', 2, 0, 5, 28, 8, 2, 0, 9, 5, 0, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'West Ham United', '2020-02-19', '77.3', 0, 0, 5, 20, 2, 1, 0, 7, 3, 0, 'Etihad Stadium'),
('2019/20', 'Manchester City', 'Wolverhampton Wanderers', '2019-10-06', '76.0', 5, 0, 11, 18, 0, 2, 0, 14, 7, 2, 'Etihad Stadium'),
('2019/20', 'Manchester United', 'AFC Bournemouth', '2020-07-04', '69.3', 0, 0, 3, 19, 5, 1, 0, 12, 7, 2, 'Old Trafford'),
('2019/20', 'Manchester United', 'Arsenal', '2019-09-30', '54.8', 4, 0, 18, 16, 1, 2, 0, 13, 10, 1, 'Old Trafford'),
('2019/20', 'Manchester United', 'Aston Villa', '2019-12-01', '62.3', 4, 0, 16, 16, 2, 1, 0, 8, 9, 2, 'Old Trafford'),
('2019/20', 'Manchester United', 'Brighton and Hove Albion', '2019-11-10', '42.7', 2, 0, 10, 21, 3, 5, 0, 14, 6, 1, 'Old Trafford'),
('2019/20', 'Manchester United', 'Burnley', '2020-01-22', '72.2', 0, 0, 11, 24, 0, 2, 0, 7, 5, 2, 'Old Trafford'),
('2019/20', 'Manchester United', 'Chelsea', '2019-08-11', '46.2', 3, 0, 15, 11, 4, 4, 0, 13, 18, 0, 'Old Trafford'),
('2019/20', 'Manchester United', 'Crystal Palace', '2019-08-24', '71.3', 2, 0, 8, 22, 1, 4, 0, 18, 5, 2, 'Old Trafford'),
('2019/20', 'Manchester United', 'Everton', '2019-12-15', '66.5', 1, 0, 10, 24, 1, 2, 0, 12, 8, 1, 'Old Trafford'),
('2019/20', 'Manchester United', 'Leicester City', '2019-09-14', '41.7', 1, 0, 14, 10, 1, 2, 0, 14, 9, 0, 'Old Trafford'),
('2019/20', 'Manchester United', 'Liverpool', '2019-10-20', '32.0', 0, 0, 6, 7, 1, 1, 0, 14, 10, 1, 'Old Trafford'),
('2019/20', 'Manchester United', 'Manchester City', '2020-03-08', '27.7', 2, 0, 11, 12, 2, 4, 0, 9, 7, 0, 'Old Trafford'),
('2019/20', 'Manchester United', 'Newcastle United', '2019-12-26', '73.3', 2, 0, 10, 22, 4, 2, 0, 7, 7, 1, 'Old Trafford'),
('2019/20', 'Manchester United', 'Norwich City', '2020-01-11', '59.6', 0, 0, 18, 13, 4, 0, 0, 7, 8, 0, 'Old Trafford'),
('2019/20', 'Manchester United', 'Sheffield United', '2020-06-24', '68.2', 1, 0, 10, 15, 3, 0, 0, 6, 4, 0, 'Old Trafford'),
('2019/20', 'Manchester United', 'Southampton', '2020-07-13', '47.5', 1, 0, 14, 8, 2, 3, 0, 15, 9, 2, 'Old Trafford'),
('2019/20', 'Manchester United', 'Tottenham Hotspur', '2019-12-04', '46.6', 0, 0, 9, 12, 2, 1, 0, 9, 8, 1, 'Old Trafford'),
('2019/20', 'Manchester United', 'Watford', '2020-02-23', '58.0', 0, 0, 6, 21, 3, 1, 0, 15, 7, 0, 'Old Trafford'),
('2019/20', 'Manchester United', 'West Ham United', '2020-07-22', '57.2', 3, 0, 10, 11, 1, 1, 0, 9, 12, 1, 'Old Trafford'),
('2019/20', 'Manchester United', 'Wolverhampton Wanderers', '2020-02-01', '63.7', 3, 0, 14, 16, 0, 2, 0, 15, 15, 0, 'Old Trafford'),
('2019/20', 'Newcastle United', 'AFC Bournemouth', '2019-11-09', '33.9', 2, 0, 10, 21, 2, 0, 0, 5, 16, 1, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Arsenal', '2019-08-11', '38.1', 1, 0, 12, 9, 0, 3, 0, 7, 8, 1, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Aston Villa', '2020-06-24', '52.1', 2, 0, 15, 13, 1, 2, 0, 13, 14, 1, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Brighton and Hove Albion', '2019-09-21', '28.7', 2, 0, 12, 11, 0, 1, 0, 8, 16, 0, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Burnley', '2020-02-29', '54.0', 4, 0, 11, 21, 0, 3, 0, 9, 7, 0, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Chelsea', '2020-01-18', '30.1', 1, 0, 9, 7, 1, 1, 0, 14, 19, 0, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Crystal Palace', '2019-12-21', '42.5', 2, 0, 12, 8, 1, 0, 0, 11, 16, 0, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Everton', '2019-12-28', '42.7', 2, 0, 13, 20, 1, 2, 0, 13, 22, 2, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Leicester City', '2020-01-01', '23.4', 1, 0, 8, 5, 0, 1, 0, 12, 17, 3, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Liverpool', '2020-07-26', '25.3', 1, 0, 11, 3, 1, 0, 0, 5, 14, 3, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Manchester City', '2019-11-30', '23.6', 1, 0, 4, 6, 2, 2, 0, 6, 24, 2, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Manchester United', '2019-10-06', '31.9', 3, 0, 12, 12, 1, 3, 0, 10, 12, 0, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Norwich City', '2020-02-01', '43.4', 2, 0, 10, 15, 0, 1, 0, 15, 19, 0, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Sheffield United', '2020-06-21', '46.0', 2, 0, 9, 12, 3, 0, 1, 10, 7, 0, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Southampton', '2019-12-08', '45.3', 1, 0, 11, 12, 2, 3, 0, 17, 19, 1, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Tottenham Hotspur', '2020-07-15', '52.8', 2, 0, 6, 22, 1, 3, 0, 13, 8, 3, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Watford', '2019-08-31', '48.8', 2, 0, 5, 13, 1, 3, 0, 11, 13, 1, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'West Ham United', '2020-07-05', '57.4', 1, 0, 9, 11, 2, 0, 0, 11, 17, 2, 'St. James\' Park'),
('2019/20', 'Newcastle United', 'Wolverhampton Wanderers', '2019-10-27', '43.1', 2, 1, 8, 13, 1, 2, 0, 16, 13, 1, 'St. James\' Park'),
('2019/20', 'Norwich City', 'AFC Bournemouth', '2020-01-18', '66.0', 2, 1, 10, 16, 1, 2, 1, 10, 6, 0, 'Carrow Road'),
('2019/20', 'Norwich City', 'Arsenal', '2019-12-01', '39.9', 2, 0, 8, 15, 2, 1, 0, 10, 16, 2, 'Carrow Road'),
('2019/20', 'Norwich City', 'Aston Villa', '2019-10-05', '57.6', 1, 0, 14, 21, 1, 3, 0, 17, 22, 5, 'Carrow Road'),
('2019/20', 'Norwich City', 'Brighton and Hove Albion', '2020-07-04', '58.0', 2, 0, 11, 12, 0, 2, 0, 13, 8, 1, 'Carrow Road'),
('2019/20', 'Norwich City', 'Burnley', '2020-07-18', '42.3', 0, 2, 9, 6, 0, 0, 0, 16, 23, 2, 'Carrow Road'),
('2019/20', 'Norwich City', 'Chelsea', '2019-08-24', '46.6', 1, 0, 9, 6, 2, 1, 0, 9, 23, 3, 'Carrow Road'),
('2019/20', 'Norwich City', 'Crystal Palace', '2020-01-01', '40.6', 5, 0, 12, 15, 1, 0, 0, 9, 12, 1, 'Carrow Road'),
('2019/20', 'Norwich City', 'Everton', '2020-06-24', '46.6', 0, 0, 8, 9, 0, 1, 0, 13, 12, 1, 'Carrow Road'),
('2019/20', 'Norwich City', 'Leicester City', '2020-02-28', '42.6', 1, 0, 13, 11, 1, 2, 0, 16, 19, 0, 'Carrow Road'),
('2019/20', 'Norwich City', 'Liverpool', '2020-02-15', '36.7', 1, 0, 5, 5, 0, 2, 0, 11, 17, 1, 'Carrow Road'),
('2019/20', 'Norwich City', 'Manchester City', '2019-09-14', '31.4', 3, 0, 8, 7, 3, 1, 0, 7, 25, 2, 'Carrow Road'),
('2019/20', 'Norwich City', 'Manchester United', '2019-10-27', '46.1', 2, 0, 13, 10, 1, 2, 0, 10, 21, 3, 'Carrow Road'),
('2019/20', 'Norwich City', 'Newcastle United', '2019-08-17', '63.3', 1, 0, 9, 15, 3, 3, 0, 11, 12, 1, 'Carrow Road'),
('2019/20', 'Norwich City', 'Sheffield United', '2019-12-08', '58.2', 0, 0, 6, 14, 1, 4, 1, 12, 9, 2, 'Carrow Road'),
('2019/20', 'Norwich City', 'Southampton', '2020-06-19', '55.0', 1, 0, 9, 9, 0, 1, 0, 15, 22, 3, 'Carrow Road'),
('2019/20', 'Norwich City', 'Tottenham Hotspur', '2019-12-28', '41.1', 3, 0, 12, 5, 2, 3, 0, 10, 15, 2, 'Carrow Road'),
('2019/20', 'Norwich City', 'Watford', '2019-11-08', '65.8', 1, 0, 7, 17, 0, 2, 1, 13, 12, 2, 'Carrow Road'),
('2019/20', 'Norwich City', 'West Ham United', '2020-07-11', '52.5', 1, 0, 9, 11, 0, 0, 0, 8, 19, 4, 'Carrow Road'),
('2019/20', 'Norwich City', 'Wolverhampton Wanderers', '2019-12-21', '50.2', 2, 0, 7, 13, 1, 4, 0, 14, 14, 2, 'Carrow Road'),
('2019/20', 'Sheffield United', 'AFC Bournemouth', '2020-02-09', '54.3', 2, 0, 10, 16, 2, 3, 0, 8, 10, 1, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Arsenal', '2019-10-21', '31.4', 4, 0, 10, 8, 1, 4, 0, 12, 9, 0, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Aston Villa', '2019-12-14', '56.7', 2, 0, 10, 7, 2, 2, 0, 9, 8, 0, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Brighton and Hove Albion', '2020-02-22', '66.3', 0, 0, 5, 13, 1, 2, 0, 6, 9, 1, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Burnley', '2019-11-02', '45.6', 1, 0, 8, 13, 3, 2, 0, 12, 6, 0, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Chelsea', '2020-07-11', '23.7', 1, 0, 8, 9, 3, 0, 0, 6, 15, 0, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Crystal Palace', '2019-08-18', '42.5', 3, 0, 16, 15, 1, 1, 0, 11, 6, 0, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Everton', '2020-07-20', '50.6', 1, 0, 11, 8, 0, 3, 0, 19, 5, 1, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Leicester City', '2019-08-24', '49.1', 1, 0, 11, 7, 1, 0, 0, 6, 10, 2, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Liverpool', '2019-09-28', '29.6', 1, 0, 8, 12, 0, 1, 0, 4, 16, 1, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Manchester City', '2020-01-21', '32.7', 4, 0, 13, 4, 0, 3, 0, 13, 18, 1, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Manchester United', '2019-11-24', '40.6', 1, 0, 13, 12, 3, 2, 0, 10, 11, 3, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Newcastle United', '2019-12-05', '73.3', 2, 0, 10, 13, 0, 0, 0, 6, 6, 2, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Norwich City', '2020-03-07', '41.8', 0, 0, 12, 10, 1, 0, 0, 8, 12, 0, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Southampton', '2019-09-14', '48.2', 1, 1, 10, 17, 0, 1, 0, 7, 11, 1, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Tottenham Hotspur', '2020-07-02', '32.5', 2, 0, 13, 7, 3, 0, 0, 13, 9, 1, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Watford', '2019-12-26', '58.1', 0, 0, 11, 16, 1, 3, 0, 8, 5, 1, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'West Ham United', '2020-01-10', '46.9', 1, 0, 11, 13, 1, 0, 0, 6, 7, 0, 'Bramall Lane'),
('2019/20', 'Sheffield United', 'Wolverhampton Wanderers', '2020-07-08', '42.8', 2, 0, 5, 7, 1, 0, 0, 6, 6, 0, 'Bramall Lane'),
('2019/20', 'Southampton', 'AFC Bournemouth', '2019-09-20', '64.8', 1, 0, 8, 25, 1, 3, 0, 9, 6, 3, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Arsenal', '2020-06-25', '52.6', 0, 1, 10, 12, 0, 2, 0, 14, 10, 2, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Aston Villa', '2020-02-22', '45.9', 1, 0, 13, 28, 2, 4, 0, 17, 4, 0, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Brighton and Hove Albion', '2020-07-16', '67.9', 1, 0, 6, 21, 1, 0, 0, 10, 10, 1, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Burnley', '2020-02-15', '63.6', 2, 0, 8, 10, 1, 2, 0, 11, 9, 2, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Chelsea', '2019-10-06', '43.3', 0, 0, 8, 10, 1, 1, 0, 15, 13, 4, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Crystal Palace', '2019-12-28', '59.9', 1, 0, 13, 14, 1, 2, 0, 7, 5, 1, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Everton', '2019-11-09', '47.3', 1, 0, 12, 4, 1, 1, 0, 12, 24, 2, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Leicester City', '2019-10-25', '27.4', 0, 1, 3, 6, 0, 0, 0, 12, 25, 9, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Liverpool', '2019-08-17', '36.2', 2, 0, 10, 14, 1, 1, 0, 6, 15, 2, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Manchester City', '2020-07-05', '26.3', 1, 0, 6, 8, 1, 2, 0, 7, 26, 0, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Manchester United', '2019-08-31', '41.4', 1, 1, 17, 10, 1, 2, 0, 7, 21, 1, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Newcastle United', '2020-03-07', '38.0', 0, 1, 14, 6, 0, 3, 0, 15, 14, 1, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Norwich City', '2019-12-04', '40.1', 1, 0, 12, 14, 2, 1, 0, 7, 10, 1, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Sheffield United', '2020-07-26', '72.1', 0, 0, 9, 13, 3, 1, 0, 16, 5, 1, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Tottenham Hotspur', '2020-01-01', '40.9', 3, 0, 21, 12, 1, 4, 0, 8, 11, 0, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Watford', '2019-11-30', '62.8', 1, 0, 6, 11, 2, 0, 0, 10, 6, 1, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'West Ham United', '2019-12-14', '57.0', 1, 0, 9, 11, 0, 3, 0, 14, 11, 1, 'St. Mary\'s Stadium'),
('2019/20', 'Southampton', 'Wolverhampton Wanderers', '2020-01-18', '52.5', 2, 0, 13, 11, 2, 1, 0, 12, 8, 3, 'St. Mary\'s Stadium'),
('2019/20', 'Tottenham Hotspur', 'AFC Bournemouth', '2019-11-30', '52.6', 0, 0, 10, 14, 3, 2, 0, 12, 20, 2, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Arsenal', '2020-07-12', '37.3', 5, 0, 16, 15, 2, 3, 0, 11, 13, 1, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Aston Villa', '2019-08-10', '70.1', 1, 0, 13, 31, 3, 0, 0, 9, 7, 1, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Brighton and Hove Albion', '2019-12-26', '53.8', 4, 0, 10, 11, 2, 2, 0, 9, 11, 1, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Burnley', '2019-12-07', '49.0', 1, 0, 12, 13, 5, 1, 0, 8, 7, 0, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Chelsea', '2019-12-22', '44.5', 4, 1, 9, 5, 0, 3, 0, 11, 13, 2, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Crystal Palace', '2019-09-14', '64.1', 4, 0, 19, 13, 4, 3, 0, 11, 11, 0, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Everton', '2020-07-06', '51.6', 3, 0, 14, 12, 1, 2, 0, 18, 11, 0, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Leicester City', '2020-07-19', '29.0', 2, 0, 15, 7, 3, 1, 0, 10, 24, 0, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Liverpool', '2020-01-11', '33.2', 0, 0, 4, 14, 0, 2, 0, 8, 13, 1, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Manchester City', '2020-02-02', '33.1', 2, 0, 8, 3, 2, 3, 1, 14, 19, 0, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Manchester United', '2020-06-19', '38.8', 0, 0, 17, 10, 1, 1, 0, 18, 12, 1, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Newcastle United', '2019-08-25', '80.2', 2, 0, 10, 17, 0, 2, 0, 5, 8, 1, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Norwich City', '2020-01-22', '50.4', 0, 0, 12, 14, 2, 1, 0, 7, 13, 1, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Sheffield United', '2019-11-09', '61.1', 2, 0, 6, 17, 1, 2, 0, 9, 14, 1, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Southampton', '2019-09-28', '41.4', 0, 1, 5, 9, 2, 2, 0, 16, 14, 1, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Watford', '2019-10-19', '69.4', 4, 0, 5, 12, 1, 3, 0, 9, 7, 1, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'West Ham United', '2020-06-23', '64.5', 2, 0, 12, 15, 2, 2, 0, 7, 10, 0, 'Tottenham Hotspur Stadium'),
('2019/20', 'Tottenham Hotspur', 'Wolverhampton Wanderers', '2020-03-01', '65.5', 3, 0, 12, 13, 2, 2, 0, 14, 14, 3, 'Tottenham Hotspur Stadium'),
('2019/20', 'Watford', 'AFC Bournemouth', '2019-10-26', '40.2', 5, 0, 14, 7, 0, 3, 0, 8, 15, 0, 'Vicarage Road'),
('2019/20', 'Watford', 'Arsenal', '2019-09-15', '52.4', 3, 0, 14, 31, 2, 3, 0, 4, 7, 2, 'Vicarage Road'),
('2019/20', 'Watford', 'Aston Villa', '2019-12-28', '48.8', 3, 1, 16, 20, 3, 1, 0, 9, 11, 0, 'Vicarage Road'),
('2019/20', 'Watford', 'Brighton and Hove Albion', '2019-08-10', '48.2', 0, 0, 15, 11, 0, 1, 0, 11, 5, 3, 'Vicarage Road'),
('2019/20', 'Watford', 'Burnley', '2019-11-23', '61.9', 1, 0, 14, 15, 0, 3, 0, 13, 11, 3, 'Vicarage Road'),
('2019/20', 'Watford', 'Chelsea', '2019-11-02', '32.8', 4, 0, 8, 12, 1, 2, 0, 5, 16, 2, 'Vicarage Road'),
('2019/20', 'Watford', 'Crystal Palace', '2019-12-07', '50.2', 4, 0, 15, 13, 0, 2, 0, 16, 3, 0, 'Vicarage Road'),
('2019/20', 'Watford', 'Everton', '2020-02-01', '44.6', 2, 0, 17, 11, 2, 2, 1, 14, 12, 3, 'Vicarage Road'),
('2019/20', 'Watford', 'Leicester City', '2020-06-20', '31.7', 0, 0, 15, 8, 1, 1, 0, 12, 15, 1, 'Vicarage Road'),
('2019/20', 'Watford', 'Liverpool', '2020-02-29', '29.2', 0, 0, 4, 14, 3, 0, 0, 8, 7, 0, 'Vicarage Road'),
('2019/20', 'Watford', 'Manchester City', '2020-07-21', '23.1', 2, 0, 14, 2, 0, 0, 0, 11, 26, 4, 'Vicarage Road'),
('2019/20', 'Watford', 'Manchester United', '2019-12-22', '36.1', 3, 0, 16, 11, 2, 1, 0, 11, 17, 0, 'Vicarage Road'),
('2019/20', 'Watford', 'Newcastle United', '2020-07-11', '47.7', 1, 0, 23, 17, 2, 4, 0, 15, 8, 1, 'Vicarage Road'),
('2019/20', 'Watford', 'Norwich City', '2020-07-07', '43.5', 2, 0, 11, 9, 2, 4, 0, 15, 12, 1, 'Vicarage Road'),
('2019/20', 'Watford', 'Sheffield United', '2019-10-05', '39.5', 0, 0, 7, 8, 0, 2, 0, 6, 9, 0, 'Vicarage Road'),
('2019/20', 'Watford', 'Southampton', '2020-06-28', '47.6', 3, 0, 18, 8, 1, 0, 0, 9, 11, 3, 'Vicarage Road'),
('2019/20', 'Watford', 'Tottenham Hotspur', '2020-01-18', '41.5', 2, 0, 13, 15, 0, 3, 0, 13, 16, 0, 'Vicarage Road'),
('2019/20', 'Watford', 'West Ham United', '2019-08-24', '54.9', 1, 0, 12, 23, 1, 1, 0, 11, 16, 3, 'Vicarage Road'),
('2019/20', 'Watford', 'Wolverhampton Wanderers', '2020-01-01', '36.4', 3, 1, 12, 9, 2, 1, 0, 6, 16, 1, 'Vicarage Road'),
('2019/20', 'West Ham United', 'AFC Bournemouth', '2020-01-01', '42.6', 1, 1, 3, 14, 4, 2, 0, 12, 3, 0, 'London Stadium'),
('2019/20', 'West Ham United', 'Arsenal', '2019-12-09', '35.8', 2, 0, 12, 11, 1, 0, 0, 6, 10, 3, 'London Stadium'),
('2019/20', 'West Ham United', 'Aston Villa', '2020-07-26', '63.0', 2, 0, 16, 10, 1, 1, 0, 13, 13, 1, 'London Stadium'),
('2019/20', 'West Ham United', 'Brighton and Hove Albion', '2020-02-01', '35.1', 1, 0, 8, 12, 3, 1, 0, 9, 19, 3, 'London Stadium'),
('2019/20', 'West Ham United', 'Burnley', '2020-07-08', '53.2', 1, 0, 7, 21, 0, 1, 0, 7, 8, 1, 'London Stadium'),
('2019/20', 'West Ham United', 'Chelsea', '2020-07-01', '28.8', 2, 0, 10, 10, 3, 1, 0, 9, 17, 2, 'London Stadium'),
('2019/20', 'West Ham United', 'Crystal Palace', '2019-10-05', '51.7', 3, 0, 11, 9, 1, 2, 0, 7, 7, 2, 'London Stadium'),
('2019/20', 'West Ham United', 'Everton', '2020-01-18', '48.8', 1, 0, 11, 12, 1, 0, 0, 13, 11, 1, 'London Stadium'),
('2019/20', 'West Ham United', 'Leicester City', '2019-12-28', '42.7', 4, 0, 16, 14, 1, 1, 0, 4, 13, 2, 'London Stadium'),
('2019/20', 'West Ham United', 'Liverpool', '2020-01-29', '29.4', 2, 0, 6, 7, 0, 0, 0, 6, 13, 2, 'London Stadium'),
('2019/20', 'West Ham United', 'Manchester City', '2019-08-10', '42.9', 2, 0, 6, 5, 0, 2, 0, 13, 14, 5, 'London Stadium'),
('2019/20', 'West Ham United', 'Manchester United', '2019-09-22', '46.5', 2, 0, 8, 8, 2, 2, 0, 9, 9, 0, 'London Stadium'),
('2019/20', 'West Ham United', 'Newcastle United', '2019-11-02', '69.5', 2, 0, 10, 16, 2, 1, 0, 7, 12, 3, 'London Stadium'),
('2019/20', 'West Ham United', 'Norwich City', '2019-08-31', '48.6', 2, 0, 16, 18, 2, 1, 0, 10, 8, 0, 'London Stadium'),
('2019/20', 'West Ham United', 'Sheffield United', '2019-10-26', '60.8', 2, 0, 7, 12, 1, 2, 0, 10, 10, 1, 'London Stadium'),
('2019/20', 'West Ham United', 'Southampton', '2020-02-29', '33.7', 1, 0, 8, 14, 3, 1, 0, 11, 10, 1, 'London Stadium'),
('2019/20', 'West Ham United', 'Tottenham Hotspur', '2019-11-23', '47.1', 3, 0, 12, 11, 2, 2, 0, 14, 15, 3, 'London Stadium'),
('2019/20', 'West Ham United', 'Watford', '2020-07-17', '40.6', 0, 0, 11, 10, 3, 2, 0, 11, 14, 1, 'London Stadium'),
('2019/20', 'West Ham United', 'Wolverhampton Wanderers', '2020-06-20', '42.2', 1, 0, 8, 7, 0, 1, 0, 7, 10, 2, 'London Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'AFC Bournemouth', '2020-06-24', '55.1', 3, 0, 11, 10, 1, 3, 0, 11, 4, 0, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Arsenal', '2020-07-04', '51.9', 2, 0, 6, 10, 0, 4, 0, 11, 8, 2, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Aston Villa', '2019-11-10', '50.1', 4, 0, 17, 17, 2, 3, 0, 8, 13, 1, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Brighton and Hove Albion', '2020-03-07', '43.1', 1, 0, 4, 11, 0, 3, 0, 7, 7, 0, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Burnley', '2019-08-25', '65.1', 0, 0, 9, 17, 1, 2, 0, 11, 13, 1, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Chelsea', '2019-09-14', '45.3', 1, 0, 8, 11, 2, 2, 0, 11, 15, 5, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Crystal Palace', '2020-07-20', '53.4', 2, 0, 11, 11, 2, 1, 0, 15, 7, 0, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Everton', '2020-07-12', '55.1', 0, 0, 9, 14, 3, 2, 0, 9, 6, 0, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Leicester City', '2020-02-14', '40.8', 2, 0, 13, 15, 0, 2, 1, 10, 9, 0, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Liverpool', '2020-01-23', '46.4', 0, 0, 6, 10, 1, 1, 0, 11, 13, 2, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Manchester City', '2019-12-27', '61.9', 0, 0, 7, 21, 3, 1, 1, 13, 7, 2, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Manchester United', '2019-08-19', '34.4', 2, 0, 17, 6, 1, 2, 0, 8, 9, 1, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Newcastle United', '2020-01-11', '65.7', 0, 0, 13, 9, 1, 3, 0, 12, 5, 1, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Norwich City', '2020-02-23', '39.8', 2, 0, 11, 19, 3, 3, 0, 6, 6, 0, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Sheffield United', '2019-12-01', '59.4', 1, 0, 12, 13, 1, 5, 0, 18, 10, 1, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Southampton', '2019-10-19', '57.0', 3, 0, 10, 4, 1, 2, 0, 17, 14, 1, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Tottenham Hotspur', '2019-12-15', '57.8', 4, 0, 14, 19, 1, 4, 0, 10, 9, 2, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'Watford', '2019-09-28', '39.1', 0, 0, 5, 6, 2, 1, 0, 6, 14, 0, 'Molineux Stadium'),
('2019/20', 'Wolverhampton Wanderers', 'West Ham United', '2019-12-04', '49.4', 1, 0, 8, 13, 2, 2, 0, 9, 6, 0, 'Molineux Stadium'),
('2020/21', 'Arsenal', 'Aston Villa', '2020-11-08', '58.8', 0, 0, 11, 13, 0, 0, 0, 13, 15, 3, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Brighton and Hove Albion', '2021-05-23', '53.9', 0, 0, 10, 16, 2, 0, 0, 8, 5, 0, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Burnley', '2020-12-13', '64.7', 2, 1, 5, 18, 0, 1, 0, 11, 10, 1, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Chelsea', '2020-12-26', '39.0', 2, 0, 13, 15, 3, 1, 0, 10, 19, 1, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Crystal Palace', '2021-01-14', '67.3', 1, 0, 11, 11, 0, 1, 0, 11, 12, 0, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Everton', '2021-04-23', '59.1', 1, 0, 13, 14, 0, 3, 0, 10, 8, 1, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Fulham', '2021-04-18', '69.5', 0, 0, 9, 18, 1, 3, 0, 11, 3, 1, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Leeds United', '2021-02-14', '45.9', 0, 0, 8, 13, 4, 2, 0, 17, 9, 2, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Leicester City', '2020-10-25', '56.3', 3, 0, 13, 12, 0, 5, 0, 9, 6, 1, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Liverpool', '2021-04-03', '35.8', 1, 0, 10, 3, 0, 1, 0, 10, 16, 3, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Manchester City', '2021-02-21', '45.0', 2, 0, 11, 7, 0, 2, 0, 9, 15, 1, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Manchester United', '2021-01-30', '43.3', 1, 0, 9, 17, 0, 3, 0, 16, 14, 0, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Newcastle United', '2021-01-18', '66.4', 0, 0, 9, 20, 3, 0, 0, 8, 4, 0, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Sheffield United', '2020-10-04', '64.5', 0, 0, 3, 6, 2, 1, 0, 9, 6, 1, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Southampton', '2020-12-16', '35.2', 1, 1, 13, 9, 1, 3, 0, 13, 13, 1, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Tottenham Hotspur', '2021-03-14', '52.6', 1, 0, 12, 13, 2, 2, 1, 14, 6, 1, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'West Bromwich Albion', '2021-05-09', '65.7', 1, 0, 7, 15, 3, 2, 0, 9, 12, 1, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'West Ham United', '2020-09-19', '62.6', 0, 0, 11, 7, 2, 1, 0, 13, 14, 1, 'Emirates Stadium'),
('2020/21', 'Arsenal', 'Wolverhampton Wanderers', '2020-11-29', '56.2', 3, 0, 13, 13, 1, 4, 0, 13, 11, 2, 'Emirates Stadium'),
('2020/21', 'Aston Villa', 'Arsenal', '2021-02-06', '33.6', 3, 0, 12, 12, 1, 2, 0, 12, 14, 0, 'Villa Park'),
('2020/21', 'Aston Villa', 'Brighton and Hove Albion', '2020-11-21', '55.4', 2, 0, 5, 15, 1, 1, 1, 18, 7, 2, 'Villa Park'),
('2020/21', 'Aston Villa', 'Burnley', '2020-12-17', '59.1', 1, 0, 17, 27, 0, 1, 0, 19, 6, 0, 'Villa Park'),
('2020/21', 'Aston Villa', 'Chelsea', '2021-05-23', '28.8', 3, 0, 11, 6, 2, 4, 1, 12, 23, 1, 'Villa Park'),
('2020/21', 'Aston Villa', 'Crystal Palace', '2020-12-26', '38.6', 1, 1, 18, 20, 3, 4, 0, 16, 13, 0, 'Villa Park'),
('2020/21', 'Aston Villa', 'Everton', '2021-05-13', '58.0', 2, 0, 9, 13, 0, 1, 0, 12, 15, 0, 'Villa Park'),
('2020/21', 'Aston Villa', 'Fulham', '2021-04-04', '52.5', 1, 0, 14, 14, 3, 2, 0, 20, 15, 1, 'Villa Park'),
('2020/21', 'Aston Villa', 'Leeds United', '2020-10-23', '40.8', 2, 0, 14, 12, 0, 2, 0, 17, 27, 3, 'Villa Park'),
('2020/21', 'Aston Villa', 'Leicester City', '2021-02-21', '49.9', 2, 0, 11, 11, 1, 1, 0, 12, 16, 2, 'Villa Park'),
('2020/21', 'Aston Villa', 'Liverpool', '2020-10-04', '30.2', 2, 0, 7, 18, 7, 1, 0, 10, 14, 2, 'Villa Park'),
('2020/21', 'Aston Villa', 'Manchester City', '2021-04-21', '28.0', 0, 1, 12, 8, 1, 1, 1, 7, 13, 2, 'Villa Park'),
('2020/21', 'Aston Villa', 'Manchester United', '2021-05-09', '41.1', 1, 1, 13, 11, 1, 1, 0, 18, 18, 3, 'Villa Park'),
('2020/21', 'Aston Villa', 'Newcastle United', '2021-01-23', '59.2', 0, 0, 9, 14, 2, 3, 0, 18, 7, 0, 'Villa Park'),
('2020/21', 'Aston Villa', 'Sheffield United', '2020-09-21', '71.9', 3, 0, 12, 18, 1, 1, 1, 13, 4, 0, 'Villa Park'),
('2020/21', 'Aston Villa', 'Southampton', '2020-11-01', '55.9', 1, 0, 12, 19, 3, 2, 0, 17, 9, 4, 'Villa Park'),
('2020/21', 'Aston Villa', 'Tottenham Hotspur', '2021-03-21', '50.1', 3, 0, 18, 8, 0, 2, 0, 13, 9, 2, 'Villa Park'),
('2020/21', 'Aston Villa', 'West Bromwich Albion', '2021-04-25', '70.2', 0, 0, 14, 24, 2, 2, 0, 9, 10, 2, 'Villa Park'),
('2020/21', 'Aston Villa', 'West Ham United', '2021-02-03', '56.5', 1, 0, 11, 9, 1, 1, 0, 16, 20, 3, 'Villa Park'),
('2020/21', 'Aston Villa', 'Wolverhampton Wanderers', '2021-03-06', '49.2', 1, 0, 13, 9, 0, 0, 0, 13, 10, 0, 'Villa Park'),
('2020/21', 'Brighton and Hove Albion', 'Arsenal', '2020-12-29', '49.7', 2, 0, 11, 13, 0, 0, 0, 4, 11, 1, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Aston Villa', '2021-02-13', '58.2', 2, 0, 16, 26, 0, 3, 0, 12, 4, 0, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Burnley', '2020-11-06', '58.9', 1, 0, 11, 19, 0, 0, 0, 5, 4, 0, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Chelsea', '2020-09-14', '52.3', 1, 0, 8, 13, 1, 0, 0, 13, 10, 3, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Crystal Palace', '2021-02-22', '74.5', 2, 0, 11, 25, 1, 0, 0, 6, 3, 2, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Everton', '2021-04-12', '55.2', 1, 0, 12, 23, 0, 2, 0, 7, 8, 0, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Fulham', '2021-01-27', '49.5', 2, 0, 10, 16, 0, 1, 0, 14, 10, 0, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Leeds United', '2021-05-01', '41.9', 1, 0, 17, 17, 2, 1, 0, 6, 11, 0, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Leicester City', '2021-03-06', '36.6', 0, 0, 14, 7, 1, 1, 0, 8, 8, 2, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Liverpool', '2020-11-28', '40.4', 2, 0, 9, 11, 1, 1, 0, 13, 6, 1, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Manchester City', '2021-05-18', '62.7', 3, 0, 13, 19, 3, 3, 1, 11, 8, 2, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Manchester United', '2020-09-26', '53.3', 4, 0, 18, 18, 2, 2, 0, 16, 7, 3, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Newcastle United', '2021-03-20', '65.3', 0, 0, 12, 11, 3, 1, 0, 5, 3, 0, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Sheffield United', '2020-12-20', '73.5', 1, 0, 9, 21, 1, 5, 1, 11, 5, 1, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Southampton', '2020-12-07', '47.7', 3, 0, 12, 12, 1, 3, 0, 12, 10, 2, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Tottenham Hotspur', '2021-01-31', '43.2', 2, 0, 11, 16, 1, 1, 0, 11, 8, 0, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'West Bromwich Albion', '2020-10-26', '49.7', 2, 0, 14, 5, 1, 0, 0, 7, 9, 1, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'West Ham United', '2021-05-15', '51.1', 1, 0, 7, 10, 1, 0, 0, 5, 15, 1, 'Amex Stadium'),
('2020/21', 'Brighton and Hove Albion', 'Wolverhampton Wanderers', '2021-01-02', '54.5', 2, 0, 13, 13, 3, 1, 0, 8, 11, 3, 'Amex Stadium'),
('2020/21', 'Burnley', 'Arsenal', '2021-03-06', '41.1', 1, 1, 5, 9, 1, 1, 0, 12, 15, 1, 'Turf Moor'),
('2020/21', 'Burnley', 'Aston Villa', '2021-01-27', '38.2', 1, 0, 16, 10, 3, 0, 0, 7, 18, 2, 'Turf Moor'),
('2020/21', 'Burnley', 'Brighton and Hove Albion', '2021-02-06', '54.5', 2, 0, 8, 20, 1, 0, 0, 10, 10, 1, 'Turf Moor'),
('2020/21', 'Burnley', 'Chelsea', '2020-10-31', '36.3', 1, 0, 10, 5, 0, 0, 0, 15, 14, 3, 'Turf Moor'),
('2020/21', 'Burnley', 'Crystal Palace', '2020-11-23', '46.1', 2, 0, 13, 10, 1, 0, 0, 9, 15, 0, 'Turf Moor'),
('2020/21', 'Burnley', 'Everton', '2020-12-05', '41.4', 0, 0, 6, 8, 1, 0, 0, 9, 13, 1, 'Turf Moor'),
('2020/21', 'Burnley', 'Fulham', '2021-02-17', '46.0', 1, 0, 7, 8, 1, 1, 0, 13, 8, 1, 'Turf Moor'),
('2020/21', 'Burnley', 'Leeds United', '2021-05-15', '48.2', 1, 0, 10, 16, 0, 1, 0, 10, 16, 4, 'Turf Moor'),
('2020/21', 'Burnley', 'Leicester City', '2021-03-03', '38.9', 0, 0, 6, 12, 1, 2, 0, 12, 16, 1, 'Turf Moor'),
('2020/21', 'Burnley', 'Liverpool', '2021-05-19', '41.2', 0, 0, 10, 10, 0, 0, 0, 7, 20, 3, 'Turf Moor'),
('2020/21', 'Burnley', 'Manchester City', '2021-02-03', '25.7', 2, 0, 8, 2, 0, 1, 0, 5, 13, 2, 'Turf Moor'),
('2020/21', 'Burnley', 'Manchester United', '2021-01-12', '37.3', 1, 0, 15, 11, 0, 2, 0, 13, 13, 1, 'Turf Moor'),
('2020/21', 'Burnley', 'Newcastle United', '2021-04-11', '57.1', 1, 0, 11, 24, 1, 0, 0, 12, 10, 2, 'Turf Moor'),
('2020/21', 'Burnley', 'Sheffield United', '2020-12-29', '37.1', 1, 0, 13, 5, 1, 2, 0, 17, 7, 0, 'Turf Moor'),
('2020/21', 'Burnley', 'Southampton', '2020-09-26', '53.4', 1, 0, 8, 10, 0, 0, 0, 10, 5, 1, 'Turf Moor'),
('2020/21', 'Burnley', 'Tottenham Hotspur', '2020-10-26', '38.3', 2, 0, 9, 13, 0, 0, 0, 7, 9, 1, 'Turf Moor'),
('2020/21', 'Burnley', 'West Bromwich Albion', '2021-02-20', '62.1', 3, 0, 16, 6, 0, 0, 1, 10, 10, 0, 'Turf Moor'),
('2020/21', 'Burnley', 'West Ham United', '2021-05-03', '44.6', 2, 0, 4, 8, 1, 1, 0, 8, 22, 2, 'Turf Moor'),
('2020/21', 'Burnley', 'Wolverhampton Wanderers', '2020-12-21', '36.4', 2, 0, 11, 10, 2, 1, 0, 15, 15, 1, 'Turf Moor'),
('2020/21', 'Chelsea', 'Arsenal', '2021-05-12', '67.7', 0, 0, 7, 19, 0, 1, 0, 6, 5, 1, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Aston Villa', '2020-12-28', '63.4', 3, 0, 16, 16, 1, 1, 0, 3, 10, 1, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Brighton and Hove Albion', '2021-04-20', '64.4', 2, 0, 8, 7, 0, 0, 1, 9, 11, 0, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Burnley', '2021-01-31', '71.1', 0, 0, 7, 19, 2, 1, 0, 9, 1, 0, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Crystal Palace', '2020-10-03', '70.9', 2, 0, 17, 17, 4, 0, 0, 13, 4, 0, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Everton', '2021-03-08', '65.5', 0, 0, 11, 19, 2, 3, 0, 12, 7, 0, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Fulham', '2021-05-01', '48.7', 1, 0, 15, 9, 2, 1, 0, 8, 10, 0, 'Stamford Bridge');
INSERT INTO `match` (`Season`, `HomeTeamName`, `AwayTeamName`, `Date`, `HomePossession`, `HomeYellowCards`, `HomeRedCards`, `HomeFouls`, `HomeShots`, `HomeGoals`, `AwayYellowCards`, `AwayRedCards`, `AwayFouls`, `AwayShots`, `AwayGoals`, `StadiumName`) VALUES
('2020/21', 'Chelsea', 'Leeds United', '2020-12-05', '45.8', 0, 0, 12, 23, 3, 2, 0, 9, 8, 1, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Leicester City', '2021-05-18', '58.6', 2, 0, 15, 17, 2, 5, 0, 16, 7, 1, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Liverpool', '2020-09-20', '38.7', 1, 1, 10, 5, 0, 0, 0, 6, 18, 2, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Manchester City', '2021-01-03', '54.6', 3, 0, 11, 9, 1, 1, 0, 10, 18, 3, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Manchester United', '2021-02-28', '57.4', 1, 0, 11, 18, 0, 2, 0, 12, 11, 0, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Newcastle United', '2021-02-15', '65.6', 0, 0, 9, 18, 2, 0, 0, 13, 10, 0, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Sheffield United', '2020-11-07', '70.1', 0, 0, 5, 20, 4, 2, 0, 14, 6, 1, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Southampton', '2020-10-17', '53.4', 1, 0, 11, 11, 3, 1, 0, 9, 13, 3, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Tottenham Hotspur', '2020-11-29', '60.3', 4, 0, 20, 13, 0, 2, 0, 9, 5, 0, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'West Bromwich Albion', '2021-04-03', '66.2', 1, 1, 11, 18, 2, 1, 0, 6, 14, 5, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'West Ham United', '2020-12-21', '53.7', 0, 0, 11, 11, 3, 0, 0, 6, 6, 0, 'Stamford Bridge'),
('2020/21', 'Chelsea', 'Wolverhampton Wanderers', '2021-01-27', '78.9', 1, 0, 14, 14, 0, 1, 0, 7, 4, 0, 'Stamford Bridge'),
('2020/21', 'Crystal Palace', 'Arsenal', '2021-05-19', '31.3', 2, 0, 7, 12, 1, 1, 0, 7, 6, 3, 'Selhurst Park'),
('2020/21', 'Crystal Palace', 'Aston Villa', '2021-05-16', '45.5', 3, 0, 23, 23, 3, 2, 0, 13, 19, 2, 'Selhurst Park'),
('2020/21', 'Crystal Palace', 'Brighton and Hove Albion', '2020-10-18', '34.3', 3, 0, 13, 1, 1, 2, 1, 13, 20, 1, 'Selhurst Park'),
('2020/21', 'Crystal Palace', 'Burnley', '2021-02-13', '53.3', 0, 0, 15, 13, 0, 0, 0, 14, 16, 3, 'Selhurst Park'),
('2020/21', 'Crystal Palace', 'Chelsea', '2021-04-10', '35.7', 1, 0, 7, 1, 1, 0, 0, 12, 23, 4, 'Selhurst Park'),