forked from aGitHasNoName/pandasBasics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wnba-team-elo-ratings.csv
We can't make this file beautiful and searchable because it's too large.
executable file
·10489 lines (10489 loc) · 944 KB
/
wnba-team-elo-ratings.csv
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
season,date,team1,team2,name1,name2,neutral,playoff,score1,score2,elo1_pre,elo2_pre,elo1_post,elo2_post,prob1,is_home1
2019,10/10/2019,WAS,CON,Washington Mystics,Connecticut Sun,0,1,89,78,1684,1634,1692,1627,.718,1
2019,10/10/2019,CON,WAS,Connecticut Sun,Washington Mystics,0,1,78,89,1634,1684,1627,1692,.282,0
2019,10/8/2019,WAS,CON,Washington Mystics,Connecticut Sun,0,1,86,90,1693,1626,1684,1634,.476,0
2019,10/8/2019,CON,WAS,Connecticut Sun,Washington Mystics,0,1,90,86,1626,1693,1634,1684,.524,1
2019,10/6/2019,WAS,CON,Washington Mystics,Connecticut Sun,0,1,94,81,1671,1648,1693,1626,.399,0
2019,10/6/2019,CON,WAS,Connecticut Sun,Washington Mystics,0,1,81,94,1648,1671,1626,1693,.601,1
2019,10/1/2019,WAS,CON,Washington Mystics,Connecticut Sun,0,1,87,99,1700,1618,1671,1648,.763,1
2019,10/1/2019,CON,WAS,Connecticut Sun,Washington Mystics,0,1,99,87,1618,1700,1648,1671,.237,0
2019,9/29/2019,WAS,CON,Washington Mystics,Connecticut Sun,0,1,95,86,1694,1624,1700,1618,.747,1
2019,9/29/2019,CON,WAS,Connecticut Sun,Washington Mystics,0,1,86,95,1624,1694,1618,1700,.253,0
2019,9/24/2019,WAS,LVA,Washington Mystics,Las Vegas Aces,0,1,94,90,1687,1570,1694,1563,.566,0
2019,9/24/2019,LVA,WAS,Las Vegas Aces,Washington Mystics,0,1,90,94,1570,1687,1563,1694,.434,1
2019,9/22/2019,WAS,LVA,Washington Mystics,Las Vegas Aces,0,1,75,92,1717,1540,1687,1570,.669,0
2019,9/22/2019,CON,LAS,Connecticut Sun,Los Angeles Sparks,0,1,78,56,1592,1575,1624,1543,.388,0
2019,9/22/2019,LVA,WAS,Las Vegas Aces,Washington Mystics,0,1,92,75,1540,1717,1570,1687,.331,1
2019,9/22/2019,LAS,CON,Los Angeles Sparks,Connecticut Sun,0,1,56,78,1575,1592,1543,1624,.612,1
2019,9/19/2019,WAS,LVA,Washington Mystics,Las Vegas Aces,0,1,103,91,1714,1543,1717,1540,.858,1
2019,9/19/2019,CON,LAS,Connecticut Sun,Los Angeles Sparks,0,1,94,68,1571,1596,1592,1575,.597,1
2019,9/19/2019,LAS,CON,Los Angeles Sparks,Connecticut Sun,0,1,68,94,1596,1571,1575,1592,.403,0
2019,9/19/2019,LVA,WAS,Las Vegas Aces,Washington Mystics,0,1,91,103,1543,1714,1540,1717,.142,0
2019,9/17/2019,WAS,LVA,Washington Mystics,Las Vegas Aces,0,1,97,95,1712,1545,1714,1543,.856,1
2019,9/17/2019,LAS,CON,Los Angeles Sparks,Connecticut Sun,0,1,75,84,1608,1559,1596,1571,.444,0
2019,9/17/2019,CON,LAS,Connecticut Sun,Los Angeles Sparks,0,1,84,75,1559,1608,1571,1596,.556,1
2019,9/17/2019,LVA,WAS,Las Vegas Aces,Washington Mystics,0,1,95,97,1545,1712,1543,1714,.144,0
2019,9/15/2019,LAS,SEA,Los Angeles Sparks,Seattle Storm,0,1,92,69,1597,1529,1608,1518,.743,1
2019,9/15/2019,CHI,LVA,Chicago Sky,Las Vegas Aces,0,1,92,93,1564,1541,1559,1545,.399,0
2019,9/15/2019,LVA,CHI,Las Vegas Aces,Chicago Sky,0,1,93,92,1541,1564,1545,1559,.601,1
2019,9/15/2019,SEA,LAS,Seattle Storm,Los Angeles Sparks,0,1,69,92,1529,1597,1518,1608,.257,0
2019,9/11/2019,CHI,PHO,Chicago Sky,Phoenix Mercury,0,1,105,76,1553,1450,1564,1440,.788,1
2019,9/11/2019,MIN,SEA,Minnesota Lynx,Seattle Storm,0,1,74,84,1563,1517,1550,1529,.439,0
2019,9/11/2019,SEA,MIN,Seattle Storm,Minnesota Lynx,0,1,84,74,1517,1563,1529,1550,.561,1
2019,9/11/2019,PHO,CHI,Phoenix Mercury,Chicago Sky,0,1,76,105,1450,1553,1440,1564,.212,0
2019,9/8/2019,WAS,CHI,Washington Mystics,Chicago Sky,0,0,100,86,1706,1559,1712,1553,.786,1
2019,9/8/2019,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,0,77,68,1588,1572,1597,1563,.634,1
2019,9/8/2019,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,0,68,77,1572,1588,1563,1597,.366,0
2019,9/8/2019,CON,IND,Connecticut Sun,Indiana Fever,0,0,76,104,1599,1424,1559,1464,.633,0
2019,9/8/2019,CHI,WAS,Chicago Sky,Washington Mystics,0,0,86,100,1559,1706,1553,1712,.214,0
2019,9/8/2019,LVA,PHO,Las Vegas Aces,Phoenix Mercury,0,0,98,89,1526,1465,1541,1450,.473,0
2019,9/8/2019,SEA,DAL,Seattle Storm,Dallas Wings,0,0,78,64,1500,1398,1517,1381,.532,0
2019,9/8/2019,IND,CON,Indiana Fever,Connecticut Sun,0,0,104,76,1424,1599,1464,1559,.367,1
2019,9/8/2019,PHO,LVA,Phoenix Mercury,Las Vegas Aces,0,0,89,98,1465,1526,1450,1541,.527,1
2019,9/8/2019,DAL,SEA,Dallas Wings,Seattle Storm,0,0,64,78,1398,1500,1381,1517,.468,1
2019,9/8/2019,ATL,NYL,Atlanta Dream,New York Liberty,0,0,63,71,1357,1305,1338,1324,.682,1
2019,9/8/2019,NYL,ATL,New York Liberty,Atlanta Dream,0,0,71,63,1305,1357,1324,1338,.318,0
2019,9/6/2019,WAS,DAL,Washington Mystics,Dallas Wings,0,0,86,73,1703,1401,1706,1398,.900,1
2019,9/6/2019,CON,CHI,Connecticut Sun,Chicago Sky,0,0,104,109,1615,1543,1599,1559,.705,1
2019,9/6/2019,MIN,PHO,Minnesota Lynx,Phoenix Mercury,0,0,83,69,1553,1484,1572,1465,.485,0
2019,9/6/2019,CHI,CON,Chicago Sky,Connecticut Sun,0,0,109,104,1543,1615,1559,1599,.295,0
2019,9/6/2019,PHO,MIN,Phoenix Mercury,Minnesota Lynx,0,0,69,83,1484,1553,1465,1572,.515,1
2019,9/6/2019,IND,NYL,Indiana Fever,New York Liberty,0,0,86,81,1415,1314,1424,1305,.531,0
2019,9/6/2019,DAL,WAS,Dallas Wings,Washington Mystics,0,0,73,86,1401,1703,1398,1706,.100,0
2019,9/6/2019,NYL,IND,New York Liberty,Indiana Fever,0,0,81,86,1314,1415,1305,1424,.469,1
2019,9/5/2019,LAS,SEA,Los Angeles Sparks,Seattle Storm,0,0,102,68,1568,1520,1588,1500,.676,1
2019,9/5/2019,LVA,ATL,Las Vegas Aces,Atlanta Dream,0,0,74,78,1539,1345,1526,1357,.659,0
2019,9/5/2019,SEA,LAS,Seattle Storm,Los Angeles Sparks,0,0,68,102,1520,1568,1500,1588,.324,0
2019,9/5/2019,ATL,LVA,Atlanta Dream,Las Vegas Aces,0,0,78,74,1345,1539,1357,1526,.341,1
2019,9/4/2019,CON,DAL,Connecticut Sun,Dallas Wings,0,0,102,72,1607,1409,1615,1401,.832,1
2019,9/4/2019,DAL,CON,Dallas Wings,Connecticut Sun,0,0,72,102,1409,1607,1401,1615,.168,0
2019,9/3/2019,WAS,NYL,Washington Mystics,New York Liberty,0,0,93,77,1698,1319,1703,1314,.849,0
2019,9/3/2019,LAS,ATL,Los Angeles Sparks,Atlanta Dream,0,0,70,60,1564,1348,1568,1345,.846,1
2019,9/3/2019,SEA,PHO,Seattle Storm,Phoenix Mercury,0,0,82,70,1498,1506,1520,1484,.377,0
2019,9/3/2019,PHO,SEA,Phoenix Mercury,Seattle Storm,0,0,70,82,1506,1498,1484,1520,.623,1
2019,9/3/2019,ATL,LAS,Atlanta Dream,Los Angeles Sparks,0,0,60,70,1348,1564,1345,1568,.154,0
2019,9/3/2019,NYL,WAS,New York Liberty,Washington Mystics,0,0,77,93,1319,1698,1314,1703,.151,1
2019,9/1/2019,MIN,IND,Minnesota Lynx,Indiana Fever,0,0,81,73,1548,1420,1553,1415,.768,1
2019,9/1/2019,CHI,PHO,Chicago Sky,Phoenix Mercury,0,0,105,78,1522,1527,1543,1506,.607,1
2019,9/1/2019,PHO,CHI,Phoenix Mercury,Chicago Sky,0,0,78,105,1527,1522,1506,1543,.393,0
2019,9/1/2019,SEA,ATL,Seattle Storm,Atlanta Dream,0,0,92,75,1490,1356,1498,1348,.774,1
2019,9/1/2019,IND,MIN,Indiana Fever,Minnesota Lynx,0,0,73,81,1420,1548,1415,1553,.232,0
2019,9/1/2019,ATL,SEA,Atlanta Dream,Seattle Storm,0,0,75,92,1356,1490,1348,1498,.226,0
2019,8/31/2019,WAS,DAL,Washington Mystics,Dallas Wings,0,0,91,85,1694,1413,1698,1409,.760,0
2019,8/31/2019,LAS,LVA,Los Angeles Sparks,Las Vegas Aces,0,0,86,92,1574,1529,1564,1539,.449,0
2019,8/31/2019,LVA,LAS,Las Vegas Aces,Los Angeles Sparks,0,0,92,86,1529,1574,1539,1564,.551,1
2019,8/31/2019,DAL,WAS,Dallas Wings,Washington Mystics,0,0,85,91,1413,1694,1409,1698,.240,1
2019,8/30/2019,CON,NYL,Connecticut Sun,New York Liberty,0,0,94,84,1600,1325,1607,1319,.755,0
2019,8/30/2019,NYL,CON,New York Liberty,Connecticut Sun,0,0,84,94,1325,1600,1319,1607,.245,1
2019,8/29/2019,LAS,IND,Los Angeles Sparks,Indiana Fever,0,0,87,83,1567,1427,1574,1420,.585,0
2019,8/29/2019,PHO,ATL,Phoenix Mercury,Atlanta Dream,0,0,65,58,1518,1365,1527,1356,.603,0
2019,8/29/2019,CHI,DAL,Chicago Sky,Dallas Wings,0,0,83,88,1541,1395,1522,1413,.787,1
2019,8/29/2019,IND,LAS,Indiana Fever,Los Angeles Sparks,0,0,83,87,1427,1567,1420,1574,.415,1
2019,8/29/2019,DAL,CHI,Dallas Wings,Chicago Sky,0,0,88,83,1395,1541,1413,1522,.213,0
2019,8/29/2019,ATL,PHO,Atlanta Dream,Phoenix Mercury,0,0,58,65,1365,1518,1356,1527,.397,1
2019,8/27/2019,WAS,LAS,Washington Mystics,Los Angeles Sparks,0,0,95,66,1680,1580,1694,1567,.738,1
2019,8/27/2019,CON,SEA,Connecticut Sun,Seattle Storm,0,0,89,70,1577,1514,1600,1490,.476,0
2019,8/27/2019,LAS,WAS,Los Angeles Sparks,Washington Mystics,0,0,66,95,1580,1680,1567,1694,.262,0
2019,8/27/2019,MIN,CHI,Minnesota Lynx,Chicago Sky,0,0,93,85,1539,1551,1548,1541,.596,1
2019,8/27/2019,CHI,MIN,Chicago Sky,Minnesota Lynx,0,0,85,93,1551,1539,1541,1548,.404,0
2019,8/27/2019,LVA,IND,Las Vegas Aces,Indiana Fever,0,0,71,86,1553,1403,1529,1427,.599,0
2019,8/27/2019,PHO,NYL,Phoenix Mercury,New York Liberty,0,0,95,82,1506,1337,1518,1325,.625,0
2019,8/27/2019,SEA,CON,Seattle Storm,Connecticut Sun,0,0,70,89,1514,1577,1490,1600,.524,1
2019,8/27/2019,IND,LVA,Indiana Fever,Las Vegas Aces,0,0,86,71,1403,1553,1427,1529,.401,1
2019,8/27/2019,NYL,PHO,New York Liberty,Phoenix Mercury,0,0,82,95,1337,1506,1325,1518,.375,1
2019,8/25/2019,WAS,NYL,Washington Mystics,New York Liberty,0,0,101,72,1676,1341,1680,1337,.916,1
2019,8/25/2019,LAS,CON,Los Angeles Sparks,Connecticut Sun,0,0,84,72,1567,1590,1580,1577,.582,1
2019,8/25/2019,CON,LAS,Connecticut Sun,Los Angeles Sparks,0,0,72,84,1590,1567,1577,1580,.418,0
2019,8/25/2019,LVA,MIN,Las Vegas Aces,Minnesota Lynx,0,0,77,98,1575,1517,1553,1539,.469,0
2019,8/25/2019,CHI,PHO,Chicago Sky,Phoenix Mercury,0,0,94,86,1535,1522,1551,1506,.405,0
2019,8/25/2019,MIN,LVA,Minnesota Lynx,Las Vegas Aces,0,0,98,77,1517,1575,1539,1553,.531,1
2019,8/25/2019,SEA,IND,Seattle Storm,Indiana Fever,0,0,54,63,1541,1376,1514,1403,.804,1
2019,8/25/2019,PHO,CHI,Phoenix Mercury,Chicago Sky,0,0,86,94,1522,1535,1506,1551,.595,1
2019,8/25/2019,IND,SEA,Indiana Fever,Seattle Storm,0,0,63,54,1376,1541,1403,1514,.196,0
2019,8/25/2019,DAL,ATL,Dallas Wings,Atlanta Dream,0,0,73,77,1408,1351,1395,1365,.688,1
2019,8/25/2019,ATL,DAL,Atlanta Dream,Dallas Wings,0,0,77,73,1351,1408,1365,1395,.312,0
2019,8/25/2019,NYL,WAS,New York Liberty,Washington Mystics,0,0,72,101,1341,1676,1337,1680,.084,0
2019,8/23/2019,WAS,CHI,Washington Mystics,Chicago Sky,0,0,78,85,1692,1519,1676,1535,.631,0
2019,8/23/2019,CON,LVA,Connecticut Sun,Las Vegas Aces,0,0,89,85,1584,1582,1590,1575,.616,1
2019,8/23/2019,LVA,CON,Las Vegas Aces,Connecticut Sun,0,0,85,89,1582,1584,1575,1590,.384,0
2019,8/23/2019,CHI,WAS,Chicago Sky,Washington Mystics,0,0,85,78,1519,1692,1535,1676,.369,1
2019,8/23/2019,ATL,NYL,Atlanta Dream,New York Liberty,0,0,90,87,1341,1351,1351,1341,.372,0
2019,8/23/2019,NYL,ATL,New York Liberty,Atlanta Dream,0,0,87,90,1351,1341,1341,1351,.628,1
2019,8/22/2019,LAS,IND,Los Angeles Sparks,Indiana Fever,0,0,98,65,1557,1387,1567,1376,.809,1
2019,8/22/2019,MIN,DAL,Minnesota Lynx,Dallas Wings,0,0,86,70,1507,1418,1517,1408,.726,1
2019,8/22/2019,DAL,MIN,Dallas Wings,Minnesota Lynx,0,0,70,86,1418,1507,1408,1517,.274,0
2019,8/22/2019,IND,LAS,Indiana Fever,Los Angeles Sparks,0,0,65,98,1387,1557,1376,1567,.191,0
2019,8/20/2019,LVA,PHO,Las Vegas Aces,Phoenix Mercury,0,0,84,79,1576,1528,1582,1522,.677,1
2019,8/20/2019,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,0,81,71,1548,1516,1557,1507,.655,1
2019,8/20/2019,PHO,LVA,Phoenix Mercury,Las Vegas Aces,0,0,79,84,1528,1576,1522,1582,.323,0
2019,8/20/2019,CHI,ATL,Chicago Sky,Atlanta Dream,0,0,87,83,1513,1347,1519,1341,.621,0
2019,8/20/2019,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,0,71,81,1516,1548,1507,1557,.345,0
2019,8/20/2019,IND,NYL,Indiana Fever,New York Liberty,0,0,76,82,1404,1334,1387,1351,.704,1
2019,8/20/2019,NYL,IND,New York Liberty,Indiana Fever,0,0,82,76,1334,1404,1351,1387,.296,0
2019,8/20/2019,ATL,CHI,Atlanta Dream,Chicago Sky,0,0,83,87,1347,1513,1341,1519,.379,1
2019,8/18/2019,WAS,IND,Washington Mystics,Indiana Fever,0,0,107,68,1686,1411,1692,1404,.885,1
2019,8/18/2019,CON,DAL,Connecticut Sun,Dallas Wings,0,0,78,68,1579,1423,1584,1418,.795,1
2019,8/18/2019,LVA,CHI,Las Vegas Aces,Chicago Sky,0,0,100,85,1552,1536,1576,1513,.409,0
2019,8/18/2019,SEA,MIN,Seattle Storm,Minnesota Lynx,0,0,82,74,1532,1525,1541,1516,.622,1
2019,8/18/2019,PHO,NYL,Phoenix Mercury,New York Liberty,0,0,78,72,1524,1337,1528,1334,.823,1
2019,8/18/2019,MIN,SEA,Minnesota Lynx,Seattle Storm,0,0,74,82,1525,1532,1516,1541,.378,0
2019,8/18/2019,CHI,LVA,Chicago Sky,Las Vegas Aces,0,0,85,100,1536,1552,1513,1576,.591,1
2019,8/18/2019,DAL,CON,Dallas Wings,Connecticut Sun,0,0,68,78,1423,1579,1418,1584,.205,0
2019,8/18/2019,IND,WAS,Indiana Fever,Washington Mystics,0,0,68,107,1411,1686,1404,1692,.115,0
2019,8/18/2019,NYL,PHO,New York Liberty,Phoenix Mercury,0,0,72,78,1337,1524,1334,1528,.177,0
2019,8/16/2019,WAS,MIN,Washington Mystics,Minnesota Lynx,0,0,86,79,1677,1535,1686,1525,.588,0
2019,8/16/2019,CON,SEA,Connecticut Sun,Seattle Storm,0,0,79,78,1575,1536,1579,1532,.666,1
2019,8/16/2019,LAS,CHI,Los Angeles Sparks,Chicago Sky,0,0,81,91,1560,1524,1548,1536,.437,0
2019,8/16/2019,CHI,LAS,Chicago Sky,Los Angeles Sparks,0,0,91,81,1524,1560,1536,1548,.563,1
2019,8/16/2019,SEA,CON,Seattle Storm,Connecticut Sun,0,0,78,79,1536,1575,1532,1579,.334,0
2019,8/16/2019,MIN,WAS,Minnesota Lynx,Washington Mystics,0,0,79,86,1535,1677,1525,1686,.412,1
2019,8/16/2019,PHO,ATL,Phoenix Mercury,Atlanta Dream,0,0,77,68,1520,1351,1524,1347,.807,1
2019,8/16/2019,DAL,NYL,Dallas Wings,New York Liberty,0,0,83,77,1417,1343,1423,1337,.709,1
2019,8/16/2019,ATL,PHO,Atlanta Dream,Phoenix Mercury,0,0,68,77,1351,1520,1347,1524,.193,0
2019,8/16/2019,NYL,DAL,New York Liberty,Dallas Wings,0,0,77,83,1343,1417,1337,1423,.291,0
2019,8/14/2019,WAS,SEA,Washington Mystics,Seattle Storm,0,0,88,59,1664,1548,1677,1536,.755,1
2019,8/14/2019,CON,PHO,Connecticut Sun,Phoenix Mercury,0,0,78,71,1561,1534,1575,1520,.424,0
2019,8/14/2019,LAS,DAL,Los Angeles Sparks,Dallas Wings,0,0,78,84,1575,1402,1560,1417,.630,0
2019,8/14/2019,SEA,WAS,Seattle Storm,Washington Mystics,0,0,59,88,1548,1664,1536,1677,.245,0
2019,8/14/2019,PHO,CON,Phoenix Mercury,Connecticut Sun,0,0,71,78,1534,1561,1520,1575,.576,1
2019,8/14/2019,DAL,LAS,Dallas Wings,Los Angeles Sparks,0,0,84,78,1402,1575,1417,1560,.370,1
2019,8/13/2019,LVA,ATL,Las Vegas Aces,Atlanta Dream,0,0,94,90,1550,1354,1552,1351,.831,1
2019,8/13/2019,MIN,NYL,Minnesota Lynx,New York Liberty,0,0,89,73,1520,1357,1535,1343,.618,0
2019,8/13/2019,ATL,LVA,Atlanta Dream,Las Vegas Aces,0,0,90,94,1354,1550,1351,1552,.169,0
2019,8/13/2019,NYL,MIN,New York Liberty,Minnesota Lynx,0,0,73,89,1357,1520,1343,1535,.382,1
2019,8/11/2019,WAS,MIN,Washington Mystics,Minnesota Lynx,0,0,101,78,1654,1531,1664,1520,.763,1
2019,8/11/2019,LAS,CHI,Los Angeles Sparks,Chicago Sky,0,0,84,81,1570,1529,1575,1524,.668,1
2019,8/11/2019,CON,LVA,Connecticut Sun,Las Vegas Aces,0,0,81,89,1572,1539,1561,1550,.432,0
2019,8/11/2019,LVA,CON,Las Vegas Aces,Connecticut Sun,0,0,89,81,1539,1572,1550,1561,.568,1
2019,8/11/2019,SEA,NYL,Seattle Storm,New York Liberty,0,0,84,69,1535,1370,1548,1357,.619,0
2019,8/11/2019,CHI,LAS,Chicago Sky,Los Angeles Sparks,0,0,81,84,1529,1570,1524,1575,.332,0
2019,8/11/2019,MIN,WAS,Minnesota Lynx,Washington Mystics,0,0,78,101,1531,1654,1520,1664,.237,0
2019,8/11/2019,NYL,SEA,New York Liberty,Seattle Storm,0,0,69,84,1370,1535,1357,1548,.381,1
2019,8/10/2019,PHO,DAL,Phoenix Mercury,Dallas Wings,0,0,77,80,1550,1387,1534,1402,.802,1
2019,8/10/2019,IND,ATL,Indiana Fever,Atlanta Dream,0,0,87,82,1405,1360,1411,1354,.673,1
2019,8/10/2019,DAL,PHO,Dallas Wings,Phoenix Mercury,0,0,80,77,1387,1550,1402,1534,.198,0
2019,8/10/2019,ATL,IND,Atlanta Dream,Indiana Fever,0,0,82,87,1360,1405,1354,1411,.327,0
2019,8/9/2019,CON,MIN,Connecticut Sun,Minnesota Lynx,0,0,57,89,1608,1495,1572,1531,.547,0
2019,8/9/2019,LVA,CHI,Las Vegas Aces,Chicago Sky,0,0,84,87,1551,1518,1539,1529,.657,1
2019,8/9/2019,MIN,CON,Minnesota Lynx,Connecticut Sun,0,0,89,57,1495,1608,1531,1572,.453,1
2019,8/9/2019,CHI,LVA,Chicago Sky,Las Vegas Aces,0,0,87,84,1518,1551,1529,1539,.343,0
2019,8/8/2019,WAS,IND,Washington Mystics,Indiana Fever,0,0,91,78,1650,1408,1654,1405,.864,1
2019,8/8/2019,LAS,PHO,Los Angeles Sparks,Phoenix Mercury,0,0,84,74,1559,1560,1570,1550,.612,1
2019,8/8/2019,PHO,LAS,Phoenix Mercury,Los Angeles Sparks,0,0,74,84,1560,1559,1550,1570,.388,0
2019,8/8/2019,SEA,DAL,Seattle Storm,Dallas Wings,0,0,69,57,1528,1393,1535,1387,.776,1
2019,8/8/2019,IND,WAS,Indiana Fever,Washington Mystics,0,0,78,91,1408,1650,1405,1654,.136,0
2019,8/8/2019,DAL,SEA,Dallas Wings,Seattle Storm,0,0,57,69,1393,1528,1387,1535,.224,0
2019,8/7/2019,CHI,NYL,Chicago Sky,New York Liberty,0,0,101,92,1512,1375,1518,1370,.777,1
2019,8/7/2019,NYL,CHI,New York Liberty,Chicago Sky,0,0,92,101,1375,1512,1370,1518,.223,0
2019,8/6/2019,MIN,ATL,Minnesota Lynx,Atlanta Dream,0,0,85,69,1476,1378,1495,1360,.527,0
2019,8/6/2019,ATL,MIN,Atlanta Dream,Minnesota Lynx,0,0,69,85,1378,1476,1360,1495,.473,1
2019,8/5/2019,WAS,LVA,Washington Mystics,Las Vegas Aces,0,0,99,70,1614,1587,1650,1551,.425,0
2019,8/5/2019,LVA,WAS,Las Vegas Aces,Washington Mystics,0,0,70,99,1587,1614,1551,1650,.575,1
2019,8/4/2019,WAS,PHO,Washington Mystics,Phoenix Mercury,0,0,82,103,1640,1534,1614,1560,.537,0
2019,8/4/2019,CON,NYL,Connecticut Sun,New York Liberty,0,0,94,79,1597,1386,1608,1375,.679,0
2019,8/4/2019,PHO,WAS,Phoenix Mercury,Washington Mystics,0,0,103,82,1534,1640,1560,1614,.463,1
2019,8/4/2019,LAS,SEA,Los Angeles Sparks,Seattle Storm,0,0,83,75,1551,1537,1559,1528,.631,1
2019,8/4/2019,SEA,LAS,Seattle Storm,Los Angeles Sparks,0,0,75,83,1537,1551,1528,1559,.369,0
2019,8/4/2019,NYL,CON,New York Liberty,Connecticut Sun,0,0,79,94,1386,1597,1375,1608,.321,1
2019,8/3/2019,LVA,DAL,Las Vegas Aces,Dallas Wings,0,0,75,70,1580,1400,1587,1393,.641,0
2019,8/3/2019,CHI,ATL,Chicago Sky,Atlanta Dream,0,0,87,75,1498,1393,1512,1378,.536,0
2019,8/3/2019,MIN,IND,Minnesota Lynx,Indiana Fever,0,0,75,86,1493,1392,1476,1408,.530,0
2019,8/3/2019,IND,MIN,Indiana Fever,Minnesota Lynx,0,0,86,75,1392,1493,1408,1476,.470,1
2019,8/3/2019,DAL,LVA,Dallas Wings,Las Vegas Aces,0,0,70,75,1400,1580,1393,1587,.359,1
2019,8/3/2019,ATL,CHI,Atlanta Dream,Chicago Sky,0,0,75,87,1393,1498,1378,1512,.464,1
2019,8/2/2019,WAS,SEA,Washington Mystics,Seattle Storm,0,0,99,79,1615,1563,1640,1537,.460,0
2019,8/2/2019,SEA,WAS,Seattle Storm,Washington Mystics,0,0,79,99,1563,1615,1537,1640,.540,1
2019,8/1/2019,CON,PHO,Connecticut Sun,Phoenix Mercury,0,0,68,62,1590,1541,1597,1534,.678,1
2019,8/1/2019,LVA,LAS,Las Vegas Aces,Los Angeles Sparks,0,0,68,76,1591,1539,1580,1551,.460,0
2019,8/1/2019,LAS,LVA,Los Angeles Sparks,Las Vegas Aces,0,0,76,68,1539,1591,1551,1580,.540,1
2019,8/1/2019,PHO,CON,Phoenix Mercury,Connecticut Sun,0,0,62,68,1541,1590,1534,1597,.322,0
2019,8/1/2019,DAL,NYL,Dallas Wings,New York Liberty,0,0,87,64,1379,1407,1400,1386,.574,1
2019,8/1/2019,NYL,DAL,New York Liberty,Dallas Wings,0,0,64,87,1407,1379,1386,1400,.426,0
2019,7/31/2019,ATL,IND,Atlanta Dream,Indiana Fever,0,0,59,61,1398,1387,1393,1392,.402,0
2019,7/31/2019,IND,ATL,Indiana Fever,Atlanta Dream,0,0,61,59,1387,1398,1392,1393,.598,1
2019,7/30/2019,WAS,PHO,Washington Mystics,Phoenix Mercury,0,0,99,93,1609,1547,1615,1541,.694,1
2019,7/30/2019,LVA,DAL,Las Vegas Aces,Dallas Wings,0,0,86,54,1582,1388,1591,1379,.829,1
2019,7/30/2019,CON,CHI,Connecticut Sun,Chicago Sky,0,0,100,94,1585,1503,1590,1498,.718,1
2019,7/30/2019,PHO,WAS,Phoenix Mercury,Washington Mystics,0,0,93,99,1547,1609,1541,1615,.306,0
2019,7/30/2019,CHI,CON,Chicago Sky,Connecticut Sun,0,0,94,100,1503,1585,1498,1590,.282,0
2019,7/30/2019,DAL,LVA,Dallas Wings,Las Vegas Aces,0,0,54,86,1388,1582,1379,1591,.171,0
2019,7/24/2019,WAS,MIN,Washington Mystics,Minnesota Lynx,0,0,79,71,1597,1505,1609,1493,.516,0
2019,7/24/2019,CON,NYL,Connecticut Sun,New York Liberty,0,0,70,63,1581,1411,1585,1407,.809,1
2019,7/24/2019,MIN,WAS,Minnesota Lynx,Washington Mystics,0,0,71,79,1505,1597,1493,1609,.484,1
2019,7/24/2019,NYL,CON,New York Liberty,Connecticut Sun,0,0,63,70,1411,1581,1407,1585,.191,0
2019,7/23/2019,LVA,SEA,Las Vegas Aces,Seattle Storm,0,0,79,62,1567,1578,1582,1563,.598,1
2019,7/23/2019,SEA,LVA,Seattle Storm,Las Vegas Aces,0,0,62,79,1578,1567,1563,1582,.402,0
2019,7/23/2019,PHO,IND,Phoenix Mercury,Indiana Fever,0,0,95,77,1539,1394,1547,1387,.784,1
2019,7/23/2019,LAS,ATL,Los Angeles Sparks,Atlanta Dream,0,0,78,66,1525,1412,1539,1398,.547,0
2019,7/23/2019,ATL,LAS,Atlanta Dream,Los Angeles Sparks,0,0,66,78,1412,1525,1398,1539,.453,1
2019,7/23/2019,IND,PHO,Indiana Fever,Phoenix Mercury,0,0,77,95,1394,1539,1387,1547,.216,0
2019,7/21/2019,WAS,ATL,Washington Mystics,Atlanta Dream,0,0,93,65,1587,1422,1597,1412,.804,1
2019,7/21/2019,LVA,MIN,Las Vegas Aces,Minnesota Lynx,0,0,79,74,1561,1511,1567,1505,.679,1
2019,7/21/2019,MIN,LVA,Minnesota Lynx,Las Vegas Aces,0,0,74,79,1511,1561,1505,1567,.321,0
2019,7/21/2019,CHI,IND,Chicago Sky,Indiana Fever,0,0,78,70,1497,1400,1503,1394,.734,1
2019,7/21/2019,ATL,WAS,Atlanta Dream,Washington Mystics,0,0,65,93,1422,1587,1412,1597,.196,0
2019,7/21/2019,IND,CHI,Indiana Fever,Chicago Sky,0,0,70,78,1400,1497,1394,1503,.266,0
2019,7/20/2019,PHO,DAL,Phoenix Mercury,Dallas Wings,0,0,70,66,1532,1395,1539,1388,.581,0
2019,7/20/2019,LAS,NYL,Los Angeles Sparks,New York Liberty,0,0,78,83,1537,1399,1525,1411,.583,0
2019,7/20/2019,NYL,LAS,New York Liberty,Los Angeles Sparks,0,0,83,78,1399,1537,1411,1525,.417,1
2019,7/20/2019,DAL,PHO,Dallas Wings,Phoenix Mercury,0,0,66,70,1395,1532,1388,1539,.419,1
2019,7/19/2019,WAS,IND,Washington Mystics,Indiana Fever,0,0,95,88,1579,1409,1587,1400,.627,0
2019,7/19/2019,CON,ATL,Connecticut Sun,Atlanta Dream,0,0,98,69,1570,1433,1581,1422,.777,1
2019,7/19/2019,SEA,LVA,Seattle Storm,Las Vegas Aces,0,0,69,66,1573,1567,1578,1561,.621,1
2019,7/19/2019,LVA,SEA,Las Vegas Aces,Seattle Storm,0,0,66,69,1567,1573,1561,1578,.379,0
2019,7/19/2019,ATL,CON,Atlanta Dream,Connecticut Sun,0,0,69,98,1433,1570,1422,1581,.223,0
2019,7/19/2019,IND,WAS,Indiana Fever,Washington Mystics,0,0,88,95,1409,1579,1400,1587,.373,1
2019,7/18/2019,LAS,DAL,Los Angeles Sparks,Dallas Wings,0,0,69,64,1533,1399,1537,1395,.775,1
2019,7/18/2019,DAL,LAS,Dallas Wings,Los Angeles Sparks,0,0,64,69,1399,1533,1395,1537,.225,0
2019,7/17/2019,SEA,MIN,Seattle Storm,Minnesota Lynx,0,0,90,79,1554,1530,1573,1511,.421,0
2019,7/17/2019,PHO,DAL,Phoenix Mercury,Dallas Wings,0,0,69,64,1528,1403,1532,1399,.765,1
2019,7/17/2019,MIN,SEA,Minnesota Lynx,Seattle Storm,0,0,79,90,1530,1554,1511,1573,.579,1
2019,7/17/2019,CHI,ATL,Chicago Sky,Atlanta Dream,0,0,77,76,1494,1436,1497,1433,.688,1
2019,7/17/2019,ATL,CHI,Atlanta Dream,Chicago Sky,0,0,76,77,1436,1494,1433,1497,.312,0
2019,7/17/2019,DAL,PHO,Dallas Wings,Phoenix Mercury,0,0,64,69,1403,1528,1399,1532,.235,0
2019,7/14/2019,CON,IND,Connecticut Sun,Indiana Fever,0,0,76,63,1556,1423,1570,1409,.576,0
2019,7/14/2019,SEA,NYL,Seattle Storm,New York Liberty,0,0,78,69,1549,1404,1554,1399,.785,1
2019,7/14/2019,LAS,ATL,Los Angeles Sparks,Atlanta Dream,0,0,76,71,1523,1446,1533,1436,.495,0
2019,7/14/2019,MIN,PHO,Minnesota Lynx,Phoenix Mercury,0,0,75,62,1516,1542,1530,1528,.577,1
2019,7/14/2019,PHO,MIN,Phoenix Mercury,Minnesota Lynx,0,0,62,75,1542,1516,1528,1530,.423,0
2019,7/14/2019,CHI,DAL,Chicago Sky,Dallas Wings,0,0,89,79,1478,1418,1494,1403,.471,0
2019,7/14/2019,ATL,LAS,Atlanta Dream,Los Angeles Sparks,0,0,71,76,1446,1523,1436,1533,.505,1
2019,7/14/2019,IND,CON,Indiana Fever,Connecticut Sun,0,0,63,76,1423,1556,1409,1570,.424,1
2019,7/14/2019,DAL,CHI,Dallas Wings,Chicago Sky,0,0,79,89,1418,1478,1403,1494,.529,1
2019,7/14/2019,NYL,SEA,New York Liberty,Seattle Storm,0,0,69,78,1404,1549,1399,1554,.215,0
2019,7/13/2019,WAS,LVA,Washington Mystics,Las Vegas Aces,0,0,81,85,1592,1554,1579,1567,.664,1
2019,7/13/2019,LVA,WAS,Las Vegas Aces,Washington Mystics,0,0,85,81,1554,1592,1567,1579,.336,0
2019,7/12/2019,CON,PHO,Connecticut Sun,Phoenix Mercury,0,0,79,64,1541,1556,1556,1542,.593,1
2019,7/12/2019,SEA,DAL,Seattle Storm,Dallas Wings,0,0,95,81,1541,1426,1549,1418,.755,1
2019,7/12/2019,PHO,CON,Phoenix Mercury,Connecticut Sun,0,0,64,79,1556,1541,1542,1556,.407,0
2019,7/12/2019,LAS,IND,Los Angeles Sparks,Indiana Fever,0,0,90,84,1512,1433,1523,1423,.498,0
2019,7/12/2019,MIN,ATL,Minnesota Lynx,Atlanta Dream,0,0,53,60,1528,1434,1516,1446,.520,0
2019,7/12/2019,CHI,NYL,Chicago Sky,New York Liberty,0,0,99,83,1467,1415,1478,1404,.681,1
2019,7/12/2019,ATL,MIN,Atlanta Dream,Minnesota Lynx,0,0,60,53,1434,1528,1446,1516,.480,1
2019,7/12/2019,IND,LAS,Indiana Fever,Los Angeles Sparks,0,0,84,90,1433,1512,1423,1523,.502,1
2019,7/12/2019,DAL,SEA,Dallas Wings,Seattle Storm,0,0,81,95,1426,1541,1418,1549,.245,0
2019,7/12/2019,NYL,CHI,New York Liberty,Chicago Sky,0,0,83,99,1415,1467,1404,1478,.319,0
2019,7/10/2019,WAS,PHO,Washington Mystics,Phoenix Mercury,0,0,68,91,1639,1509,1592,1556,.769,1
2019,7/10/2019,PHO,WAS,Phoenix Mercury,Washington Mystics,0,0,91,68,1509,1639,1556,1592,.231,0
2019,7/10/2019,LVA,IND,Las Vegas Aces,Indiana Fever,0,0,74,71,1547,1441,1554,1433,.537,0
2019,7/10/2019,CON,ATL,Connecticut Sun,Atlanta Dream,0,0,75,78,1550,1425,1541,1434,.565,0
2019,7/10/2019,MIN,CHI,Minnesota Lynx,Chicago Sky,0,0,73,72,1522,1473,1528,1467,.455,0
2019,7/10/2019,CHI,MIN,Chicago Sky,Minnesota Lynx,0,0,72,73,1473,1522,1467,1528,.545,1
2019,7/10/2019,ATL,CON,Atlanta Dream,Connecticut Sun,0,0,78,75,1425,1550,1434,1541,.435,1
2019,7/10/2019,IND,LVA,Indiana Fever,Las Vegas Aces,0,0,71,74,1441,1547,1433,1554,.463,1
2019,7/9/2019,LAS,DAL,Los Angeles Sparks,Dallas Wings,0,0,62,74,1531,1407,1512,1426,.564,0
2019,7/9/2019,DAL,LAS,Dallas Wings,Los Angeles Sparks,0,0,74,62,1407,1531,1426,1512,.436,1
2019,7/7/2019,WAS,LAS,Washington Mystics,Los Angeles Sparks,0,0,81,98,1666,1504,1639,1531,.615,0
2019,7/7/2019,LVA,NYL,Las Vegas Aces,New York Liberty,0,0,90,58,1512,1449,1547,1415,.476,0
2019,7/7/2019,LAS,WAS,Los Angeles Sparks,Washington Mystics,0,0,98,81,1504,1666,1531,1639,.385,1
2019,7/7/2019,PHO,ATL,Phoenix Mercury,Atlanta Dream,0,0,65,63,1506,1428,1509,1425,.713,1
2019,7/7/2019,CHI,DAL,Chicago Sky,Dallas Wings,0,0,78,66,1464,1417,1473,1407,.675,1
2019,7/7/2019,ATL,PHO,Atlanta Dream,Phoenix Mercury,0,0,63,65,1428,1506,1425,1509,.287,0
2019,7/7/2019,NYL,LVA,New York Liberty,Las Vegas Aces,0,0,58,90,1449,1512,1415,1547,.524,1
2019,7/7/2019,DAL,CHI,Dallas Wings,Chicago Sky,0,0,66,78,1417,1464,1407,1473,.325,0
2019,7/6/2019,CON,MIN,Connecticut Sun,Minnesota Lynx,0,0,71,74,1562,1510,1550,1522,.682,1
2019,7/6/2019,MIN,CON,Minnesota Lynx,Connecticut Sun,0,0,74,71,1510,1562,1522,1550,.318,0
2019,7/5/2019,SEA,ATL,Seattle Storm,Atlanta Dream,0,0,66,77,1573,1397,1541,1428,.814,1
2019,7/5/2019,PHO,NYL,Phoenix Mercury,New York Liberty,0,0,76,80,1521,1434,1506,1449,.723,1
2019,7/5/2019,NYL,PHO,New York Liberty,Phoenix Mercury,0,0,80,76,1434,1521,1449,1506,.277,0
2019,7/5/2019,IND,DAL,Indiana Fever,Dallas Wings,0,0,76,56,1406,1451,1441,1417,.328,0
2019,7/5/2019,ATL,SEA,Atlanta Dream,Seattle Storm,0,0,77,66,1397,1573,1428,1541,.186,0
2019,7/5/2019,DAL,IND,Dallas Wings,Indiana Fever,0,0,56,76,1451,1406,1417,1441,.672,1
2019,7/3/2019,SEA,NYL,Seattle Storm,New York Liberty,0,0,83,84,1584,1423,1573,1434,.800,1
2019,7/3/2019,NYL,SEA,New York Liberty,Seattle Storm,0,0,84,83,1423,1584,1434,1573,.200,0
2019,7/2/2019,LVA,CHI,Las Vegas Aces,Chicago Sky,0,0,90,82,1505,1472,1512,1464,.657,1
2019,7/2/2019,MIN,ATL,Minnesota Lynx,Atlanta Dream,0,0,85,68,1500,1406,1510,1397,.731,1
2019,7/2/2019,CHI,LVA,Chicago Sky,Las Vegas Aces,0,0,82,90,1472,1505,1464,1512,.343,0
2019,7/2/2019,ATL,MIN,Atlanta Dream,Minnesota Lynx,0,0,68,85,1406,1500,1397,1510,.269,0
2019,6/30/2019,SEA,PHO,Seattle Storm,Phoenix Mercury,0,0,67,69,1595,1510,1584,1521,.722,1
2019,6/30/2019,PHO,SEA,Phoenix Mercury,Seattle Storm,0,0,69,67,1510,1595,1521,1584,.278,0
2019,6/30/2019,LAS,CHI,Los Angeles Sparks,Chicago Sky,0,0,94,69,1484,1492,1504,1472,.603,1
2019,6/30/2019,MIN,DAL,Minnesota Lynx,Dallas Wings,0,0,86,89,1508,1443,1500,1451,.477,0
2019,6/30/2019,CHI,LAS,Chicago Sky,Los Angeles Sparks,0,0,69,94,1492,1484,1472,1504,.397,0
2019,6/30/2019,DAL,MIN,Dallas Wings,Minnesota Lynx,0,0,89,86,1443,1508,1451,1500,.523,1
2019,6/30/2019,NYL,ATL,New York Liberty,Atlanta Dream,0,0,74,58,1394,1435,1423,1406,.332,0
2019,6/30/2019,ATL,NYL,Atlanta Dream,New York Liberty,0,0,58,74,1435,1394,1406,1423,.668,1
2019,6/29/2019,WAS,CON,Washington Mystics,Connecticut Sun,0,0,102,59,1643,1585,1666,1562,.689,1
2019,6/29/2019,CON,WAS,Connecticut Sun,Washington Mystics,0,0,59,102,1585,1643,1562,1666,.311,0
2019,6/29/2019,LVA,IND,Las Vegas Aces,Indiana Fever,0,0,102,97,1500,1411,1505,1406,.725,1
2019,6/29/2019,IND,LVA,Indiana Fever,Las Vegas Aces,0,0,97,102,1411,1500,1406,1505,.275,0
2019,6/28/2019,SEA,CHI,Seattle Storm,Chicago Sky,0,0,79,76,1592,1495,1595,1492,.734,1
2019,6/28/2019,PHO,IND,Phoenix Mercury,Indiana Fever,0,0,91,69,1497,1424,1510,1411,.707,1
2019,6/28/2019,CHI,SEA,Chicago Sky,Seattle Storm,0,0,76,79,1495,1592,1492,1595,.266,0
2019,6/28/2019,DAL,NYL,Dallas Wings,New York Liberty,0,0,68,69,1449,1389,1443,1394,.471,0
2019,6/28/2019,IND,PHO,Indiana Fever,Phoenix Mercury,0,0,69,91,1424,1497,1411,1510,.293,0
2019,6/28/2019,NYL,DAL,New York Liberty,Dallas Wings,0,0,69,68,1389,1449,1394,1443,.529,1
2019,6/27/2019,LVA,LAS,Las Vegas Aces,Los Angeles Sparks,0,0,74,86,1514,1470,1500,1484,.448,0
2019,6/27/2019,LAS,LVA,Los Angeles Sparks,Las Vegas Aces,0,0,86,74,1470,1514,1484,1500,.552,1
2019,6/26/2019,WAS,CHI,Washington Mystics,Chicago Sky,0,0,81,74,1633,1505,1643,1495,.569,0
2019,6/26/2019,CON,DAL,Connecticut Sun,Dallas Wings,0,0,73,74,1592,1441,1585,1449,.600,0
2019,6/26/2019,CHI,WAS,Chicago Sky,Washington Mystics,0,0,74,81,1505,1633,1495,1643,.431,1
2019,6/26/2019,DAL,CON,Dallas Wings,Connecticut Sun,0,0,74,73,1441,1592,1449,1585,.400,1
2019,6/25/2019,SEA,LVA,Seattle Storm,Las Vegas Aces,0,0,56,60,1601,1505,1592,1514,.524,0
2019,6/25/2019,LVA,SEA,Las Vegas Aces,Seattle Storm,0,0,60,56,1505,1601,1514,1592,.476,1
2019,6/25/2019,MIN,IND,Minnesota Lynx,Indiana Fever,0,0,78,74,1498,1433,1508,1424,.478,0
2019,6/25/2019,IND,MIN,Indiana Fever,Minnesota Lynx,0,0,74,78,1433,1498,1424,1508,.522,1
2019,6/23/2019,WAS,ATL,Washington Mystics,Atlanta Dream,0,0,89,73,1620,1449,1633,1435,.628,0
2019,6/23/2019,SEA,IND,Seattle Storm,Indiana Fever,0,0,65,61,1598,1436,1601,1433,.801,1
2019,6/23/2019,CON,CHI,Connecticut Sun,Chicago Sky,0,0,75,93,1618,1479,1592,1505,.584,0
2019,6/23/2019,CHI,CON,Chicago Sky,Connecticut Sun,0,0,93,75,1479,1618,1505,1592,.416,1
2019,6/23/2019,PHO,LAS,Phoenix Mercury,Los Angeles Sparks,0,0,82,72,1486,1480,1497,1470,.621,1
2019,6/23/2019,LAS,PHO,Los Angeles Sparks,Phoenix Mercury,0,0,72,82,1480,1486,1470,1497,.379,0
2019,6/23/2019,ATL,WAS,Atlanta Dream,Washington Mystics,0,0,73,89,1449,1620,1435,1633,.372,1
2019,6/23/2019,IND,SEA,Indiana Fever,Seattle Storm,0,0,61,65,1436,1598,1433,1601,.199,0
2019,6/22/2019,LVA,DAL,Las Vegas Aces,Dallas Wings,0,0,86,68,1491,1455,1505,1441,.662,1
2019,6/22/2019,MIN,NYL,Minnesota Lynx,New York Liberty,0,0,92,83,1492,1395,1498,1389,.735,1
2019,6/22/2019,DAL,LVA,Dallas Wings,Las Vegas Aces,0,0,68,86,1455,1491,1441,1505,.338,0
2019,6/22/2019,NYL,MIN,New York Liberty,Minnesota Lynx,0,0,83,92,1395,1492,1389,1498,.265,0
2019,6/21/2019,CON,ATL,Connecticut Sun,Atlanta Dream,0,0,86,76,1613,1454,1618,1449,.798,1
2019,6/21/2019,SEA,LAS,Seattle Storm,Los Angeles Sparks,0,0,84,62,1587,1492,1598,1480,.732,1
2019,6/21/2019,LAS,SEA,Los Angeles Sparks,Seattle Storm,0,0,62,84,1492,1587,1480,1598,.268,0
2019,6/21/2019,CHI,IND,Chicago Sky,Indiana Fever,0,0,69,76,1498,1417,1479,1436,.717,1
2019,6/21/2019,ATL,CON,Atlanta Dream,Connecticut Sun,0,0,76,86,1454,1613,1449,1618,.202,0
2019,6/21/2019,IND,CHI,Indiana Fever,Chicago Sky,0,0,76,69,1417,1498,1436,1479,.283,0
2019,6/20/2019,WAS,LVA,Washington Mystics,Las Vegas Aces,0,0,95,72,1594,1517,1620,1491,.496,0
2019,6/20/2019,LVA,WAS,Las Vegas Aces,Washington Mystics,0,0,72,95,1517,1594,1491,1620,.504,1
2019,6/20/2019,PHO,DAL,Phoenix Mercury,Dallas Wings,0,0,54,69,1504,1437,1486,1455,.482,0
2019,6/20/2019,DAL,PHO,Dallas Wings,Phoenix Mercury,0,0,69,54,1437,1504,1455,1486,.518,1
2019,6/19/2019,CHI,NYL,Chicago Sky,New York Liberty,0,0,91,83,1486,1408,1498,1395,.497,0
2019,6/19/2019,ATL,IND,Atlanta Dream,Indiana Fever,0,0,88,78,1444,1427,1454,1417,.637,1
2019,6/19/2019,IND,ATL,Indiana Fever,Atlanta Dream,0,0,78,88,1427,1444,1417,1454,.363,0
2019,6/19/2019,NYL,CHI,New York Liberty,Chicago Sky,0,0,83,91,1408,1486,1395,1498,.503,1
2019,6/18/2019,WAS,LAS,Washington Mystics,Los Angeles Sparks,0,0,81,52,1559,1527,1594,1492,.431,0
2019,6/18/2019,LAS,WAS,Los Angeles Sparks,Washington Mystics,0,0,52,81,1527,1559,1492,1594,.569,1
2019,6/16/2019,CON,SEA,Connecticut Sun,Seattle Storm,0,0,81,67,1600,1600,1613,1587,.614,1
2019,6/16/2019,SEA,CON,Seattle Storm,Connecticut Sun,0,0,67,81,1600,1600,1587,1613,.386,0
2019,6/16/2019,LVA,MIN,Las Vegas Aces,Minnesota Lynx,0,0,80,75,1504,1505,1517,1492,.386,0
2019,6/16/2019,MIN,LVA,Minnesota Lynx,Las Vegas Aces,0,0,75,80,1505,1504,1492,1517,.614,1
2019,6/15/2019,LAS,NYL,Los Angeles Sparks,New York Liberty,0,0,92,98,1549,1386,1527,1408,.801,1
2019,6/15/2019,CHI,IND,Chicago Sky,Indiana Fever,0,0,70,64,1473,1439,1486,1427,.433,0
2019,6/15/2019,ATL,DAL,Atlanta Dream,Dallas Wings,0,0,61,71,1456,1425,1444,1437,.431,0
2019,6/15/2019,DAL,ATL,Dallas Wings,Atlanta Dream,0,0,71,61,1425,1456,1437,1444,.569,1
2019,6/15/2019,IND,CHI,Indiana Fever,Chicago Sky,0,0,64,70,1439,1473,1427,1486,.567,1
2019,6/15/2019,NYL,LAS,New York Liberty,Los Angeles Sparks,0,0,98,92,1386,1549,1408,1527,.199,0
2019,6/14/2019,CON,MIN,Connecticut Sun,Minnesota Lynx,0,0,85,81,1591,1514,1600,1505,.496,0
2019,6/14/2019,SEA,WAS,Seattle Storm,Washington Mystics,0,0,74,71,1590,1568,1600,1559,.417,0
2019,6/14/2019,WAS,SEA,Washington Mystics,Seattle Storm,0,0,71,74,1568,1590,1559,1600,.583,1
2019,6/14/2019,LAS,PHO,Los Angeles Sparks,Phoenix Mercury,0,0,85,68,1521,1532,1549,1504,.371,0
2019,6/14/2019,MIN,CON,Minnesota Lynx,Connecticut Sun,0,0,81,85,1514,1591,1505,1600,.504,1
2019,6/14/2019,PHO,LAS,Phoenix Mercury,Los Angeles Sparks,0,0,68,85,1532,1521,1504,1549,.629,1
2019,6/14/2019,LVA,NYL,Las Vegas Aces,New York Liberty,0,0,100,65,1487,1403,1504,1386,.719,1
2019,6/14/2019,NYL,LVA,New York Liberty,Las Vegas Aces,0,0,65,100,1403,1487,1386,1504,.281,0
2019,6/13/2019,IND,DAL,Indiana Fever,Dallas Wings,0,0,76,72,1427,1436,1439,1425,.374,0
2019,6/13/2019,DAL,IND,Dallas Wings,Indiana Fever,0,0,72,76,1436,1427,1425,1439,.626,1
2019,6/12/2019,MIN,NYL,Minnesota Lynx,New York Liberty,0,0,69,75,1527,1390,1514,1403,.581,0
2019,6/12/2019,NYL,MIN,New York Liberty,Minnesota Lynx,0,0,75,69,1390,1527,1403,1514,.419,1
2019,6/11/2019,CON,WAS,Connecticut Sun,Washington Mystics,0,0,83,75,1582,1578,1591,1568,.619,1
2019,6/11/2019,SEA,IND,Seattle Storm,Indiana Fever,0,0,84,82,1585,1432,1590,1427,.603,0
2019,6/11/2019,WAS,CON,Washington Mystics,Connecticut Sun,0,0,75,83,1578,1582,1568,1591,.381,0
2019,6/11/2019,PHO,CHI,Phoenix Mercury,Chicago Sky,0,0,75,82,1544,1461,1532,1473,.505,0
2019,6/11/2019,CHI,PHO,Chicago Sky,Phoenix Mercury,0,0,82,75,1461,1544,1473,1532,.495,1
2019,6/11/2019,IND,SEA,Indiana Fever,Seattle Storm,0,0,82,84,1432,1585,1427,1590,.397,1
2019,6/9/2019,SEA,CHI,Seattle Storm,Chicago Sky,0,0,71,78,1600,1446,1585,1461,.606,0
2019,6/9/2019,CON,ATL,Connecticut Sun,Atlanta Dream,0,0,65,59,1572,1466,1582,1456,.537,0
2019,6/9/2019,WAS,DAL,Washington Mystics,Dallas Wings,0,0,86,62,1567,1447,1578,1436,.759,1
2019,6/9/2019,PHO,IND,Phoenix Mercury,Indiana Fever,0,0,94,87,1533,1444,1544,1432,.513,0
2019,6/9/2019,LVA,NYL,Las Vegas Aces,New York Liberty,0,0,78,88,1504,1373,1487,1390,.574,0
2019,6/9/2019,CHI,SEA,Chicago Sky,Seattle Storm,0,0,78,71,1446,1600,1461,1585,.394,1
2019,6/9/2019,ATL,CON,Atlanta Dream,Connecticut Sun,0,0,59,65,1466,1572,1456,1582,.463,1
2019,6/9/2019,DAL,WAS,Dallas Wings,Washington Mystics,0,0,62,86,1447,1567,1436,1578,.241,0
2019,6/9/2019,IND,PHO,Indiana Fever,Phoenix Mercury,0,0,87,94,1444,1533,1432,1544,.487,1
2019,6/9/2019,NYL,LVA,New York Liberty,Las Vegas Aces,0,0,88,78,1373,1504,1390,1487,.426,1
2019,6/8/2019,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,0,85,89,1540,1508,1527,1521,.655,1
2019,6/8/2019,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,0,89,85,1508,1540,1521,1527,.345,0
2019,6/7/2019,WAS,NYL,Washington Mystics,New York Liberty,0,0,94,85,1557,1382,1567,1373,.634,0
2019,6/7/2019,DAL,IND,Dallas Wings,Indiana Fever,0,0,64,79,1463,1428,1447,1444,.436,0
2019,6/7/2019,IND,DAL,Indiana Fever,Dallas Wings,0,0,79,64,1428,1463,1444,1447,.564,1
2019,6/7/2019,NYL,WAS,New York Liberty,Washington Mystics,0,0,85,94,1382,1557,1373,1567,.366,1
2019,6/6/2019,CON,LAS,Connecticut Sun,Los Angeles Sparks,0,0,89,77,1563,1518,1572,1508,.672,1
2019,6/6/2019,MIN,PHO,Minnesota Lynx,Phoenix Mercury,0,0,58,56,1535,1538,1540,1533,.609,1
2019,6/6/2019,PHO,MIN,Phoenix Mercury,Minnesota Lynx,0,0,56,58,1538,1535,1533,1540,.391,0
2019,6/6/2019,LAS,CON,Los Angeles Sparks,Connecticut Sun,0,0,77,89,1518,1563,1508,1572,.328,0
2019,6/6/2019,LVA,ATL,Las Vegas Aces,Atlanta Dream,0,0,92,69,1468,1503,1504,1466,.340,0
2019,6/6/2019,ATL,LVA,Atlanta Dream,Las Vegas Aces,0,0,69,92,1503,1468,1466,1504,.660,1
2019,6/5/2019,WAS,CHI,Washington Mystics,Chicago Sky,0,0,103,85,1547,1456,1557,1446,.728,1
2019,6/5/2019,CHI,WAS,Chicago Sky,Washington Mystics,0,0,85,103,1456,1547,1446,1557,.272,0
2019,6/4/2019,SEA,MIN,Seattle Storm,Minnesota Lynx,0,0,84,77,1593,1541,1600,1535,.681,1
2019,6/4/2019,MIN,SEA,Minnesota Lynx,Seattle Storm,0,0,77,84,1541,1593,1535,1600,.319,0
2019,6/4/2019,LAS,NYL,Los Angeles Sparks,New York Liberty,0,0,78,73,1509,1391,1518,1382,.556,0
2019,6/4/2019,NYL,LAS,New York Liberty,Los Angeles Sparks,0,0,73,78,1391,1509,1382,1518,.444,1
2019,6/2/2019,CON,LVA,Connecticut Sun,Las Vegas Aces,0,0,80,74,1551,1479,1563,1468,.490,0
2019,6/2/2019,LVA,CON,Las Vegas Aces,Connecticut Sun,0,0,74,80,1479,1551,1468,1563,.510,1
2019,6/1/2019,SEA,CHI,Seattle Storm,Chicago Sky,0,0,79,83,1605,1444,1593,1456,.614,0
2019,6/1/2019,WAS,ATL,Washington Mystics,Atlanta Dream,0,0,96,75,1531,1519,1547,1503,.629,1
2019,6/1/2019,MIN,DAL,Minnesota Lynx,Dallas Wings,0,0,70,67,1533,1472,1541,1463,.473,0
2019,6/1/2019,ATL,WAS,Atlanta Dream,Washington Mystics,0,0,75,96,1519,1531,1503,1547,.371,0
2019,6/1/2019,DAL,MIN,Dallas Wings,Minnesota Lynx,0,0,67,70,1472,1533,1463,1541,.527,1
2019,6/1/2019,CHI,SEA,Chicago Sky,Seattle Storm,0,0,83,79,1444,1605,1456,1593,.386,1
2019,6/1/2019,IND,NYL,Indiana Fever,New York Liberty,0,0,92,77,1415,1404,1428,1391,.628,1
2019,6/1/2019,NYL,IND,New York Liberty,Indiana Fever,0,0,77,92,1404,1415,1391,1428,.372,0
2019,5/31/2019,SEA,ATL,Seattle Storm,Atlanta Dream,0,0,82,66,1582,1542,1605,1519,.443,0
2019,5/31/2019,CON,LAS,Connecticut Sun,Los Angeles Sparks,0,0,70,77,1563,1498,1551,1509,.477,0
2019,5/31/2019,PHO,LVA,Phoenix Mercury,Las Vegas Aces,0,0,86,84,1534,1483,1538,1479,.680,1
2019,5/31/2019,ATL,SEA,Atlanta Dream,Seattle Storm,0,0,66,82,1542,1582,1519,1605,.557,1
2019,5/31/2019,LAS,CON,Los Angeles Sparks,Connecticut Sun,0,0,77,70,1498,1563,1509,1551,.523,1
2019,5/31/2019,LVA,PHO,Las Vegas Aces,Phoenix Mercury,0,0,84,86,1483,1534,1479,1538,.320,0
2019,5/29/2019,SEA,MIN,Seattle Storm,Minnesota Lynx,0,0,61,72,1598,1518,1582,1533,.500,0
2019,5/29/2019,MIN,SEA,Minnesota Lynx,Seattle Storm,0,0,72,61,1518,1598,1533,1582,.500,1
2019,5/28/2019,CON,IND,Connecticut Sun,Indiana Fever,0,0,88,77,1557,1421,1563,1415,.776,1
2019,5/28/2019,IND,CON,Indiana Fever,Connecticut Sun,0,0,77,88,1421,1557,1415,1563,.224,0
2019,5/26/2019,LAS,LVA,Los Angeles Sparks,Las Vegas Aces,0,0,70,83,1513,1467,1498,1483,.451,0
2019,5/26/2019,LVA,LAS,Las Vegas Aces,Los Angeles Sparks,0,0,83,70,1467,1513,1483,1498,.549,1
2019,5/25/2019,SEA,PHO,Seattle Storm,Phoenix Mercury,0,0,77,68,1590,1542,1598,1534,.676,1
2019,5/25/2019,CON,WAS,Connecticut Sun,Washington Mystics,0,0,84,69,1543,1545,1557,1531,.611,1
2019,5/25/2019,PHO,SEA,Phoenix Mercury,Seattle Storm,0,0,68,77,1542,1590,1534,1598,.324,0
2019,5/25/2019,WAS,CON,Washington Mystics,Connecticut Sun,0,0,69,84,1545,1543,1531,1557,.389,0
2019,5/25/2019,MIN,CHI,Minnesota Lynx,Chicago Sky,0,0,89,71,1505,1457,1518,1444,.677,1
2019,5/25/2019,CHI,MIN,Chicago Sky,Minnesota Lynx,0,0,71,89,1457,1505,1444,1518,.323,0
2019,5/24/2019,ATL,DAL,Atlanta Dream,Dallas Wings,0,0,76,72,1537,1476,1542,1472,.692,1
2019,5/24/2019,DAL,ATL,Dallas Wings,Atlanta Dream,0,0,72,76,1476,1537,1472,1542,.308,0
2019,5/24/2019,IND,NYL,Indiana Fever,New York Liberty,0,0,81,80,1413,1411,1421,1404,.390,0
2019,5/24/2019,NYL,IND,New York Liberty,Indiana Fever,0,0,80,81,1411,1413,1404,1421,.610,1
2018,9/12/2018,SEA,WAS,Seattle Storm,Washington Mystics,0,1,98,82,1657,1612,1680,1589,.437,0
2018,9/12/2018,WAS,SEA,Washington Mystics,Seattle Storm,0,1,82,98,1612,1657,1589,1680,.563,1
2018,9/9/2018,SEA,WAS,Seattle Storm,Washington Mystics,0,1,75,73,1653,1616,1657,1612,.699,1
2018,9/9/2018,WAS,SEA,Washington Mystics,Seattle Storm,0,1,73,75,1616,1653,1612,1657,.301,0
2018,9/7/2018,SEA,WAS,Seattle Storm,Washington Mystics,0,1,89,76,1643,1626,1653,1616,.667,1
2018,9/7/2018,WAS,SEA,Washington Mystics,Seattle Storm,0,1,76,89,1626,1643,1616,1653,.333,0
2018,9/4/2018,SEA,PHO,Seattle Storm,Phoenix Mercury,0,1,94,84,1635,1591,1643,1584,.709,1
2018,9/4/2018,WAS,ATL,Washington Mystics,Atlanta Dream,0,1,86,81,1614,1587,1626,1574,.406,0
2018,9/4/2018,PHO,SEA,Phoenix Mercury,Seattle Storm,0,1,84,94,1591,1635,1584,1643,.291,0
2018,9/4/2018,ATL,WAS,Atlanta Dream,Washington Mystics,0,1,81,86,1587,1614,1574,1626,.594,1
2018,9/2/2018,SEA,PHO,Seattle Storm,Phoenix Mercury,0,1,84,86,1641,1585,1635,1591,.457,0
2018,9/2/2018,WAS,ATL,Washington Mystics,Atlanta Dream,0,1,97,76,1598,1603,1614,1587,.632,1
2018,9/2/2018,PHO,SEA,Phoenix Mercury,Seattle Storm,0,1,86,84,1585,1641,1591,1635,.543,1
2018,9/2/2018,ATL,WAS,Atlanta Dream,Washington Mystics,0,1,76,97,1603,1598,1587,1614,.368,0
2018,8/31/2018,SEA,PHO,Seattle Storm,Phoenix Mercury,0,1,66,86,1667,1559,1641,1585,.550,0
2018,8/31/2018,ATL,WAS,Atlanta Dream,Washington Mystics,0,1,81,76,1588,1613,1603,1598,.320,0
2018,8/31/2018,WAS,ATL,Washington Mystics,Atlanta Dream,0,1,76,81,1613,1588,1598,1603,.680,1
2018,8/31/2018,PHO,SEA,Phoenix Mercury,Seattle Storm,0,1,86,66,1559,1667,1585,1641,.450,1
2018,8/28/2018,SEA,PHO,Seattle Storm,Phoenix Mercury,0,1,91,87,1664,1562,1667,1559,.787,1
2018,8/28/2018,WAS,ATL,Washington Mystics,Atlanta Dream,0,1,75,78,1619,1581,1613,1588,.424,0
2018,8/28/2018,ATL,WAS,Atlanta Dream,Washington Mystics,0,1,78,75,1581,1619,1588,1613,.576,1
2018,8/28/2018,PHO,SEA,Phoenix Mercury,Seattle Storm,0,1,87,91,1562,1664,1559,1667,.213,0
2018,8/26/2018,SEA,PHO,Seattle Storm,Phoenix Mercury,0,1,91,87,1661,1566,1664,1562,.779,1
2018,8/26/2018,WAS,ATL,Washington Mystics,Atlanta Dream,0,1,87,84,1609,1592,1619,1581,.389,0
2018,8/26/2018,ATL,WAS,Atlanta Dream,Washington Mystics,0,1,84,87,1592,1609,1581,1619,.611,1
2018,8/26/2018,PHO,SEA,Phoenix Mercury,Seattle Storm,0,1,87,91,1566,1661,1562,1664,.221,0
2018,8/23/2018,WAS,LAS,Washington Mystics,Los Angeles Sparks,0,1,96,64,1593,1543,1609,1527,.718,1
2018,8/23/2018,CON,PHO,Connecticut Sun,Phoenix Mercury,0,1,86,96,1611,1540,1586,1566,.748,1
2018,8/23/2018,PHO,CON,Phoenix Mercury,Connecticut Sun,0,1,96,86,1540,1611,1566,1586,.252,0
2018,8/23/2018,LAS,WAS,Los Angeles Sparks,Washington Mystics,0,1,64,96,1543,1593,1527,1609,.282,0
2018,8/21/2018,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,1,75,68,1536,1517,1543,1510,.670,1
2018,8/21/2018,PHO,DAL,Phoenix Mercury,Dallas Wings,0,1,101,83,1531,1462,1540,1453,.744,1
2018,8/21/2018,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,1,68,75,1517,1536,1510,1543,.330,0
2018,8/21/2018,DAL,PHO,Dallas Wings,Phoenix Mercury,0,1,83,101,1462,1531,1453,1540,.256,0
2018,8/19/2018,SEA,DAL,Seattle Storm,Dallas Wings,0,0,84,68,1655,1468,1661,1462,.823,1
2018,8/19/2018,CON,LAS,Connecticut Sun,Los Angeles Sparks,0,0,89,86,1607,1540,1611,1536,.700,1
2018,8/19/2018,WAS,MIN,Washington Mystics,Minnesota Lynx,0,0,83,88,1603,1507,1593,1517,.523,0
2018,8/19/2018,ATL,LVA,Atlanta Dream,Las Vegas Aces,0,0,93,78,1576,1451,1592,1435,.564,0
2018,8/19/2018,LAS,CON,Los Angeles Sparks,Connecticut Sun,0,0,86,89,1540,1607,1536,1611,.300,0
2018,8/19/2018,PHO,NYL,Phoenix Mercury,New York Liberty,0,0,96,85,1526,1326,1531,1322,.834,1
2018,8/19/2018,MIN,WAS,Minnesota Lynx,Washington Mystics,0,0,88,83,1507,1603,1517,1593,.477,1
2018,8/19/2018,DAL,SEA,Dallas Wings,Seattle Storm,0,0,68,84,1468,1655,1462,1661,.177,0
2018,8/19/2018,LVA,ATL,Las Vegas Aces,Atlanta Dream,0,0,78,93,1451,1576,1435,1592,.436,1
2018,8/19/2018,CHI,IND,Chicago Sky,Indiana Fever,0,0,92,97,1432,1309,1414,1327,.762,1
2018,8/19/2018,IND,CHI,Indiana Fever,Chicago Sky,0,0,97,92,1309,1432,1327,1414,.238,0
2018,8/19/2018,NYL,PHO,New York Liberty,Phoenix Mercury,0,0,85,96,1326,1526,1322,1531,.166,0
2018,8/18/2018,CHI,IND,Chicago Sky,Indiana Fever,0,0,115,106,1419,1322,1432,1309,.524,0
2018,8/18/2018,IND,CHI,Indiana Fever,Chicago Sky,0,0,106,115,1322,1419,1309,1432,.476,1
2018,8/17/2018,SEA,NYL,Seattle Storm,New York Liberty,0,0,85,77,1653,1328,1655,1326,.912,1
2018,8/17/2018,CON,MIN,Connecticut Sun,Minnesota Lynx,0,0,96,79,1597,1517,1607,1507,.714,1
2018,8/17/2018,WAS,LAS,Washington Mystics,Los Angeles Sparks,0,0,69,67,1599,1544,1603,1540,.686,1
2018,8/17/2018,ATL,PHO,Atlanta Dream,Phoenix Mercury,0,0,95,104,1589,1513,1576,1526,.495,0
2018,8/17/2018,LAS,WAS,Los Angeles Sparks,Washington Mystics,0,0,67,69,1544,1599,1540,1603,.314,0
2018,8/17/2018,PHO,ATL,Phoenix Mercury,Atlanta Dream,0,0,104,95,1513,1589,1526,1576,.505,1
2018,8/17/2018,MIN,CON,Minnesota Lynx,Connecticut Sun,0,0,79,96,1517,1597,1507,1607,.286,0
2018,8/17/2018,DAL,LVA,Dallas Wings,Las Vegas Aces,0,0,107,102,1461,1458,1468,1451,.618,1
2018,8/17/2018,LVA,DAL,Las Vegas Aces,Dallas Wings,0,0,102,107,1458,1461,1451,1468,.382,0
2018,8/17/2018,NYL,SEA,New York Liberty,Seattle Storm,0,0,77,85,1328,1653,1326,1655,.088,0
2018,8/15/2018,WAS,IND,Washington Mystics,Indiana Fever,0,0,76,62,1591,1330,1599,1322,.740,0
2018,8/15/2018,LVA,NYL,Las Vegas Aces,New York Liberty,0,0,85,72,1451,1335,1458,1328,.755,1
2018,8/15/2018,NYL,LVA,New York Liberty,Las Vegas Aces,0,0,72,85,1335,1451,1328,1458,.245,0
2018,8/15/2018,IND,WAS,Indiana Fever,Washington Mystics,0,0,62,76,1330,1591,1322,1599,.260,1
2018,8/14/2018,CON,DAL,Connecticut Sun,Dallas Wings,0,0,96,76,1587,1471,1597,1461,.756,1
2018,8/14/2018,LAS,NYL,Los Angeles Sparks,New York Liberty,0,0,74,66,1540,1339,1544,1335,.835,1
2018,8/14/2018,MIN,CHI,Minnesota Lynx,Chicago Sky,0,0,88,91,1532,1404,1517,1419,.767,1
2018,8/14/2018,DAL,CON,Dallas Wings,Connecticut Sun,0,0,76,96,1471,1587,1461,1597,.244,0
2018,8/14/2018,CHI,MIN,Chicago Sky,Minnesota Lynx,0,0,91,88,1404,1532,1419,1517,.233,0
2018,8/14/2018,NYL,LAS,New York Liberty,Los Angeles Sparks,0,0,66,74,1339,1540,1335,1544,.165,0
2018,8/12/2018,SEA,MIN,Seattle Storm,Minnesota Lynx,0,0,81,72,1640,1545,1653,1532,.523,0
2018,8/12/2018,WAS,DAL,Washington Mystics,Dallas Wings,0,0,93,80,1584,1478,1591,1471,.744,1
2018,8/12/2018,ATL,NYL,Atlanta Dream,New York Liberty,0,0,86,77,1582,1346,1589,1339,.711,0
2018,8/12/2018,CON,CHI,Connecticut Sun,Chicago Sky,0,0,82,75,1583,1408,1587,1404,.813,1
2018,8/12/2018,LAS,PHO,Los Angeles Sparks,Phoenix Mercury,0,0,78,86,1552,1502,1540,1513,.457,0
2018,8/12/2018,MIN,SEA,Minnesota Lynx,Seattle Storm,0,0,72,81,1545,1640,1532,1653,.477,1
2018,8/12/2018,PHO,LAS,Phoenix Mercury,Los Angeles Sparks,0,0,86,78,1502,1552,1513,1540,.543,1
2018,8/12/2018,DAL,WAS,Dallas Wings,Washington Mystics,0,0,80,93,1478,1584,1471,1591,.256,0
2018,8/12/2018,CHI,CON,Chicago Sky,Connecticut Sun,0,0,75,82,1408,1583,1404,1587,.187,0
2018,8/12/2018,NYL,ATL,New York Liberty,Atlanta Dream,0,0,77,86,1346,1582,1339,1589,.289,1
2018,8/11/2018,ATL,DAL,Atlanta Dream,Dallas Wings,0,0,92,82,1575,1485,1582,1478,.727,1
2018,8/11/2018,DAL,ATL,Dallas Wings,Atlanta Dream,0,0,82,92,1485,1575,1478,1582,.273,0
2018,8/11/2018,LVA,IND,Las Vegas Aces,Indiana Fever,0,0,92,74,1441,1340,1451,1330,.739,1
2018,8/11/2018,IND,LVA,Indiana Fever,Las Vegas Aces,0,0,74,92,1340,1441,1330,1451,.261,0
2018,8/10/2018,CON,CHI,Connecticut Sun,Chicago Sky,0,0,86,97,1608,1384,1583,1408,.696,0
2018,8/10/2018,PHO,IND,Phoenix Mercury,Indiana Fever,0,0,94,74,1493,1348,1502,1340,.785,1
2018,8/10/2018,CHI,CON,Chicago Sky,Connecticut Sun,0,0,97,86,1384,1608,1408,1583,.304,1
2018,8/10/2018,IND,PHO,Indiana Fever,Phoenix Mercury,0,0,74,94,1348,1493,1340,1502,.215,0
2018,8/9/2018,SEA,WAS,Seattle Storm,Washington Mystics,0,0,77,100,1669,1555,1640,1584,.549,0
2018,8/9/2018,WAS,SEA,Washington Mystics,Seattle Storm,0,0,100,77,1555,1669,1584,1640,.451,1
2018,8/9/2018,ATL,LAS,Atlanta Dream,Los Angeles Sparks,0,0,79,73,1568,1559,1575,1552,.625,1
2018,8/9/2018,LAS,ATL,Los Angeles Sparks,Atlanta Dream,0,0,73,79,1559,1568,1552,1575,.375,0
2018,8/9/2018,MIN,LVA,Minnesota Lynx,Las Vegas Aces,0,0,89,73,1524,1462,1545,1441,.474,0
2018,8/9/2018,LVA,MIN,Las Vegas Aces,Minnesota Lynx,0,0,73,89,1462,1524,1441,1545,.526,1
2018,8/8/2018,CON,DAL,Connecticut Sun,Dallas Wings,0,0,101,92,1595,1498,1608,1485,.524,0
2018,8/8/2018,LAS,NYL,Los Angeles Sparks,New York Liberty,0,0,82,81,1556,1349,1559,1346,.675,0
2018,8/8/2018,DAL,CON,Dallas Wings,Connecticut Sun,0,0,92,101,1498,1595,1485,1608,.476,1
2018,8/8/2018,NYL,LAS,New York Liberty,Los Angeles Sparks,0,0,81,82,1349,1556,1346,1559,.325,1
2018,8/7/2018,SEA,IND,Seattle Storm,Indiana Fever,0,0,94,79,1662,1355,1669,1348,.787,0
2018,8/7/2018,ATL,LVA,Atlanta Dream,Las Vegas Aces,0,0,109,100,1561,1468,1568,1462,.730,1
2018,8/7/2018,WAS,PHO,Washington Mystics,Phoenix Mercury,0,0,103,98,1544,1505,1555,1493,.441,0
2018,8/7/2018,MIN,CHI,Minnesota Lynx,Chicago Sky,0,0,85,64,1501,1406,1524,1384,.522,0
2018,8/7/2018,PHO,WAS,Phoenix Mercury,Washington Mystics,0,0,98,103,1505,1544,1493,1555,.559,1
2018,8/7/2018,LVA,ATL,Las Vegas Aces,Atlanta Dream,0,0,100,109,1468,1561,1462,1568,.270,0
2018,8/7/2018,CHI,MIN,Chicago Sky,Minnesota Lynx,0,0,64,85,1406,1501,1384,1524,.478,1
2018,8/7/2018,IND,SEA,Indiana Fever,Seattle Storm,0,0,79,94,1355,1662,1348,1669,.213,1
2018,8/6/2018,SEA,NYL,Seattle Storm,New York Liberty,0,0,96,80,1655,1356,1662,1349,.779,0
2018,8/6/2018,NYL,SEA,New York Liberty,Seattle Storm,0,0,80,96,1356,1655,1349,1662,.221,1
2018,8/5/2018,CON,LVA,Connecticut Sun,Las Vegas Aces,0,0,109,88,1584,1479,1595,1468,.744,1
2018,8/5/2018,ATL,MIN,Atlanta Dream,Minnesota Lynx,0,0,86,66,1531,1531,1561,1501,.387,0
2018,8/5/2018,LAS,PHO,Los Angeles Sparks,Phoenix Mercury,0,0,78,75,1551,1509,1556,1505,.668,1
2018,8/5/2018,WAS,DAL,Washington Mystics,Dallas Wings,0,0,76,74,1536,1506,1544,1498,.427,0
2018,8/5/2018,PHO,LAS,Phoenix Mercury,Los Angeles Sparks,0,0,75,78,1509,1551,1505,1556,.332,0
2018,8/5/2018,MIN,ATL,Minnesota Lynx,Atlanta Dream,0,0,66,86,1531,1531,1501,1561,.613,1
2018,8/5/2018,DAL,WAS,Dallas Wings,Washington Mystics,0,0,74,76,1506,1536,1498,1544,.573,1
2018,8/5/2018,LVA,CON,Las Vegas Aces,Connecticut Sun,0,0,88,109,1479,1584,1468,1595,.256,0
2018,8/4/2018,NYL,IND,New York Liberty,Indiana Fever,0,0,55,68,1383,1329,1356,1355,.684,1
2018,8/4/2018,IND,NYL,Indiana Fever,New York Liberty,0,0,68,55,1329,1383,1355,1356,.316,0
2018,8/3/2018,SEA,MIN,Seattle Storm,Minnesota Lynx,0,0,85,75,1648,1537,1655,1531,.750,1
2018,8/3/2018,WAS,LVA,Washington Mystics,Las Vegas Aces,0,0,1,0,1532,1482,1536,1479,.679,1
2018,8/3/2018,ATL,CHI,Atlanta Dream,Chicago Sky,0,0,89,74,1523,1414,1531,1406,.747,1
2018,8/3/2018,MIN,SEA,Minnesota Lynx,Seattle Storm,0,0,75,85,1537,1648,1531,1655,.250,0
2018,8/3/2018,LVA,WAS,Las Vegas Aces,Washington Mystics,0,0,0,1,1482,1532,1479,1536,.321,0
2018,8/3/2018,CHI,ATL,Chicago Sky,Atlanta Dream,0,0,74,89,1414,1523,1406,1531,.253,0
2018,8/2/2018,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,0,79,57,1531,1557,1551,1537,.577,1
2018,8/2/2018,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,0,57,79,1557,1531,1537,1551,.423,0
2018,8/2/2018,DAL,IND,Dallas Wings,Indiana Fever,0,0,78,84,1523,1312,1506,1329,.680,0
2018,8/2/2018,IND,DAL,Indiana Fever,Dallas Wings,0,0,84,78,1312,1523,1329,1506,.320,1
2018,8/1/2018,CON,NYL,Connecticut Sun,New York Liberty,0,0,92,77,1579,1388,1584,1383,.826,1
2018,8/1/2018,PHO,LVA,Phoenix Mercury,Las Vegas Aces,0,0,104,93,1488,1503,1509,1482,.366,0
2018,8/1/2018,LVA,PHO,Las Vegas Aces,Phoenix Mercury,0,0,93,104,1503,1488,1482,1509,.634,1
2018,8/1/2018,NYL,CON,New York Liberty,Connecticut Sun,0,0,77,92,1388,1579,1383,1584,.174,0
2018,7/31/2018,SEA,PHO,Seattle Storm,Phoenix Mercury,0,0,102,91,1636,1501,1648,1488,.579,0
2018,7/31/2018,WAS,ATL,Washington Mystics,Atlanta Dream,0,0,86,71,1504,1551,1532,1523,.325,0
2018,7/31/2018,ATL,WAS,Atlanta Dream,Washington Mystics,0,0,71,86,1551,1504,1523,1532,.675,1
2018,7/31/2018,DAL,CHI,Dallas Wings,Chicago Sky,0,0,91,92,1533,1404,1523,1414,.769,1
2018,7/31/2018,PHO,SEA,Phoenix Mercury,Seattle Storm,0,0,91,102,1501,1636,1488,1648,.421,1
2018,7/31/2018,CHI,DAL,Chicago Sky,Dallas Wings,0,0,92,91,1404,1533,1414,1523,.231,0
2018,7/25/2018,PHO,CHI,Phoenix Mercury,Chicago Sky,0,0,87,101,1537,1368,1501,1404,.808,1
2018,7/25/2018,CHI,PHO,Chicago Sky,Phoenix Mercury,0,0,101,87,1368,1537,1404,1501,.192,0
2018,7/24/2018,SEA,IND,Seattle Storm,Indiana Fever,0,0,92,72,1628,1320,1636,1312,.787,0
2018,7/24/2018,CON,WAS,Connecticut Sun,Washington Mystics,0,0,94,68,1562,1521,1579,1504,.668,1
2018,7/24/2018,MIN,NYL,Minnesota Lynx,New York Liberty,0,0,85,82,1555,1391,1557,1388,.803,1
2018,7/24/2018,ATL,LAS,Atlanta Dream,Los Angeles Sparks,0,0,81,71,1531,1551,1551,1531,.359,0
2018,7/24/2018,LAS,ATL,Los Angeles Sparks,Atlanta Dream,0,0,71,81,1551,1531,1531,1551,.641,1
2018,7/24/2018,WAS,CON,Washington Mystics,Connecticut Sun,0,0,68,94,1521,1562,1504,1579,.332,0
2018,7/24/2018,NYL,MIN,New York Liberty,Minnesota Lynx,0,0,82,85,1391,1555,1388,1557,.197,0
2018,7/24/2018,IND,SEA,Indiana Fever,Seattle Storm,0,0,72,92,1320,1628,1312,1636,.213,1
2018,7/22/2018,SEA,ATL,Seattle Storm,Atlanta Dream,0,0,74,87,1649,1510,1628,1531,.584,0
2018,7/22/2018,CON,DAL,Connecticut Sun,Dallas Wings,0,0,92,75,1533,1563,1562,1533,.347,0
2018,7/22/2018,LAS,CHI,Los Angeles Sparks,Chicago Sky,0,0,93,76,1536,1383,1551,1368,.604,0
2018,7/22/2018,DAL,CON,Dallas Wings,Connecticut Sun,0,0,75,92,1563,1533,1533,1562,.653,1
2018,7/22/2018,ATL,SEA,Atlanta Dream,Seattle Storm,0,0,87,74,1510,1649,1531,1628,.416,1
2018,7/22/2018,LVA,IND,Las Vegas Aces,Indiana Fever,0,0,88,74,1498,1326,1503,1320,.810,1
2018,7/22/2018,CHI,LAS,Chicago Sky,Los Angeles Sparks,0,0,76,93,1383,1536,1368,1551,.396,1
2018,7/22/2018,IND,LVA,Indiana Fever,Las Vegas Aces,0,0,74,88,1326,1498,1320,1503,.190,0
2018,7/21/2018,MIN,PHO,Minnesota Lynx,Phoenix Mercury,0,0,80,75,1542,1550,1555,1537,.375,0
2018,7/21/2018,PHO,MIN,Phoenix Mercury,Minnesota Lynx,0,0,75,80,1550,1542,1537,1555,.625,1
2018,7/21/2018,WAS,NYL,Washington Mystics,New York Liberty,0,0,95,78,1501,1410,1521,1391,.515,0
2018,7/21/2018,NYL,WAS,New York Liberty,Washington Mystics,0,0,78,95,1410,1501,1391,1521,.485,1
2018,7/20/2018,SEA,CON,Seattle Storm,Connecticut Sun,0,0,78,65,1632,1550,1649,1533,.503,0
2018,7/20/2018,DAL,CHI,Dallas Wings,Chicago Sky,0,0,99,114,1594,1352,1563,1383,.717,0
2018,7/20/2018,LAS,IND,Los Angeles Sparks,Indiana Fever,0,0,76,78,1552,1310,1536,1326,.864,1
2018,7/20/2018,CON,SEA,Connecticut Sun,Seattle Storm,0,0,65,78,1550,1632,1533,1649,.497,1
2018,7/20/2018,CHI,DAL,Chicago Sky,Dallas Wings,0,0,114,99,1352,1594,1383,1563,.283,1
2018,7/20/2018,IND,LAS,Indiana Fever,Los Angeles Sparks,0,0,78,76,1310,1552,1326,1536,.136,0
2018,7/19/2018,DAL,WAS,Dallas Wings,Washington Mystics,0,0,90,81,1587,1508,1594,1501,.714,1
2018,7/19/2018,PHO,LVA,Phoenix Mercury,Las Vegas Aces,0,0,82,85,1563,1485,1550,1498,.713,1
2018,7/19/2018,ATL,NYL,Atlanta Dream,New York Liberty,0,0,82,68,1501,1419,1510,1410,.717,1
2018,7/19/2018,WAS,DAL,Washington Mystics,Dallas Wings,0,0,81,90,1508,1587,1501,1594,.286,0
2018,7/19/2018,LVA,PHO,Las Vegas Aces,Phoenix Mercury,0,0,85,82,1485,1563,1498,1550,.287,0
2018,7/19/2018,NYL,ATL,New York Liberty,Atlanta Dream,0,0,68,82,1419,1501,1410,1510,.283,0
2018,7/18/2018,SEA,CHI,Seattle Storm,Chicago Sky,0,0,101,83,1622,1362,1632,1352,.738,0
2018,7/18/2018,MIN,IND,Minnesota Lynx,Indiana Fever,0,0,89,65,1535,1317,1542,1310,.848,1
2018,7/18/2018,CHI,SEA,Chicago Sky,Seattle Storm,0,0,83,101,1362,1622,1352,1632,.262,1
2018,7/18/2018,IND,MIN,Indiana Fever,Minnesota Lynx,0,0,65,89,1317,1535,1310,1542,.152,0
2018,7/17/2018,DAL,NYL,Dallas Wings,New York Liberty,0,0,104,87,1580,1426,1587,1419,.793,1
2018,7/17/2018,CON,ATL,Connecticut Sun,Atlanta Dream,0,0,83,86,1562,1488,1550,1501,.708,1
2018,7/17/2018,ATL,CON,Atlanta Dream,Connecticut Sun,0,0,86,83,1488,1562,1501,1550,.292,0
2018,7/17/2018,NYL,DAL,New York Liberty,Dallas Wings,0,0,87,104,1426,1580,1419,1587,.207,0
2018,7/15/2018,PHO,IND,Phoenix Mercury,Indiana Fever,0,0,101,82,1551,1329,1563,1317,.694,0
2018,7/15/2018,CON,MIN,Connecticut Sun,Minnesota Lynx,0,0,83,64,1530,1567,1562,1535,.337,0
2018,7/15/2018,LAS,LVA,Los Angeles Sparks,Las Vegas Aces,0,0,99,78,1521,1515,1552,1485,.395,0
2018,7/15/2018,MIN,CON,Minnesota Lynx,Connecticut Sun,0,0,64,83,1567,1530,1535,1562,.663,1
2018,7/15/2018,WAS,ATL,Washington Mystics,Atlanta Dream,0,0,77,80,1514,1482,1508,1488,.432,0
2018,7/15/2018,ATL,WAS,Atlanta Dream,Washington Mystics,0,0,80,77,1482,1514,1488,1508,.568,1
2018,7/15/2018,LVA,LAS,Las Vegas Aces,Los Angeles Sparks,0,0,78,99,1515,1521,1485,1552,.605,1
2018,7/15/2018,NYL,CHI,New York Liberty,Chicago Sky,0,0,107,84,1411,1378,1426,1362,.657,1
2018,7/15/2018,CHI,NYL,Chicago Sky,New York Liberty,0,0,84,107,1378,1411,1362,1426,.343,0
2018,7/15/2018,IND,PHO,Indiana Fever,Phoenix Mercury,0,0,82,101,1329,1551,1317,1563,.306,1
2018,7/14/2018,SEA,DAL,Seattle Storm,Dallas Wings,0,0,91,84,1614,1587,1622,1580,.649,1
2018,7/14/2018,DAL,SEA,Dallas Wings,Seattle Storm,0,0,84,91,1587,1614,1580,1622,.351,0
2018,7/13/2018,MIN,LVA,Minnesota Lynx,Las Vegas Aces,0,0,77,85,1589,1494,1567,1515,.733,1
2018,7/13/2018,PHO,CON,Phoenix Mercury,Connecticut Sun,0,0,87,91,1558,1522,1551,1530,.437,0
2018,7/13/2018,CON,PHO,Connecticut Sun,Phoenix Mercury,0,0,91,87,1522,1558,1530,1551,.563,1
2018,7/13/2018,LVA,MIN,Las Vegas Aces,Minnesota Lynx,0,0,85,77,1494,1589,1515,1567,.267,0
2018,7/13/2018,WAS,CHI,Washington Mystics,Chicago Sky,0,0,88,72,1506,1386,1514,1378,.760,1
2018,7/13/2018,ATL,IND,Atlanta Dream,Indiana Fever,0,0,98,74,1472,1339,1482,1329,.773,1
2018,7/13/2018,CHI,WAS,Chicago Sky,Washington Mystics,0,0,72,88,1386,1506,1378,1514,.240,0
2018,7/13/2018,IND,ATL,Indiana Fever,Atlanta Dream,0,0,74,98,1339,1472,1329,1482,.227,0
2018,7/12/2018,DAL,LAS,Dallas Wings,Los Angeles Sparks,0,0,92,77,1564,1544,1587,1521,.414,0
2018,7/12/2018,LAS,DAL,Los Angeles Sparks,Dallas Wings,0,0,77,92,1544,1564,1521,1587,.586,1
2018,7/11/2018,MIN,IND,Minnesota Lynx,Indiana Fever,0,0,87,65,1576,1352,1589,1339,.695,0
2018,7/11/2018,CON,NYL,Connecticut Sun,New York Liberty,0,0,76,79,1537,1396,1522,1411,.782,1
2018,7/11/2018,WAS,ATL,Washington Mystics,Atlanta Dream,0,0,89,106,1542,1436,1506,1472,.745,1
2018,7/11/2018,ATL,WAS,Atlanta Dream,Washington Mystics,0,0,106,89,1436,1542,1472,1506,.255,0
2018,7/11/2018,NYL,CON,New York Liberty,Connecticut Sun,0,0,79,76,1396,1537,1411,1522,.218,0
2018,7/11/2018,IND,MIN,Indiana Fever,Minnesota Lynx,0,0,65,87,1352,1576,1339,1589,.305,1
2018,7/10/2018,SEA,LAS,Seattle Storm,Los Angeles Sparks,0,0,75,77,1626,1533,1614,1544,.730,1
2018,7/10/2018,DAL,PHO,Dallas Wings,Phoenix Mercury,0,0,101,72,1538,1585,1564,1558,.547,1
2018,7/10/2018,PHO,DAL,Phoenix Mercury,Dallas Wings,0,0,72,101,1585,1538,1558,1564,.453,0
2018,7/10/2018,LAS,SEA,Los Angeles Sparks,Seattle Storm,0,0,77,75,1533,1626,1544,1614,.270,0
2018,7/10/2018,LVA,CHI,Las Vegas Aces,Chicago Sky,0,0,98,74,1465,1415,1494,1386,.457,0
2018,7/10/2018,CHI,LVA,Chicago Sky,Las Vegas Aces,0,0,74,98,1415,1465,1386,1494,.543,1
2018,7/8/2018,SEA,WAS,Seattle Storm,Washington Mystics,0,0,97,91,1620,1548,1626,1542,.706,1
2018,7/8/2018,PHO,ATL,Phoenix Mercury,Atlanta Dream,0,0,70,76,1600,1421,1585,1436,.639,0
2018,7/8/2018,WAS,SEA,Washington Mystics,Seattle Storm,0,0,91,97,1548,1620,1542,1626,.294,0
2018,7/8/2018,DAL,NYL,Dallas Wings,New York Liberty,0,0,97,87,1525,1408,1538,1396,.553,0
2018,7/8/2018,ATL,PHO,Atlanta Dream,Phoenix Mercury,0,0,76,70,1421,1600,1436,1585,.361,1
2018,7/8/2018,NYL,DAL,New York Liberty,Dallas Wings,0,0,87,97,1408,1525,1396,1538,.447,1
2018,7/7/2018,MIN,CHI,Minnesota Lynx,Chicago Sky,0,0,63,77,1604,1387,1576,1415,.687,0
2018,7/7/2018,WAS,LAS,Washington Mystics,Los Angeles Sparks,0,0,83,74,1529,1552,1548,1533,.355,0
2018,7/7/2018,CON,LVA,Connecticut Sun,Las Vegas Aces,0,0,90,94,1547,1456,1537,1465,.516,0
2018,7/7/2018,LAS,WAS,Los Angeles Sparks,Washington Mystics,0,0,74,83,1552,1529,1533,1548,.645,1
2018,7/7/2018,LVA,CON,Las Vegas Aces,Connecticut Sun,0,0,94,90,1456,1547,1465,1537,.484,1
2018,7/7/2018,CHI,MIN,Chicago Sky,Minnesota Lynx,0,0,77,63,1387,1604,1415,1576,.313,1
2018,7/6/2018,SEA,ATL,Seattle Storm,Atlanta Dream,0,0,95,86,1611,1430,1620,1421,.642,0
2018,7/6/2018,ATL,SEA,Atlanta Dream,Seattle Storm,0,0,86,95,1430,1611,1421,1620,.358,1
2018,7/5/2018,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,0,83,72,1594,1562,1604,1552,.656,1
2018,7/5/2018,PHO,CON,Phoenix Mercury,Connecticut Sun,0,0,84,77,1593,1554,1600,1547,.665,1
2018,7/5/2018,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,0,72,83,1562,1594,1552,1604,.344,0
2018,7/5/2018,CON,PHO,Connecticut Sun,Phoenix Mercury,0,0,77,84,1554,1593,1547,1600,.335,0
2018,7/5/2018,WAS,NYL,Washington Mystics,New York Liberty,0,0,86,67,1519,1418,1529,1408,.738,1
2018,7/5/2018,DAL,IND,Dallas Wings,Indiana Fever,0,0,90,63,1515,1362,1525,1352,.792,1
2018,7/5/2018,LVA,CHI,Las Vegas Aces,Chicago Sky,0,0,84,80,1451,1392,1456,1387,.690,1
2018,7/5/2018,NYL,WAS,New York Liberty,Washington Mystics,0,0,67,86,1418,1519,1408,1529,.262,0
2018,7/5/2018,CHI,LVA,Chicago Sky,Las Vegas Aces,0,0,80,84,1392,1451,1387,1456,.310,0
2018,7/5/2018,IND,DAL,Indiana Fever,Dallas Wings,0,0,63,90,1362,1515,1352,1525,.208,0
2018,7/3/2018,SEA,NYL,Seattle Storm,New York Liberty,0,0,77,62,1598,1432,1611,1418,.621,0
2018,7/3/2018,MIN,IND,Minnesota Lynx,Indiana Fever,0,0,59,71,1637,1319,1594,1362,.908,1
2018,7/3/2018,LAS,CON,Los Angeles Sparks,Connecticut Sun,0,0,72,73,1570,1546,1562,1554,.646,1
2018,7/3/2018,CON,LAS,Connecticut Sun,Los Angeles Sparks,0,0,73,72,1546,1570,1554,1562,.354,0
2018,7/3/2018,DAL,CHI,Dallas Wings,Chicago Sky,0,0,108,85,1503,1403,1515,1392,.738,1
2018,7/3/2018,NYL,SEA,New York Liberty,Seattle Storm,0,0,62,77,1432,1598,1418,1611,.379,1
2018,7/3/2018,CHI,DAL,Chicago Sky,Dallas Wings,0,0,85,108,1403,1503,1392,1515,.262,0
2018,7/3/2018,IND,MIN,Indiana Fever,Minnesota Lynx,0,0,71,59,1319,1637,1362,1594,.092,0
2018,7/1/2018,MIN,DAL,Minnesota Lynx,Dallas Wings,0,0,76,72,1630,1511,1637,1503,.555,0
2018,7/1/2018,SEA,CON,Seattle Storm,Connecticut Sun,0,0,84,70,1586,1557,1598,1546,.652,1
2018,7/1/2018,LAS,LVA,Los Angeles Sparks,Las Vegas Aces,0,0,87,71,1561,1460,1570,1451,.740,1
2018,7/1/2018,CON,SEA,Connecticut Sun,Seattle Storm,0,0,70,84,1557,1586,1546,1598,.348,0
2018,7/1/2018,DAL,MIN,Dallas Wings,Minnesota Lynx,0,0,72,76,1511,1630,1503,1637,.445,1
2018,7/1/2018,LVA,LAS,Las Vegas Aces,Los Angeles Sparks,0,0,71,87,1460,1561,1451,1570,.260,0
2018,7/1/2018,NYL,CHI,New York Liberty,Chicago Sky,0,0,97,94,1422,1413,1432,1403,.398,0
2018,7/1/2018,ATL,IND,Atlanta Dream,Indiana Fever,0,0,87,83,1421,1327,1430,1319,.520,0
2018,7/1/2018,CHI,NYL,Chicago Sky,New York Liberty,0,0,94,97,1413,1422,1403,1432,.602,1
2018,7/1/2018,IND,ATL,Indiana Fever,Atlanta Dream,0,0,83,87,1327,1421,1319,1430,.480,1
2018,6/30/2018,PHO,WAS,Phoenix Mercury,Washington Mystics,0,0,84,74,1576,1535,1593,1519,.444,0
2018,6/30/2018,WAS,PHO,Washington Mystics,Phoenix Mercury,0,0,74,84,1535,1576,1519,1593,.556,1
2018,6/29/2018,MIN,ATL,Minnesota Lynx,Atlanta Dream,0,0,85,74,1625,1426,1630,1421,.833,1
2018,6/29/2018,PHO,IND,Phoenix Mercury,Indiana Fever,0,0,95,77,1564,1339,1576,1327,.698,0
2018,6/29/2018,LAS,LVA,Los Angeles Sparks,Las Vegas Aces,0,0,78,94,1586,1434,1561,1460,.602,0
2018,6/29/2018,LVA,LAS,Las Vegas Aces,Los Angeles Sparks,0,0,94,78,1434,1586,1460,1561,.398,1
2018,6/29/2018,NYL,CHI,New York Liberty,Chicago Sky,0,0,99,103,1435,1401,1422,1413,.658,1
2018,6/29/2018,ATL,MIN,Atlanta Dream,Minnesota Lynx,0,0,74,85,1426,1625,1421,1630,.167,0
2018,6/29/2018,CHI,NYL,Chicago Sky,New York Liberty,0,0,103,99,1401,1435,1413,1422,.342,0
2018,6/29/2018,IND,PHO,Indiana Fever,Phoenix Mercury,0,0,77,95,1339,1564,1327,1576,.302,1
2018,6/28/2018,SEA,LAS,Seattle Storm,Los Angeles Sparks,0,0,81,72,1575,1597,1586,1586,.583,1
2018,6/28/2018,LAS,SEA,Los Angeles Sparks,Seattle Storm,0,0,72,81,1597,1575,1586,1586,.417,0
2018,6/28/2018,WAS,NYL,Washington Mystics,New York Liberty,0,0,80,77,1532,1438,1535,1435,.730,1
2018,6/28/2018,NYL,WAS,New York Liberty,Washington Mystics,0,0,77,80,1438,1532,1435,1535,.270,0
2018,6/27/2018,CON,IND,Connecticut Sun,Indiana Fever,0,0,101,89,1553,1343,1557,1339,.842,1
2018,6/27/2018,DAL,LVA,Dallas Wings,Las Vegas Aces,0,0,97,91,1499,1446,1511,1434,.461,0
2018,6/27/2018,LVA,DAL,Las Vegas Aces,Dallas Wings,0,0,91,97,1446,1499,1434,1511,.539,1
2018,6/27/2018,ATL,CHI,Atlanta Dream,Chicago Sky,0,0,80,93,1441,1385,1426,1401,.466,0
2018,6/27/2018,CHI,ATL,Chicago Sky,Atlanta Dream,0,0,93,80,1385,1441,1401,1426,.534,1
2018,6/27/2018,IND,CON,Indiana Fever,Connecticut Sun,0,0,89,101,1343,1553,1339,1557,.158,0
2018,6/26/2018,MIN,SEA,Minnesota Lynx,Seattle Storm,0,0,91,79,1615,1586,1625,1575,.652,1
2018,6/26/2018,LAS,DAL,Los Angeles Sparks,Dallas Wings,0,0,87,83,1593,1503,1597,1499,.726,1
2018,6/26/2018,SEA,MIN,Seattle Storm,Minnesota Lynx,0,0,79,91,1586,1615,1575,1625,.348,0
2018,6/26/2018,PHO,NYL,Phoenix Mercury,New York Liberty,0,0,83,69,1547,1456,1564,1438,.517,0
2018,6/26/2018,CON,WAS,Connecticut Sun,Washington Mystics,0,0,80,92,1568,1517,1553,1532,.458,0
2018,6/26/2018,WAS,CON,Washington Mystics,Connecticut Sun,0,0,92,80,1517,1568,1532,1553,.542,1
2018,6/26/2018,DAL,LAS,Dallas Wings,Los Angeles Sparks,0,0,83,87,1503,1593,1499,1597,.274,0
2018,6/26/2018,NYL,PHO,New York Liberty,Phoenix Mercury,0,0,69,83,1456,1547,1438,1564,.483,1
2018,6/24/2018,MIN,LVA,Minnesota Lynx,Las Vegas Aces,0,0,88,73,1600,1461,1615,1446,.584,0
2018,6/24/2018,LAS,NYL,Los Angeles Sparks,New York Liberty,0,0,80,54,1581,1467,1593,1456,.753,1
2018,6/24/2018,SEA,DAL,Seattle Storm,Dallas Wings,0,0,97,76,1557,1532,1586,1503,.421,0
2018,6/24/2018,CON,IND,Connecticut Sun,Indiana Fever,0,0,87,78,1560,1351,1568,1343,.677,0
2018,6/24/2018,PHO,CHI,Phoenix Mercury,Chicago Sky,0,0,88,97,1567,1365,1547,1385,.670,0
2018,6/24/2018,DAL,SEA,Dallas Wings,Seattle Storm,0,0,76,97,1532,1557,1503,1586,.579,1
2018,6/24/2018,NYL,LAS,New York Liberty,Los Angeles Sparks,0,0,54,80,1467,1581,1456,1593,.247,0
2018,6/24/2018,LVA,MIN,Las Vegas Aces,Minnesota Lynx,0,0,73,88,1461,1600,1446,1615,.416,1
2018,6/24/2018,CHI,PHO,Chicago Sky,Phoenix Mercury,0,0,97,88,1365,1567,1385,1547,.330,1
2018,6/24/2018,IND,CON,Indiana Fever,Connecticut Sun,0,0,78,87,1351,1560,1343,1568,.323,1
2018,6/22/2018,MIN,PHO,Minnesota Lynx,Phoenix Mercury,0,0,83,72,1579,1588,1600,1567,.375,0
2018,6/22/2018,LAS,DAL,Los Angeles Sparks,Dallas Wings,0,0,72,101,1615,1498,1581,1532,.553,0
2018,6/22/2018,PHO,MIN,Phoenix Mercury,Minnesota Lynx,0,0,72,83,1588,1579,1567,1600,.625,1
2018,6/22/2018,CON,ATL,Connecticut Sun,Atlanta Dream,0,0,70,75,1572,1429,1560,1441,.589,0
2018,6/22/2018,SEA,IND,Seattle Storm,Indiana Fever,0,0,72,63,1553,1355,1557,1351,.833,1
2018,6/22/2018,DAL,LAS,Dallas Wings,Los Angeles Sparks,0,0,101,72,1498,1615,1532,1581,.447,1
2018,6/22/2018,WAS,CHI,Washington Mystics,Chicago Sky,0,0,93,77,1500,1382,1517,1365,.555,0
2018,6/22/2018,NYL,LVA,New York Liberty,Las Vegas Aces,0,0,78,88,1479,1449,1467,1461,.429,0
2018,6/22/2018,LVA,NYL,Las Vegas Aces,New York Liberty,0,0,88,78,1449,1479,1461,1467,.571,1
2018,6/22/2018,ATL,CON,Atlanta Dream,Connecticut Sun,0,0,75,70,1429,1572,1441,1560,.411,1
2018,6/22/2018,CHI,WAS,Chicago Sky,Washington Mystics,0,0,77,93,1382,1500,1365,1517,.445,1
2018,6/22/2018,IND,SEA,Indiana Fever,Seattle Storm,0,0,63,72,1355,1553,1351,1557,.167,0
2018,6/19/2018,LAS,IND,Los Angeles Sparks,Indiana Fever,0,0,74,55,1610,1359,1615,1355,.871,1
2018,6/19/2018,MIN,DAL,Minnesota Lynx,Dallas Wings,0,0,91,83,1572,1505,1579,1498,.700,1
2018,6/19/2018,SEA,LVA,Seattle Storm,Las Vegas Aces,0,0,77,89,1586,1416,1553,1449,.808,1
2018,6/19/2018,WAS,CHI,Washington Mystics,Chicago Sky,0,0,88,60,1486,1396,1500,1382,.727,1
2018,6/19/2018,DAL,MIN,Dallas Wings,Minnesota Lynx,0,0,83,91,1505,1572,1498,1579,.300,0
2018,6/19/2018,NYL,ATL,New York Liberty,Atlanta Dream,0,0,79,72,1472,1436,1479,1429,.661,1
2018,6/19/2018,LVA,SEA,Las Vegas Aces,Seattle Storm,0,0,89,77,1416,1586,1449,1553,.192,0
2018,6/19/2018,ATL,NYL,Atlanta Dream,New York Liberty,0,0,72,79,1436,1472,1429,1479,.339,0
2018,6/19/2018,CHI,WAS,Chicago Sky,Washington Mystics,0,0,60,88,1396,1486,1382,1500,.273,0
2018,6/19/2018,IND,LAS,Indiana Fever,Los Angeles Sparks,0,0,55,74,1359,1610,1355,1615,.129,0
2018,6/17/2018,LAS,CHI,Los Angeles Sparks,Chicago Sky,0,0,81,72,1602,1404,1610,1396,.663,0
2018,6/17/2018,PHO,LVA,Phoenix Mercury,Las Vegas Aces,0,0,92,80,1576,1429,1588,1416,.595,0
2018,6/17/2018,LVA,PHO,Las Vegas Aces,Phoenix Mercury,0,0,80,92,1429,1576,1416,1588,.405,1
2018,6/17/2018,CHI,LAS,Chicago Sky,Los Angeles Sparks,0,0,72,81,1404,1602,1396,1610,.337,1
2018,6/16/2018,PHO,CON,Phoenix Mercury,Connecticut Sun,0,0,89,72,1559,1589,1576,1572,.571,1
2018,6/16/2018,MIN,NYL,Minnesota Lynx,New York Liberty,0,0,85,71,1563,1481,1572,1472,.718,1
2018,6/16/2018,CON,PHO,Connecticut Sun,Phoenix Mercury,0,0,72,89,1589,1559,1572,1576,.429,0
2018,6/16/2018,NYL,MIN,New York Liberty,Minnesota Lynx,0,0,71,85,1481,1563,1472,1572,.282,0
2018,6/16/2018,ATL,IND,Atlanta Dream,Indiana Fever,0,0,64,96,1479,1317,1436,1359,.615,0
2018,6/16/2018,IND,ATL,Indiana Fever,Atlanta Dream,0,0,96,64,1317,1479,1359,1436,.385,1
2018,6/15/2018,LAS,WAS,Los Angeles Sparks,Washington Mystics,0,0,97,86,1587,1501,1602,1486,.508,0
2018,6/15/2018,CON,SEA,Connecticut Sun,Seattle Storm,0,0,92,103,1601,1574,1589,1586,.426,0
2018,6/15/2018,SEA,CON,Seattle Storm,Connecticut Sun,0,0,103,92,1574,1601,1586,1589,.574,1
2018,6/15/2018,DAL,LVA,Dallas Wings,Las Vegas Aces,0,0,77,67,1497,1437,1505,1429,.691,1
2018,6/15/2018,WAS,LAS,Washington Mystics,Los Angeles Sparks,0,0,86,97,1501,1587,1486,1602,.492,1
2018,6/15/2018,LVA,DAL,Las Vegas Aces,Dallas Wings,0,0,67,77,1437,1497,1429,1505,.309,0
2018,6/14/2018,ATL,IND,Atlanta Dream,Indiana Fever,0,0,72,67,1475,1320,1479,1317,.794,1
2018,6/14/2018,IND,ATL,Indiana Fever,Atlanta Dream,0,0,67,72,1320,1475,1317,1479,.206,0
2018,6/13/2018,CON,WAS,Connecticut Sun,Washington Mystics,0,0,91,95,1618,1485,1601,1501,.774,1
2018,6/13/2018,WAS,CON,Washington Mystics,Connecticut Sun,0,0,95,91,1485,1618,1501,1601,.226,0
2018,6/13/2018,NYL,LVA,New York Liberty,Las Vegas Aces,0,0,63,78,1514,1404,1481,1437,.750,1
2018,6/13/2018,LVA,NYL,Las Vegas Aces,New York Liberty,0,0,78,63,1404,1514,1437,1481,.250,0
2018,6/12/2018,LAS,ATL,Los Angeles Sparks,Atlanta Dream,0,0,72,64,1581,1481,1587,1475,.738,1
2018,6/12/2018,SEA,CHI,Seattle Storm,Chicago Sky,0,0,96,85,1568,1409,1574,1404,.798,1
2018,6/12/2018,PHO,DAL,Phoenix Mercury,Dallas Wings,0,0,75,72,1550,1506,1559,1497,.448,0
2018,6/12/2018,DAL,PHO,Dallas Wings,Phoenix Mercury,0,0,72,75,1506,1550,1497,1559,.552,1
2018,6/12/2018,ATL,LAS,Atlanta Dream,Los Angeles Sparks,0,0,64,72,1481,1581,1475,1587,.262,0
2018,6/12/2018,CHI,SEA,Chicago Sky,Seattle Storm,0,0,85,96,1409,1568,1404,1574,.202,0
2018,6/12/2018,LVA,IND,Las Vegas Aces,Indiana Fever,0,0,101,92,1389,1335,1404,1320,.462,0
2018,6/12/2018,IND,LVA,Indiana Fever,Las Vegas Aces,0,0,92,101,1335,1389,1320,1404,.538,1
2018,6/10/2018,LAS,CHI,Los Angeles Sparks,Chicago Sky,0,0,77,59,1574,1417,1581,1409,.797,1
2018,6/10/2018,SEA,ATL,Seattle Storm,Atlanta Dream,0,0,64,67,1582,1467,1568,1481,.755,1
2018,6/10/2018,PHO,LVA,Phoenix Mercury,Las Vegas Aces,0,0,72,66,1546,1393,1550,1389,.793,1
2018,6/10/2018,NYL,IND,New York Liberty,Indiana Fever,0,0,78,75,1512,1338,1514,1335,.812,1
2018,6/10/2018,ATL,SEA,Atlanta Dream,Seattle Storm,0,0,67,64,1467,1582,1481,1568,.245,0
2018,6/10/2018,CHI,LAS,Chicago Sky,Los Angeles Sparks,0,0,59,77,1417,1574,1409,1581,.203,0
2018,6/10/2018,LVA,PHO,Las Vegas Aces,Phoenix Mercury,0,0,66,72,1393,1546,1389,1550,.207,0
2018,6/10/2018,IND,NYL,Indiana Fever,New York Liberty,0,0,75,78,1338,1512,1335,1514,.188,0
2018,6/9/2018,CON,MIN,Connecticut Sun,Minnesota Lynx,0,0,89,75,1607,1575,1618,1563,.656,1
2018,6/9/2018,MIN,CON,Minnesota Lynx,Connecticut Sun,0,0,75,89,1575,1607,1563,1618,.344,0
2018,6/8/2018,PHO,CHI,Phoenix Mercury,Chicago Sky,0,0,96,79,1537,1425,1546,1417,.751,1
2018,6/8/2018,DAL,IND,Dallas Wings,Indiana Fever,0,0,89,83,1498,1346,1506,1338,.602,0
2018,6/8/2018,ATL,LVA,Atlanta Dream,Las Vegas Aces,0,0,87,83,1457,1402,1467,1393,.464,0
2018,6/8/2018,CHI,PHO,Chicago Sky,Phoenix Mercury,0,0,79,96,1425,1537,1417,1546,.249,0
2018,6/8/2018,LVA,ATL,Las Vegas Aces,Atlanta Dream,0,0,83,87,1402,1457,1393,1467,.536,1
2018,6/8/2018,IND,DAL,Indiana Fever,Dallas Wings,0,0,83,89,1346,1498,1338,1506,.398,1
2018,6/7/2018,CON,NYL,Connecticut Sun,New York Liberty,0,0,88,86,1600,1519,1607,1512,.502,0
2018,6/7/2018,SEA,LAS,Seattle Storm,Los Angeles Sparks,0,0,88,63,1538,1618,1582,1574,.286,0
2018,6/7/2018,MIN,WAS,Minnesota Lynx,Washington Mystics,0,0,88,80,1561,1498,1575,1485,.476,0
2018,6/7/2018,LAS,SEA,Los Angeles Sparks,Seattle Storm,0,0,63,88,1618,1538,1574,1582,.714,1
2018,6/7/2018,NYL,CON,New York Liberty,Connecticut Sun,0,0,86,88,1519,1600,1512,1607,.498,1
2018,6/7/2018,WAS,MIN,Washington Mystics,Minnesota Lynx,0,0,80,88,1498,1561,1485,1575,.524,1
2018,6/5/2018,CON,ATL,Connecticut Sun,Atlanta Dream,0,0,77,82,1613,1444,1600,1457,.625,0
2018,6/5/2018,PHO,NYL,Phoenix Mercury,New York Liberty,0,0,80,74,1523,1533,1537,1519,.372,0
2018,6/5/2018,NYL,PHO,New York Liberty,Phoenix Mercury,0,0,74,80,1533,1523,1519,1537,.628,1
2018,6/5/2018,ATL,CON,Atlanta Dream,Connecticut Sun,0,0,82,77,1444,1613,1457,1600,.375,1
2018,6/3/2018,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,0,77,69,1610,1569,1618,1561,.667,1
2018,6/3/2018,CON,WAS,Connecticut Sun,Washington Mystics,0,0,88,64,1585,1526,1613,1498,.469,0
2018,6/3/2018,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,0,69,77,1569,1610,1561,1618,.333,0
2018,6/3/2018,PHO,ATL,Phoenix Mercury,Atlanta Dream,0,0,78,71,1510,1457,1523,1444,.460,0
2018,6/3/2018,WAS,CON,Washington Mystics,Connecticut Sun,0,0,64,88,1526,1585,1498,1613,.531,1
2018,6/3/2018,ATL,PHO,Atlanta Dream,Phoenix Mercury,0,0,71,78,1457,1510,1444,1523,.540,1
2018,6/3/2018,CHI,LVA,Chicago Sky,Las Vegas Aces,0,0,95,90,1419,1409,1425,1402,.626,1
2018,6/3/2018,LVA,CHI,Las Vegas Aces,Chicago Sky,0,0,90,95,1409,1419,1402,1425,.374,0
2018,6/2/2018,SEA,DAL,Seattle Storm,Dallas Wings,0,0,90,94,1547,1490,1538,1498,.467,0
2018,6/2/2018,NYL,IND,New York Liberty,Indiana Fever,0,0,87,81,1526,1353,1533,1346,.630,0
2018,6/2/2018,DAL,SEA,Dallas Wings,Seattle Storm,0,0,94,90,1490,1547,1498,1538,.533,1
2018,6/2/2018,IND,NYL,Indiana Fever,New York Liberty,0,0,81,87,1353,1526,1346,1533,.370,1
2018,6/1/2018,CON,CHI,Connecticut Sun,Chicago Sky,0,0,110,72,1551,1453,1585,1419,.526,0
2018,6/1/2018,MIN,PHO,Minnesota Lynx,Phoenix Mercury,0,0,85,95,1595,1484,1569,1510,.750,1
2018,6/1/2018,WAS,LVA,Washington Mystics,Las Vegas Aces,0,0,73,85,1548,1388,1526,1409,.613,0
2018,6/1/2018,PHO,MIN,Phoenix Mercury,Minnesota Lynx,0,0,95,85,1484,1595,1510,1569,.250,0
2018,6/1/2018,CHI,CON,Chicago Sky,Connecticut Sun,0,0,72,110,1453,1551,1419,1585,.474,1
2018,6/1/2018,LVA,WAS,Las Vegas Aces,Washington Mystics,0,0,85,73,1388,1548,1409,1526,.387,1
2018,5/31/2018,SEA,LVA,Seattle Storm,Las Vegas Aces,0,0,101,74,1536,1399,1547,1388,.777,1
2018,5/31/2018,LVA,SEA,Las Vegas Aces,Seattle Storm,0,0,74,101,1399,1536,1388,1547,.223,0
2018,5/30/2018,WAS,PHO,Washington Mystics,Phoenix Mercury,0,0,103,95,1533,1499,1548,1484,.434,0
2018,5/30/2018,PHO,WAS,Phoenix Mercury,Washington Mystics,0,0,95,103,1499,1533,1484,1548,.566,1
2018,5/29/2018,MIN,ATL,Minnesota Lynx,Atlanta Dream,0,0,74,76,1603,1448,1595,1457,.606,0
2018,5/29/2018,SEA,WAS,Seattle Storm,Washington Mystics,0,0,81,77,1529,1539,1536,1533,.599,1
2018,5/29/2018,WAS,SEA,Washington Mystics,Seattle Storm,0,0,77,81,1539,1529,1533,1536,.401,0
2018,5/29/2018,NYL,DAL,New York Liberty,Dallas Wings,0,0,94,89,1519,1496,1526,1490,.645,1
2018,5/29/2018,DAL,NYL,Dallas Wings,New York Liberty,0,0,89,94,1496,1519,1490,1526,.355,0
2018,5/29/2018,ATL,MIN,Atlanta Dream,Minnesota Lynx,0,0,76,74,1448,1603,1457,1595,.394,1
2018,5/27/2018,LAS,PHO,Los Angeles Sparks,Phoenix Mercury,0,0,80,72,1604,1505,1610,1499,.738,1
2018,5/27/2018,MIN,WAS,Minnesota Lynx,Washington Mystics,0,0,78,90,1621,1522,1603,1539,.527,0
2018,5/27/2018,WAS,MIN,Washington Mystics,Minnesota Lynx,0,0,90,78,1522,1621,1539,1603,.473,1
2018,5/27/2018,SEA,LVA,Seattle Storm,Las Vegas Aces,0,0,105,98,1519,1409,1529,1399,.542,0
2018,5/27/2018,PHO,LAS,Phoenix Mercury,Los Angeles Sparks,0,0,72,80,1505,1604,1499,1610,.262,0
2018,5/27/2018,LVA,SEA,Las Vegas Aces,Seattle Storm,0,0,98,105,1409,1519,1399,1529,.458,1
2018,5/26/2018,CON,IND,Connecticut Sun,Indiana Fever,0,0,86,77,1547,1357,1551,1353,.825,1
2018,5/26/2018,DAL,ATL,Dallas Wings,Atlanta Dream,0,0,78,70,1480,1464,1496,1448,.409,0
2018,5/26/2018,ATL,DAL,Atlanta Dream,Dallas Wings,0,0,70,78,1464,1480,1448,1496,.591,1
2018,5/26/2018,IND,CON,Indiana Fever,Connecticut Sun,0,0,77,86,1357,1547,1353,1551,.175,0
2018,5/25/2018,MIN,NYL,Minnesota Lynx,New York Liberty,0,0,78,72,1610,1530,1621,1519,.500,0
2018,5/25/2018,NYL,MIN,New York Liberty,Minnesota Lynx,0,0,72,78,1530,1610,1519,1621,.500,1
2018,5/25/2018,SEA,CHI,Seattle Storm,Chicago Sky,0,0,95,91,1514,1458,1519,1453,.686,1
2018,5/25/2018,CHI,SEA,Chicago Sky,Seattle Storm,0,0,91,95,1458,1514,1453,1519,.314,0
2018,5/24/2018,LAS,CON,Los Angeles Sparks,Connecticut Sun,0,0,94,102,1617,1534,1604,1547,.504,0
2018,5/24/2018,CON,LAS,Connecticut Sun,Los Angeles Sparks,0,0,102,94,1534,1617,1547,1604,.496,1
2018,5/24/2018,WAS,IND,Washington Mystics,Indiana Fever,0,0,93,84,1511,1368,1522,1357,.590,0
2018,5/24/2018,IND,WAS,Indiana Fever,Washington Mystics,0,0,84,93,1368,1511,1357,1522,.410,1
2018,5/23/2018,MIN,DAL,Minnesota Lynx,Dallas Wings,0,0,76,68,1605,1485,1610,1480,.759,1
2018,5/23/2018,SEA,PHO,Seattle Storm,Phoenix Mercury,0,0,87,71,1484,1534,1514,1505,.320,0
2018,5/23/2018,PHO,SEA,Phoenix Mercury,Seattle Storm,0,0,71,87,1534,1484,1505,1514,.680,1
2018,5/23/2018,DAL,MIN,Dallas Wings,Minnesota Lynx,0,0,68,76,1485,1605,1480,1610,.241,0
2018,5/23/2018,ATL,CHI,Atlanta Dream,Chicago Sky,0,0,81,63,1431,1491,1464,1458,.309,0
2018,5/23/2018,CHI,ATL,Chicago Sky,Atlanta Dream,0,0,63,81,1491,1431,1458,1464,.691,1
2018,5/22/2018,LAS,IND,Los Angeles Sparks,Indiana Fever,0,0,87,70,1606,1379,1617,1368,.700,0
2018,5/22/2018,WAS,LVA,Washington Mystics,Las Vegas Aces,0,0,75,70,1507,1414,1511,1409,.730,1
2018,5/22/2018,LVA,WAS,Las Vegas Aces,Washington Mystics,0,0,70,75,1414,1507,1409,1511,.270,0
2018,5/22/2018,IND,LAS,Indiana Fever,Los Angeles Sparks,0,0,70,87,1379,1606,1368,1617,.300,1
2018,5/20/2018,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,0,77,76,1598,1613,1606,1605,.367,0
2018,5/20/2018,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,0,76,77,1613,1598,1605,1606,.633,1
2018,5/20/2018,PHO,SEA,Phoenix Mercury,Seattle Storm,0,0,87,82,1523,1496,1534,1484,.424,0
2018,5/20/2018,CON,LVA,Connecticut Sun,Las Vegas Aces,0,0,101,65,1517,1431,1534,1414,.723,1
2018,5/20/2018,NYL,CHI,New York Liberty,Chicago Sky,0,0,76,80,1538,1483,1530,1491,.465,0
2018,5/20/2018,WAS,IND,Washington Mystics,Indiana Fever,0,0,82,75,1502,1384,1507,1379,.757,1
2018,5/20/2018,CHI,NYL,Chicago Sky,New York Liberty,0,0,80,76,1483,1538,1491,1530,.535,1
2018,5/20/2018,DAL,ATL,Dallas Wings,Atlanta Dream,0,0,101,78,1469,1448,1485,1431,.641,1
2018,5/20/2018,SEA,PHO,Seattle Storm,Phoenix Mercury,0,0,82,87,1496,1523,1484,1534,.576,1
2018,5/20/2018,ATL,DAL,Atlanta Dream,Dallas Wings,0,0,78,101,1448,1469,1431,1485,.359,0
2018,5/20/2018,LVA,CON,Las Vegas Aces,Connecticut Sun,0,0,65,101,1431,1517,1414,1534,.277,0
2018,5/20/2018,IND,WAS,Indiana Fever,Washington Mystics,0,0,75,82,1384,1502,1379,1507,.243,0
2018,5/19/2018,CHI,IND,Chicago Sky,Indiana Fever,0,0,82,64,1459,1408,1483,1384,.459,0
2018,5/19/2018,IND,CHI,Indiana Fever,Chicago Sky,0,0,64,82,1408,1459,1384,1483,.541,1
2018,5/18/2018,PHO,DAL,Phoenix Mercury,Dallas Wings,0,0,86,78,1515,1476,1523,1469,.664,1
2018,5/18/2018,DAL,PHO,Dallas Wings,Phoenix Mercury,0,0,78,86,1476,1515,1469,1523,.336,0
2017,10/4/2017,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,1,85,76,1717,1705,1725,1696,.659,1
2017,10/4/2017,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,1,76,85,1705,1717,1696,1725,.341,0
2017,10/1/2017,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,1,80,69,1692,1729,1717,1705,.301,0
2017,10/1/2017,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,1,69,80,1729,1692,1705,1717,.699,1
2017,9/29/2017,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,1,75,64,1720,1701,1729,1692,.670,1
2017,9/29/2017,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,1,64,75,1701,1720,1692,1729,.330,0
2017,9/26/2017,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,1,68,70,1725,1696,1720,1701,.409,0
2017,9/26/2017,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,1,70,68,1696,1725,1701,1720,.591,1
2017,9/24/2017,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,1,85,84,1718,1704,1725,1696,.384,0
2017,9/24/2017,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,1,84,85,1704,1718,1696,1725,.616,1
2017,9/17/2017,LAS,PHO,Los Angeles Sparks,Phoenix Mercury,0,1,89,87,1714,1534,1718,1530,.673,0
2017,9/17/2017,MIN,WAS,Minnesota Lynx,Washington Mystics,0,1,81,70,1695,1512,1704,1503,.676,0
2017,9/17/2017,PHO,LAS,Phoenix Mercury,Los Angeles Sparks,0,1,87,89,1534,1714,1530,1718,.327,1
2017,9/17/2017,WAS,MIN,Washington Mystics,Minnesota Lynx,0,1,70,81,1512,1695,1503,1704,.324,1
2017,9/14/2017,LAS,PHO,Los Angeles Sparks,Phoenix Mercury,0,1,86,72,1710,1538,1714,1534,.860,1
2017,9/14/2017,MIN,WAS,Minnesota Lynx,Washington Mystics,0,1,93,83,1691,1515,1695,1512,.863,1
2017,9/14/2017,PHO,LAS,Phoenix Mercury,Los Angeles Sparks,0,1,72,86,1538,1710,1534,1714,.140,0
2017,9/14/2017,WAS,MIN,Washington Mystics,Minnesota Lynx,0,1,83,93,1515,1691,1512,1695,.137,0
2017,9/12/2017,LAS,PHO,Los Angeles Sparks,Phoenix Mercury,0,1,79,66,1706,1542,1710,1538,.853,1
2017,9/12/2017,MIN,WAS,Minnesota Lynx,Washington Mystics,0,1,101,81,1686,1521,1691,1515,.854,1
2017,9/12/2017,PHO,LAS,Phoenix Mercury,Los Angeles Sparks,0,1,66,79,1542,1706,1538,1710,.147,0
2017,9/12/2017,WAS,MIN,Washington Mystics,Minnesota Lynx,0,1,81,101,1521,1686,1515,1691,.146,0
2017,9/10/2017,NYL,WAS,New York Liberty,Washington Mystics,0,1,68,82,1614,1483,1577,1521,.820,1
2017,9/10/2017,PHO,CON,Phoenix Mercury,Connecticut Sun,0,1,88,83,1527,1549,1542,1534,.324,0
2017,9/10/2017,CON,PHO,Connecticut Sun,Phoenix Mercury,0,1,83,88,1549,1527,1534,1542,.676,1
2017,9/10/2017,WAS,NYL,Washington Mystics,New York Liberty,0,1,82,68,1483,1614,1521,1577,.180,0
2017,9/6/2017,PHO,SEA,Phoenix Mercury,Seattle Storm,0,1,79,69,1518,1500,1527,1491,.670,1
2017,9/6/2017,SEA,PHO,Seattle Storm,Phoenix Mercury,0,1,69,79,1500,1518,1491,1527,.330,0
2017,9/6/2017,WAS,DAL,Washington Mystics,Dallas Wings,0,1,86,76,1474,1462,1483,1453,.661,1
2017,9/6/2017,DAL,WAS,Dallas Wings,Washington Mystics,0,1,76,86,1462,1474,1453,1483,.339,0
2017,9/3/2017,LAS,CON,Los Angeles Sparks,Connecticut Sun,0,0,81,70,1700,1555,1706,1549,.785,1
2017,9/3/2017,MIN,WAS,Minnesota Lynx,Washington Mystics,0,0,86,72,1681,1479,1686,1474,.835,1
2017,9/3/2017,NYL,DAL,New York Liberty,Dallas Wings,0,0,82,81,1610,1466,1614,1462,.590,0
2017,9/3/2017,CON,LAS,Connecticut Sun,Los Angeles Sparks,0,0,70,81,1555,1700,1549,1706,.215,0
2017,9/3/2017,PHO,ATL,Phoenix Mercury,Atlanta Dream,0,0,84,70,1510,1404,1518,1396,.745,1
2017,9/3/2017,SEA,CHI,Seattle Storm,Chicago Sky,0,0,85,80,1489,1429,1500,1418,.472,0
2017,9/3/2017,WAS,MIN,Washington Mystics,Minnesota Lynx,0,0,72,86,1479,1681,1474,1686,.165,0
2017,9/3/2017,DAL,NYL,Dallas Wings,New York Liberty,0,0,81,82,1466,1610,1462,1614,.410,1
2017,9/3/2017,CHI,SEA,Chicago Sky,Seattle Storm,0,0,80,85,1429,1489,1418,1500,.528,1
2017,9/3/2017,ATL,PHO,Atlanta Dream,Phoenix Mercury,0,0,70,84,1404,1510,1396,1518,.255,0
2017,9/2/2017,LVA,IND,San Antonio Silver Stars,Indiana Fever,0,0,75,71,1351,1326,1362,1315,.422,0
2017,9/2/2017,IND,LVA,Indiana Fever,San Antonio Silver Stars,0,0,71,75,1326,1351,1315,1362,.578,1
2017,9/1/2017,LAS,ATL,Los Angeles Sparks,Atlanta Dream,0,0,81,56,1696,1408,1700,1404,.892,1
2017,9/1/2017,MIN,CHI,Minnesota Lynx,Chicago Sky,0,0,110,87,1676,1434,1681,1429,.864,1
2017,9/1/2017,NYL,LVA,New York Liberty,San Antonio Silver Stars,0,0,81,69,1606,1354,1610,1351,.871,1
2017,9/1/2017,CON,PHO,Connecticut Sun,Phoenix Mercury,0,0,66,86,1579,1486,1555,1510,.518,0
2017,9/1/2017,PHO,CON,Phoenix Mercury,Connecticut Sun,0,0,86,66,1486,1579,1510,1555,.482,1
2017,9/1/2017,SEA,WAS,Seattle Storm,Washington Mystics,0,0,106,110,1496,1472,1489,1479,.420,0
2017,9/1/2017,WAS,SEA,Washington Mystics,Seattle Storm,0,0,110,106,1472,1496,1479,1489,.580,1
2017,9/1/2017,CHI,MIN,Chicago Sky,Minnesota Lynx,0,0,87,110,1434,1676,1429,1681,.136,0
2017,9/1/2017,ATL,LAS,Atlanta Dream,Los Angeles Sparks,0,0,56,81,1408,1696,1404,1700,.108,0
2017,9/1/2017,LVA,NYL,San Antonio Silver Stars,New York Liberty,0,0,69,81,1354,1606,1351,1610,.129,0
2017,8/30/2017,MIN,IND,Minnesota Lynx,Indiana Fever,0,0,80,69,1671,1331,1676,1326,.817,0
2017,8/30/2017,DAL,CHI,Dallas Wings,Chicago Sky,0,0,99,96,1456,1444,1466,1434,.404,0
2017,8/30/2017,CHI,DAL,Chicago Sky,Dallas Wings,0,0,96,99,1444,1456,1434,1466,.596,1
2017,8/30/2017,IND,MIN,Indiana Fever,Minnesota Lynx,0,0,69,80,1331,1671,1326,1676,.183,1
2017,8/29/2017,CON,WAS,Connecticut Sun,Washington Mystics,0,0,86,76,1564,1487,1579,1472,.496,0
2017,8/29/2017,WAS,CON,Washington Mystics,Connecticut Sun,0,0,76,86,1487,1564,1472,1579,.504,1
2017,8/27/2017,LAS,MIN,Los Angeles Sparks,Minnesota Lynx,0,0,78,67,1684,1682,1696,1671,.616,1
2017,8/27/2017,MIN,LAS,Minnesota Lynx,Los Angeles Sparks,0,0,67,78,1682,1684,1671,1696,.384,0
2017,8/27/2017,NYL,CHI,New York Liberty,Chicago Sky,0,0,92,62,1595,1455,1606,1444,.779,1
2017,8/27/2017,SEA,PHO,Seattle Storm,Phoenix Mercury,0,0,71,75,1509,1473,1496,1486,.661,1
2017,8/27/2017,PHO,SEA,Phoenix Mercury,Seattle Storm,0,0,75,71,1473,1509,1486,1496,.339,0
2017,8/27/2017,CHI,NYL,Chicago Sky,New York Liberty,0,0,62,92,1455,1595,1444,1606,.221,0
2017,8/26/2017,WAS,DAL,Washington Mystics,Dallas Wings,0,0,78,83,1502,1441,1487,1456,.693,1
2017,8/26/2017,DAL,WAS,Dallas Wings,Washington Mystics,0,0,83,78,1441,1502,1456,1487,.307,0
2017,8/26/2017,ATL,IND,Atlanta Dream,Indiana Fever,0,0,79,74,1403,1336,1408,1331,.700,1
2017,8/26/2017,IND,ATL,Indiana Fever,Atlanta Dream,0,0,74,79,1336,1403,1331,1408,.300,0
2017,8/25/2017,MIN,LVA,Minnesota Lynx,San Antonio Silver Stars,0,0,89,70,1674,1362,1682,1354,.792,0
2017,8/25/2017,NYL,WAS,New York Liberty,Washington Mystics,0,0,74,66,1588,1509,1595,1502,.715,1
2017,8/25/2017,CON,CHI,Connecticut Sun,Chicago Sky,0,0,83,96,1599,1420,1564,1455,.816,1
2017,8/25/2017,WAS,NYL,Washington Mystics,New York Liberty,0,0,66,74,1509,1588,1502,1595,.285,0
2017,8/25/2017,CHI,CON,Chicago Sky,Connecticut Sun,0,0,96,83,1420,1599,1455,1564,.184,0
2017,8/25/2017,LVA,MIN,San Antonio Silver Stars,Minnesota Lynx,0,0,70,89,1362,1674,1354,1682,.208,1
2017,8/24/2017,LAS,PHO,Los Angeles Sparks,Phoenix Mercury,0,0,82,67,1672,1485,1684,1473,.649,0
2017,8/24/2017,PHO,LAS,Phoenix Mercury,Los Angeles Sparks,0,0,67,82,1485,1672,1473,1684,.351,1
2017,8/23/2017,CON,DAL,Connecticut Sun,Dallas Wings,0,0,93,87,1595,1445,1599,1441,.790,1
2017,8/23/2017,NYL,IND,New York Liberty,Indiana Fever,0,0,71,50,1576,1349,1588,1336,.700,0
2017,8/23/2017,SEA,ATL,Seattle Storm,Atlanta Dream,0,0,83,89,1522,1390,1509,1403,.575,0
2017,8/23/2017,DAL,CON,Dallas Wings,Connecticut Sun,0,0,87,93,1445,1595,1441,1599,.210,0
2017,8/23/2017,ATL,SEA,Atlanta Dream,Seattle Storm,0,0,89,83,1390,1522,1403,1509,.425,1
2017,8/23/2017,IND,NYL,Indiana Fever,New York Liberty,0,0,50,71,1349,1576,1336,1588,.300,1
2017,8/22/2017,MIN,PHO,Minnesota Lynx,Phoenix Mercury,0,0,105,69,1663,1497,1674,1485,.805,1
2017,8/22/2017,LAS,LVA,Los Angeles Sparks,San Antonio Silver Stars,0,0,75,55,1669,1366,1672,1362,.901,1
2017,8/22/2017,PHO,MIN,Phoenix Mercury,Minnesota Lynx,0,0,69,105,1497,1663,1485,1674,.195,0
2017,8/22/2017,LVA,LAS,San Antonio Silver Stars,Los Angeles Sparks,0,0,55,75,1366,1669,1362,1672,.099,0
2017,8/20/2017,MIN,NYL,Minnesota Lynx,New York Liberty,0,0,61,70,1679,1560,1663,1576,.555,0
2017,8/20/2017,CON,PHO,Connecticut Sun,Phoenix Mercury,0,0,94,66,1580,1513,1595,1497,.700,1
2017,8/20/2017,NYL,MIN,New York Liberty,Minnesota Lynx,0,0,70,61,1560,1679,1576,1663,.445,1
2017,8/20/2017,SEA,CHI,Seattle Storm,Chicago Sky,0,0,103,66,1477,1465,1522,1420,.403,0
2017,8/20/2017,WAS,IND,Washington Mystics,Indiana Fever,0,0,87,82,1501,1356,1509,1349,.592,0
2017,8/20/2017,PHO,CON,Phoenix Mercury,Connecticut Sun,0,0,66,94,1513,1580,1497,1595,.300,0
2017,8/20/2017,CHI,SEA,Chicago Sky,Seattle Storm,0,0,66,103,1465,1477,1420,1522,.597,1
2017,8/20/2017,IND,WAS,Indiana Fever,Washington Mystics,0,0,82,87,1356,1501,1349,1509,.408,1
2017,8/19/2017,DAL,ATL,Dallas Wings,Atlanta Dream,0,0,90,86,1440,1395,1445,1390,.672,1
2017,8/19/2017,ATL,DAL,Atlanta Dream,Dallas Wings,0,0,86,90,1395,1440,1390,1445,.328,0
2017,8/18/2017,MIN,IND,Minnesota Lynx,Indiana Fever,0,0,111,52,1671,1364,1679,1356,.903,1
2017,8/18/2017,LAS,CHI,Los Angeles Sparks,Chicago Sky,0,0,115,106,1660,1474,1669,1465,.648,0
2017,8/18/2017,CON,NYL,Connecticut Sun,New York Liberty,0,0,70,82,1606,1534,1580,1560,.706,1
2017,8/18/2017,NYL,CON,New York Liberty,Connecticut Sun,0,0,82,70,1534,1606,1560,1580,.294,0
2017,8/18/2017,PHO,WAS,Phoenix Mercury,Washington Mystics,0,0,89,79,1492,1522,1513,1501,.347,0
2017,8/18/2017,WAS,PHO,Washington Mystics,Phoenix Mercury,0,0,79,89,1522,1492,1501,1513,.653,1
2017,8/18/2017,SEA,LVA,Seattle Storm,San Antonio Silver Stars,0,0,79,78,1475,1368,1477,1366,.745,1
2017,8/18/2017,CHI,LAS,Chicago Sky,Los Angeles Sparks,0,0,106,115,1474,1660,1465,1669,.352,1
2017,8/18/2017,LVA,SEA,San Antonio Silver Stars,Seattle Storm,0,0,78,79,1368,1475,1366,1477,.255,0
2017,8/18/2017,IND,MIN,Indiana Fever,Minnesota Lynx,0,0,52,111,1364,1671,1356,1679,.097,0
2017,8/16/2017,MIN,SEA,Minnesota Lynx,Seattle Storm,0,0,61,62,1680,1466,1671,1475,.684,0
2017,8/16/2017,LAS,WAS,Los Angeles Sparks,Washington Mystics,0,0,95,62,1626,1556,1660,1522,.486,0
2017,8/16/2017,WAS,LAS,Washington Mystics,Los Angeles Sparks,0,0,62,95,1556,1626,1522,1660,.514,1
2017,8/16/2017,SEA,MIN,Seattle Storm,Minnesota Lynx,0,0,62,61,1466,1680,1475,1671,.316,1
2017,8/15/2017,CON,ATL,Connecticut Sun,Atlanta Dream,0,0,96,75,1590,1411,1606,1395,.639,0
2017,8/15/2017,ATL,CON,Atlanta Dream,Connecticut Sun,0,0,75,96,1411,1590,1395,1606,.361,1
2017,8/13/2017,LAS,NYL,Los Angeles Sparks,New York Liberty,0,0,69,83,1648,1512,1626,1534,.580,0
2017,8/13/2017,NYL,LAS,New York Liberty,Los Angeles Sparks,0,0,83,69,1512,1648,1534,1626,.420,1
2017,8/12/2017,CON,DAL,Connecticut Sun,Dallas Wings,0,0,96,88,1585,1444,1590,1440,.781,1
2017,8/12/2017,WAS,IND,Washington Mystics,Indiana Fever,0,0,100,80,1549,1371,1556,1364,.815,1
2017,8/12/2017,PHO,SEA,Phoenix Mercury,Seattle Storm,0,0,89,98,1513,1444,1492,1466,.703,1