-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
1611 lines (1581 loc) · 47.7 KB
/
config.py
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
TABLE_LEAGUES, TABLE_FIXTURES, TABLE_ODDS, TABLE_RESULTS, TABLE_BETS, TABLE_USERS = 'leagues', 'fixtures', 'odds', 'results', 'bets', 'users'
TEXT1_LANDING_PAGE = """
### **THIS TOOL WILL REVEAL YOUR EDGE INSTANTLY!**
Log your bets and keep track of profits + clv (closing line value) with this easy-to-use app.
Backtest your models, strategies and your favourite tipsters with a database reaching back to 2021.
Add future bets and retrieve current odds, expected win & clv, so you know exactly where you currently stand with your bet.
Check out the many features below and take your betting to the next level.
👉 Automatic grading of your bets, including scorelines.
👉 41 unique sports, 15159 unique leagues supported.
👉 1.5 million fixtures and growing.
👉 Fulltime, halftime, quarter markets supported and many more.
👉 moneyline, spread, totals & team_totals markets supported.
👉 Export option allows you to download and share your bets.
👉 Clean & simple, no-nonsense interface & dashboard.
👉 Precise clv calculation using [@12Xpert](https://twitter.com/12Xpert?lang=en) 's logarithmic function, explained in his article here https://tinyurl.com/woc12Xpert
👉 Tag your bets and apply it as a filter for future analysis.
👉 Performance graph showing actual vs expected profits.
"""
TEXT2_LANDING_PAGE = """
##### ⚠️ WHAT THIS TOOL CAN NOT DO ⚠️
It can not track special bets. Hence if you're mainly betting prop markets & exotic derivatives then this tool is not for you.
"""
TEXT3_LANDING_PAGE = """
##### ❓ DON'T KNOW WHAT CLV IS ❓
If you're yet unsure what clv (closing line value) is and why it is THE most predictive metric for betting analysis then I recommend heading over to [@nishikoripicks](https://twitter.com/nishikoripicks?lang=en) 's https://tinyurl.com/clvnishi and/or watch his 2-part series
📽 Part I: https://youtube.com/watch?v=-uLJUhbFD_U&t=22s
📽 Part II: https://youtube.com/watch?v=MZCeHiywKvs
"""
SPORTS = dict()
SPORTS.update({'Soccer': 29})
SPORTS.update({'Basketball': 4})
SPORTS.update({'Tennis': 33})
SPORTS.update({'Baseball': 3})
SPORTS.update({'Football': 15})
SPORTS.update({'Hockey': 19})
SPORTS.update({'Rugby League': 26})
SPORTS.update({'Rugby Union': 27})
SPORTS.update({'Darts': 10})
SPORTS.update({'Cricket': 8})
SPORTS.update({'Golf': 17})
SPORTS.update({'Handball': 18})
SPORTS.update({'Snooker': 28})
SPORTS.update({'Volleyball': 34})
SPORTS.update({'Aussie Rules': 39})
SPORTS.update({'Alpine Skiing': 40})
SPORTS.update({'Athletics': 56})
SPORTS.update({'Badminton': 1})
SPORTS.update({'Bandy': 2})
SPORTS.update({'Beach Volleyball': 5})
SPORTS.update({'Biathlon': 41})
SPORTS.update({'Boxing': 6})
SPORTS.update({'Chess': 7})
SPORTS.update({'Cross Country': 43})
SPORTS.update({'Crossfit': 57})
SPORTS.update({'Curling': 9})
SPORTS.update({'Cycling': 45})
SPORTS.update({'Entertainment': 58})
SPORTS.update({'Field Hockey': 13})
SPORTS.update({'Formula 1': 44})
SPORTS.update({'Futsal': 16})
SPORTS.update({'Mixed Martial Arts': 22})
SPORTS.update({'Motorsport': 63})
SPORTS.update({'Olympics': 55})
SPORTS.update({'Padel Tennis': 37})
SPORTS.update({'Ski Jumping': 42})
SPORTS.update({'Softball': 30})
SPORTS.update({'Squash': 31})
SPORTS.update({'Sumo': 65})
SPORTS.update({'Table Tennis': 32})
SPORTS.update({'Water Polo': 36})
PERIODS = dict()
PERIODS.update({(29,0): 'Match'})
PERIODS.update({(29,1): '1st Half'})
PERIODS.update({(29,2): '2nd Half'})
PERIODS.update({(29,3): 'Extra Time'})
PERIODS.update({(29,4): 'Extra Time 1st Half'})
PERIODS.update({(29,5): 'Extra Time 2nd Half'})
PERIODS.update({(29,6): 'Penalty Shootout'})
PERIODS.update({(29,7): '1st Ten Shootout Pen'})
PERIODS.update({(29,8): 'To Qualify'})
PERIODS.update({(29,9): '00:00 - 04:59'})
PERIODS.update({(29,10): '05:00 - 09:59'})
PERIODS.update({(29,11): '10:00 - 14:59'})
PERIODS.update({(29,12): '15:00 - 19:59'})
PERIODS.update({(29,13): '20:00 - 24:59'})
PERIODS.update({(29,14): '25:00 - 29:59'})
PERIODS.update({(29,15): '30:00 - 34:59'})
PERIODS.update({(29,16): '35:00 - 39:59'})
PERIODS.update({(29,17): '40:00 - 44:59'})
PERIODS.update({(29,18): 'Halftime - 49:59'})
PERIODS.update({(29,19): '50:00 - 54:59'})
PERIODS.update({(29,20): '55:00 - 59:59'})
PERIODS.update({(29,21): '60:00 - 64:59'})
PERIODS.update({(29,22): '65:00 - 69:59'})
PERIODS.update({(29,23): '70:00 - 74:59'})
PERIODS.update({(29,24): '75:00 - 79:59'})
PERIODS.update({(29,25): '80:00 - 84:59'})
PERIODS.update({(29,26): '85:00 - 89:59'})
PERIODS.update({(29,27): 'ET 00:00 - 04:59'})
PERIODS.update({(29,28): 'ET 05:00 - 09:59'})
PERIODS.update({(29,29): 'ET 10:00 - 14:59'})
PERIODS.update({(29,30): 'ET Halftime - 19:59'})
PERIODS.update({(29,31): 'ET 20:00 - 24:59'})
PERIODS.update({(29,32): 'ET 25:00 - 29:59'})
PERIODS.update({(29,33): '00:00 - 14:59'})
PERIODS.update({(29,34): '15:00 - 29:59'})
PERIODS.update({(29,35): '30:00 - Halftime'})
PERIODS.update({(29,36): 'Halftime - 59:59'})
PERIODS.update({(29,37): '60:00 - 74:59'})
PERIODS.update({(29,38): '75:00 - Fulltime'})
PERIODS.update({(29,39): 'To Win Final'})
PERIODS.update({(4,0): 'Game'})
PERIODS.update({(4,1): '1st Half'})
PERIODS.update({(4,2): '2nd Half'})
PERIODS.update({(4,3): '1st Quarter'})
PERIODS.update({(4,4): '2nd Quarter'})
PERIODS.update({(4,5): '3rd Quarter'})
PERIODS.update({(4,6): '4th Quarter'})
PERIODS.update({(33,0): 'Match'})
PERIODS.update({(33,1): '1st Set'})
PERIODS.update({(33,2): '2nd Set'})
PERIODS.update({(33,3): '3rd Set'})
PERIODS.update({(33,4): '4th Set'})
PERIODS.update({(33,5): '5th Set'})
PERIODS.update({(33,6): 'Set 1 Game 1'})
PERIODS.update({(33,7): 'Set 1 Game 2'})
PERIODS.update({(33,8): 'Set 1 Game 3'})
PERIODS.update({(33,9): 'Set 1 Game 4'})
PERIODS.update({(33,10): 'Set 1 Game 5'})
PERIODS.update({(33,11): 'Set 1 Game 6'})
PERIODS.update({(33,12): 'Set 1 Game 7'})
PERIODS.update({(33,13): 'Set 1 Game 8'})
PERIODS.update({(33,14): 'Set 1 Game 9'})
PERIODS.update({(33,15): 'Set 1 Game 10'})
PERIODS.update({(33,16): 'Set 1 Game 11'})
PERIODS.update({(33,17): 'Set 1 Game 12'})
PERIODS.update({(33,18): 'Set 1 Game 13'})
PERIODS.update({(33,19): 'Set 2 Game 1'})
PERIODS.update({(33,20): 'Set 2 Game 2'})
PERIODS.update({(33,21): 'Set 2 Game 3'})
PERIODS.update({(33,22): 'Set 2 Game 4'})
PERIODS.update({(33,23): 'Set 2 Game 5'})
PERIODS.update({(33,24): 'Set 2 Game 6'})
PERIODS.update({(33,25): 'Set 2 Game 7'})
PERIODS.update({(33,26): 'Set 2 Game 8'})
PERIODS.update({(33,27): 'Set 2 Game 9'})
PERIODS.update({(33,28): 'Set 2 Game 10'})
PERIODS.update({(33,29): 'Set 2 Game 11'})
PERIODS.update({(33,30): 'Set 2 Game 12'})
PERIODS.update({(33,31): 'Set 2 Game 13'})
PERIODS.update({(33,32): 'Set 3 Game 1'})
PERIODS.update({(33,33): 'Set 3 Game 2'})
PERIODS.update({(33,34): 'Set 3 Game 3'})
PERIODS.update({(33,35): 'Set 3 Game 4'})
PERIODS.update({(33,36): 'Set 3 Game 5'})
PERIODS.update({(33,37): 'Set 3 Game 6'})
PERIODS.update({(33,38): 'Set 3 Game 7'})
PERIODS.update({(33,39): 'Set 3 Game 8'})
PERIODS.update({(33,40): 'Set 3 Game 9'})
PERIODS.update({(33,41): 'Set 3 Game 10'})
PERIODS.update({(33,42): 'Set 3 Game 11'})
PERIODS.update({(33,43): 'Set 3 Game 12'})
PERIODS.update({(33,44): 'Set 3 Game 13'})
PERIODS.update({(33,45): 'Set 3 Game 14'})
PERIODS.update({(33,46): 'Set 3 Game 15'})
PERIODS.update({(33,47): 'Set 3 Game 16'})
PERIODS.update({(33,48): 'Set 3 Game 17'})
PERIODS.update({(33,49): 'Set 3 Game 18'})
PERIODS.update({(33,50): 'Set 3 Game 19'})
PERIODS.update({(33,51): 'Set 3 Game 20'})
PERIODS.update({(33,52): 'Set 3 Game 21'})
PERIODS.update({(33,53): 'Set 3 Game 22'})
PERIODS.update({(33,54): 'Set 3 Game 23'})
PERIODS.update({(33,55): 'Set 3 Game 24'})
PERIODS.update({(33,56): 'Set 3 Game 25'})
PERIODS.update({(33,57): 'Set 3 Game 26'})
PERIODS.update({(33,58): 'Set 3 Game 27'})
PERIODS.update({(33,59): 'Set 3 Game 28'})
PERIODS.update({(33,60): 'Set 3 Game 29'})
PERIODS.update({(33,61): 'Set 3 Game 30'})
PERIODS.update({(33,62): 'Set 3 Game 31'})
PERIODS.update({(33,63): 'Set 3 Game 32'})
PERIODS.update({(33,64): 'Set 3 Game 33'})
PERIODS.update({(33,65): 'Set 3 Game 34'})
PERIODS.update({(33,66): 'Set 3 Game 35'})
PERIODS.update({(33,67): 'Set 3 Game 36'})
PERIODS.update({(33,68): 'Set 3 Game 37'})
PERIODS.update({(33,69): 'Set 3 Game 38'})
PERIODS.update({(33,70): 'Set 3 Game 39'})
PERIODS.update({(33,71): 'Set 3 Game 40'})
PERIODS.update({(33,72): 'Set 3 Game 41'})
PERIODS.update({(33,73): 'Set 3 Game 42'})
PERIODS.update({(33,74): 'Set 3 Game 43'})
PERIODS.update({(33,75): 'Set 3 Game 44'})
PERIODS.update({(33,76): 'Set 3 Game 45'})
PERIODS.update({(33,77): 'Set 3 Game 46'})
PERIODS.update({(33,78): 'Set 3 Game 47'})
PERIODS.update({(33,79): 'Set 3 Game 48'})
PERIODS.update({(33,80): 'Set 3 Game 49'})
PERIODS.update({(33,81): 'Set 3 Game 50'})
PERIODS.update({(33,82): 'Set 3 Game 51'})
PERIODS.update({(33,83): 'Set 3 Game 52'})
PERIODS.update({(33,84): 'Set 3 Game 53'})
PERIODS.update({(33,85): 'Set 3 Game 54'})
PERIODS.update({(33,86): 'Set 3 Game 55'})
PERIODS.update({(33,87): 'Set 3 Game 56'})
PERIODS.update({(33,88): 'Set 3 Game 57'})
PERIODS.update({(33,89): 'Set 3 Game 58'})
PERIODS.update({(33,90): 'Set 3 Game 59'})
PERIODS.update({(33,91): 'Set 3 Game 60'})
PERIODS.update({(33,92): 'Set 3 Game 61'})
PERIODS.update({(33,93): 'Set 3 Game 62'})
PERIODS.update({(33,94): 'Set 3 Game 63'})
PERIODS.update({(33,95): 'Set 3 Game 64'})
PERIODS.update({(33,96): 'Set 3 Game 65'})
PERIODS.update({(33,97): 'Set 3 Game 66'})
PERIODS.update({(33,98): 'Set 3 Game 67'})
PERIODS.update({(33,99): 'Set 3 Game 68'})
PERIODS.update({(33,100): 'Set 3 Game 69'})
PERIODS.update({(33,101): 'Set 3 Game 70'})
PERIODS.update({(33,102): 'Set 3 Game 71'})
PERIODS.update({(33,103): 'Set 3 Game 72'})
PERIODS.update({(33,104): 'Set 3 Game 73'})
PERIODS.update({(33,105): 'Set 3 Game 74'})
PERIODS.update({(33,106): 'Set 3 Game 75'})
PERIODS.update({(33,107): 'Set 3 Game 76'})
PERIODS.update({(33,108): 'Set 3 Game 77'})
PERIODS.update({(33,109): 'Set 3 Game 78'})
PERIODS.update({(33,110): 'Set 3 Game 79'})
PERIODS.update({(33,111): 'Set 3 Game 80'})
PERIODS.update({(33,112): 'Set 3 Game 81'})
PERIODS.update({(33,113): 'Set 3 Game 82'})
PERIODS.update({(33,114): 'Set 3 Game 83'})
PERIODS.update({(33,115): 'Set 3 Game 84'})
PERIODS.update({(33,116): 'Set 3 Game 85'})
PERIODS.update({(33,117): 'Set 3 Game 86'})
PERIODS.update({(33,118): 'Set 3 Game 87'})
PERIODS.update({(33,119): 'Set 3 Game 88'})
PERIODS.update({(33,120): 'Set 3 Game 89'})
PERIODS.update({(33,121): 'Set 3 Game 90'})
PERIODS.update({(33,122): 'Set 3 Game 91'})
PERIODS.update({(33,123): 'Set 3 Game 92'})
PERIODS.update({(33,124): 'Set 3 Game 93'})
PERIODS.update({(33,125): 'Set 3 Game 94'})
PERIODS.update({(33,126): 'Set 3 Game 95'})
PERIODS.update({(33,127): 'Set 3 Game 96'})
PERIODS.update({(33,128): 'Set 3 Game 97'})
PERIODS.update({(33,129): 'Set 3 Game 98'})
PERIODS.update({(33,130): 'Set 3 Game 99'})
PERIODS.update({(33,131): 'Set 3 Game 100'})
PERIODS.update({(33,132): 'Set 4 Game 1'})
PERIODS.update({(33,133): 'Set 4 Game 2'})
PERIODS.update({(33,134): 'Set 4 Game 3'})
PERIODS.update({(33,135): 'Set 4 Game 4'})
PERIODS.update({(33,136): 'Set 4 Game 5'})
PERIODS.update({(33,137): 'Set 4 Game 6'})
PERIODS.update({(33,138): 'Set 4 Game 7'})
PERIODS.update({(33,139): 'Set 4 Game 8'})
PERIODS.update({(33,140): 'Set 4 Game 9'})
PERIODS.update({(33,141): 'Set 4 Game 10'})
PERIODS.update({(33,142): 'Set 4 Game 11'})
PERIODS.update({(33,143): 'Set 4 Game 12'})
PERIODS.update({(33,144): 'Set 4 Game 13'})
PERIODS.update({(33,145): 'Set 5 Game 1'})
PERIODS.update({(33,146): 'Set 5 Game 2'})
PERIODS.update({(33,147): 'Set 5 Game 3'})
PERIODS.update({(33,148): 'Set 5 Game 4'})
PERIODS.update({(33,149): 'Set 5 Game 5'})
PERIODS.update({(33,150): 'Set 5 Game 6'})
PERIODS.update({(33,151): 'Set 5 Game 7'})
PERIODS.update({(33,152): 'Set 5 Game 8'})
PERIODS.update({(33,153): 'Set 5 Game 9'})
PERIODS.update({(33,154): 'Set 5 Game 10'})
PERIODS.update({(33,155): 'Set 5 Game 11'})
PERIODS.update({(33,156): 'Set 5 Game 12'})
PERIODS.update({(33,157): 'Set 5 Game 13'})
PERIODS.update({(33,158): 'Set 5 Game 14'})
PERIODS.update({(33,159): 'Set 5 Game 15'})
PERIODS.update({(33,160): 'Set 5 Game 16'})
PERIODS.update({(33,161): 'Set 5 Game 17'})
PERIODS.update({(33,162): 'Set 5 Game 18'})
PERIODS.update({(33,163): 'Set 5 Game 19'})
PERIODS.update({(33,164): 'Set 5 Game 20'})
PERIODS.update({(33,165): 'Set 5 Game 21'})
PERIODS.update({(33,166): 'Set 5 Game 22'})
PERIODS.update({(33,167): 'Set 5 Game 23'})
PERIODS.update({(33,168): 'Set 5 Game 24'})
PERIODS.update({(33,169): 'Set 5 Game 25'})
PERIODS.update({(33,170): 'Set 5 Game 26'})
PERIODS.update({(33,171): 'Set 5 Game 27'})
PERIODS.update({(33,172): 'Set 5 Game 28'})
PERIODS.update({(33,173): 'Set 5 Game 29'})
PERIODS.update({(33,174): 'Set 5 Game 30'})
PERIODS.update({(33,175): 'Set 5 Game 31'})
PERIODS.update({(33,176): 'Set 5 Game 32'})
PERIODS.update({(33,177): 'Set 5 Game 33'})
PERIODS.update({(33,178): 'Set 5 Game 34'})
PERIODS.update({(33,179): 'Set 5 Game 35'})
PERIODS.update({(33,180): 'Set 5 Game 36'})
PERIODS.update({(33,181): 'Set 5 Game 37'})
PERIODS.update({(33,182): 'Set 5 Game 38'})
PERIODS.update({(33,183): 'Set 5 Game 39'})
PERIODS.update({(33,184): 'Set 5 Game 40'})
PERIODS.update({(33,185): 'Set 5 Game 41'})
PERIODS.update({(33,186): 'Set 5 Game 42'})
PERIODS.update({(33,187): 'Set 5 Game 43'})
PERIODS.update({(33,188): 'Set 5 Game 44'})
PERIODS.update({(33,189): 'Set 5 Game 45'})
PERIODS.update({(33,190): 'Set 5 Game 46'})
PERIODS.update({(33,191): 'Set 5 Game 47'})
PERIODS.update({(33,192): 'Set 5 Game 48'})
PERIODS.update({(33,193): 'Set 5 Game 49'})
PERIODS.update({(33,194): 'Set 5 Game 50'})
PERIODS.update({(33,195): 'Set 5 Game 51'})
PERIODS.update({(33,196): 'Set 5 Game 52'})
PERIODS.update({(33,197): 'Set 5 Game 53'})
PERIODS.update({(33,198): 'Set 5 Game 54'})
PERIODS.update({(33,199): 'Set 5 Game 55'})
PERIODS.update({(33,200): 'Set 5 Game 56'})
PERIODS.update({(33,201): 'Set 5 Game 57'})
PERIODS.update({(33,202): 'Set 5 Game 58'})
PERIODS.update({(33,203): 'Set 5 Game 59'})
PERIODS.update({(33,204): 'Set 5 Game 60'})
PERIODS.update({(33,205): 'Set 5 Game 61'})
PERIODS.update({(33,206): 'Set 5 Game 62'})
PERIODS.update({(33,207): 'Set 5 Game 63'})
PERIODS.update({(33,208): 'Set 5 Game 64'})
PERIODS.update({(33,209): 'Set 5 Game 65'})
PERIODS.update({(33,210): 'Set 5 Game 66'})
PERIODS.update({(33,211): 'Set 5 Game 67'})
PERIODS.update({(33,212): 'Set 5 Game 68'})
PERIODS.update({(33,213): 'Set 5 Game 69'})
PERIODS.update({(33,214): 'Set 5 Game 70'})
PERIODS.update({(33,215): 'Set 5 Game 71'})
PERIODS.update({(33,216): 'Set 5 Game 72'})
PERIODS.update({(33,217): 'Set 5 Game 73'})
PERIODS.update({(33,218): 'Set 5 Game 74'})
PERIODS.update({(33,219): 'Set 5 Game 75'})
PERIODS.update({(33,220): 'Set 5 Game 76'})
PERIODS.update({(33,221): 'Set 5 Game 77'})
PERIODS.update({(33,222): 'Set 5 Game 78'})
PERIODS.update({(33,223): 'Set 5 Game 79'})
PERIODS.update({(33,224): 'Set 5 Game 80'})
PERIODS.update({(33,225): 'Set 5 Game 81'})
PERIODS.update({(33,226): 'Set 5 Game 82'})
PERIODS.update({(33,227): 'Set 5 Game 83'})
PERIODS.update({(33,228): 'Set 5 Game 84'})
PERIODS.update({(33,229): 'Set 5 Game 85'})
PERIODS.update({(33,230): 'Set 5 Game 86'})
PERIODS.update({(33,231): 'Set 5 Game 87'})
PERIODS.update({(33,232): 'Set 5 Game 88'})
PERIODS.update({(33,233): 'Set 5 Game 89'})
PERIODS.update({(33,234): 'Set 5 Game 90'})
PERIODS.update({(33,235): 'Set 5 Game 91'})
PERIODS.update({(33,236): 'Set 5 Game 92'})
PERIODS.update({(33,237): 'Set 5 Game 93'})
PERIODS.update({(33,238): 'Set 5 Game 94'})
PERIODS.update({(33,239): 'Set 5 Game 95'})
PERIODS.update({(33,240): 'Set 5 Game 96'})
PERIODS.update({(33,241): 'Set 5 Game 97'})
PERIODS.update({(33,242): 'Set 5 Game 98'})
PERIODS.update({(33,243): 'Set 5 Game 99'})
PERIODS.update({(33,244): 'Set 5 Game 100'})
PERIODS.update({(3,0): 'Game'})
PERIODS.update({(3,1): '1st Half'})
PERIODS.update({(3,2): '2nd Half'})
PERIODS.update({(3,3): '1st Inning'})
PERIODS.update({(3,4): '2nd Inning'})
PERIODS.update({(3,5): '3rd Inning'})
PERIODS.update({(3,6): '4th Inning'})
PERIODS.update({(3,7): '5th Inning'})
PERIODS.update({(3,8): '6th Inning'})
PERIODS.update({(3,9): '7th Inning'})
PERIODS.update({(3,10): '8th Inning'})
PERIODS.update({(3,11): '9th Inning'})
PERIODS.update({(3,12): 'Innings 1 to 7'})
PERIODS.update({(15,0): 'Game'})
PERIODS.update({(15,1): '1st Half'})
PERIODS.update({(15,2): '2nd Half'})
PERIODS.update({(15,3): '1st Quarter'})
PERIODS.update({(15,4): '2nd Quarter'})
PERIODS.update({(15,5): '3rd Quarter'})
PERIODS.update({(15,6): '4th Quarter'})
PERIODS.update({(19,0): 'OT Included'})
PERIODS.update({(19,1): '1st Period'})
PERIODS.update({(19,2): '2nd Period'})
PERIODS.update({(19,3): '3rd Period'})
PERIODS.update({(19,4): 'Overtime'})
PERIODS.update({(19,5): 'Shootout'})
PERIODS.update({(19,6): 'Regulation Time'})
PERIODS.update({(26,0): 'Match'})
PERIODS.update({(26,1): '1st Half'})
PERIODS.update({(26,2): '2nd Half'})
PERIODS.update({(27,0): 'Match'})
PERIODS.update({(27,1): '1st Half'})
PERIODS.update({(27,2): '2nd Half'})
PERIODS.update({(10,0): 'Match'})
PERIODS.update({(10,1): '1st Set'})
PERIODS.update({(10,2): '2nd Set'})
PERIODS.update({(10,3): '3rd Set'})
PERIODS.update({(10,4): '4th Set'})
PERIODS.update({(10,5): '5th Set'})
PERIODS.update({(8,0): 'Match'})
PERIODS.update({(8,1): 'Inning 1'})
PERIODS.update({(8,2): 'Inning 2'})
PERIODS.update({(8,3): 'Inning 1 Overs 1-6'})
PERIODS.update({(8,4): 'Inning 1 Overs 7-10'})
PERIODS.update({(8,5): 'Inning 1 Overs 11-15'})
PERIODS.update({(8,6): 'Inning 1 Overs 16-20'})
PERIODS.update({(8,7): 'Inning 1 Overs 1-5'})
PERIODS.update({(8,8): 'Inning 1 Overs 6-10'})
PERIODS.update({(8,9): 'Inning 1 Overs 21-25'})
PERIODS.update({(8,10): 'Inning 1 Overs 26-30'})
PERIODS.update({(8,11): 'Inning 1 Overs 31-35'})
PERIODS.update({(8,12): 'Inning 1 Overs 36-40'})
PERIODS.update({(8,13): 'Inning 1 Overs 41-45'})
PERIODS.update({(8,14): 'Inning 1 Overs 46-50'})
PERIODS.update({(8,15): 'Inning 1 Pair 1'})
PERIODS.update({(8,16): 'Inning 1 Over 1'})
PERIODS.update({(8,17): 'Inning 1 Over 2'})
PERIODS.update({(8,18): 'Inning 1 Over 3'})
PERIODS.update({(8,19): 'Inning 1 Over 4'})
PERIODS.update({(8,20): 'Inning 1 Over 5'})
PERIODS.update({(8,21): 'Inning 1 Over 6'})
PERIODS.update({(8,22): 'Inning 1 Over 7'})
PERIODS.update({(8,23): 'Inning 1 Over 8'})
PERIODS.update({(8,24): 'Inning 1 Over 9'})
PERIODS.update({(8,25): 'Inning 1 Over 10'})
PERIODS.update({(8,26): 'Inning 1 Over 11'})
PERIODS.update({(8,27): 'Inning 1 Over 12'})
PERIODS.update({(8,28): 'Inning 1 Over 13'})
PERIODS.update({(8,29): 'Inning 1 Over 14'})
PERIODS.update({(8,30): 'Inning 1 Over 15'})
PERIODS.update({(8,31): 'Inning 1 Over 16'})
PERIODS.update({(8,32): 'Inning 1 Over 17'})
PERIODS.update({(8,33): 'Inning 1 Over 18'})
PERIODS.update({(8,34): 'Inning 1 Over 19'})
PERIODS.update({(8,35): 'Inning 1 Over 20'})
PERIODS.update({(8,36): 'Inning 1 Over 21'})
PERIODS.update({(8,37): 'Inning 1 Over 22'})
PERIODS.update({(8,38): 'Inning 1 Over 23'})
PERIODS.update({(8,39): 'Inning 1 Over 24'})
PERIODS.update({(8,40): 'Inning 1 Over 25'})
PERIODS.update({(8,41): 'Inning 1 Over 26'})
PERIODS.update({(8,42): 'Inning 1 Over 27'})
PERIODS.update({(8,43): 'Inning 1 Over 28'})
PERIODS.update({(8,44): 'Inning 1 Over 29'})
PERIODS.update({(8,45): 'Inning 1 Over 30'})
PERIODS.update({(8,46): 'Inning 1 Over 31'})
PERIODS.update({(8,47): 'Inning 1 Over 32'})
PERIODS.update({(8,48): 'Inning 1 Over 33'})
PERIODS.update({(8,49): 'Inning 1 Over 34'})
PERIODS.update({(8,50): 'Inning 1 Over 35'})
PERIODS.update({(8,51): 'Inning 1 Over 36'})
PERIODS.update({(8,52): 'Inning 1 Over 37'})
PERIODS.update({(8,53): 'Inning 1 Over 38'})
PERIODS.update({(8,54): 'Inning 1 Over 39'})
PERIODS.update({(8,55): 'Inning 1 Over 40'})
PERIODS.update({(8,56): 'Inning 1 Over 41'})
PERIODS.update({(8,57): 'Inning 1 Over 42'})
PERIODS.update({(8,58): 'Inning 1 Over 43'})
PERIODS.update({(8,59): 'Inning 1 Over 44'})
PERIODS.update({(8,60): 'Inning 1 Over 45'})
PERIODS.update({(8,61): 'Inning 1 Over 46'})
PERIODS.update({(8,62): 'Inning 1 Over 47'})
PERIODS.update({(8,63): 'Inning 1 Over 48'})
PERIODS.update({(8,64): 'Inning 1 Over 49'})
PERIODS.update({(8,65): 'Inning 1 Over 50'})
PERIODS.update({(8,66): 'Super Over 1'})
PERIODS.update({(8,67): 'Inning 2 Overs 1-6'})
PERIODS.update({(8,68): 'Inning 2 Overs 7-10'})
PERIODS.update({(8,69): 'Inning 2 Overs 11-15'})
PERIODS.update({(8,70): 'Inning 2 Overs 16-20'})
PERIODS.update({(8,71): 'Inning 2 Overs 1-5'})
PERIODS.update({(8,72): 'Inning 2 Overs 6-10'})
PERIODS.update({(8,73): 'Inning 2 Overs 21-25'})
PERIODS.update({(8,74): 'Inning 2 Overs 26-30'})
PERIODS.update({(8,75): 'Inning 2 Overs 31-35'})
PERIODS.update({(8,76): 'Inning 2 Overs 36-40'})
PERIODS.update({(8,77): 'Inning 2 Overs 41-45'})
PERIODS.update({(8,78): 'Inning 2 Overs 46-50'})
PERIODS.update({(8,79): 'Inning 2 Pair 1'})
PERIODS.update({(8,80): 'Inning 2 Over 1'})
PERIODS.update({(8,81): 'Inning 2 Over 2'})
PERIODS.update({(8,82): 'Inning 2 Over 3'})
PERIODS.update({(8,83): 'Inning 2 Over 4'})
PERIODS.update({(8,84): 'Inning 2 Over 5'})
PERIODS.update({(8,85): 'Inning 2 Over 6'})
PERIODS.update({(8,86): 'Inning 2 Over 7'})
PERIODS.update({(8,87): 'Inning 2 Over 8'})
PERIODS.update({(8,88): 'Inning 2 Over 9'})
PERIODS.update({(8,89): 'Inning 2 Over 10'})
PERIODS.update({(8,90): 'Inning 2 Over 11'})
PERIODS.update({(8,91): 'Inning 2 Over 12'})
PERIODS.update({(8,92): 'Inning 2 Over 13'})
PERIODS.update({(8,93): 'Inning 2 Over 14'})
PERIODS.update({(8,94): 'Inning 2 Over 15'})
PERIODS.update({(8,95): 'Inning 2 Over 16'})
PERIODS.update({(8,96): 'Inning 2 Over 17'})
PERIODS.update({(8,97): 'Inning 2 Over 18'})
PERIODS.update({(8,98): 'Inning 2 Over 19'})
PERIODS.update({(8,99): 'Inning 2 Over 20'})
PERIODS.update({(8,100): 'Inning 2 Over 21'})
PERIODS.update({(8,101): 'Inning 2 Over 22'})
PERIODS.update({(8,102): 'Inning 2 Over 23'})
PERIODS.update({(8,103): 'Inning 2 Over 24'})
PERIODS.update({(8,104): 'Inning 2 Over 25'})
PERIODS.update({(8,105): 'Inning 2 Over 26'})
PERIODS.update({(8,106): 'Inning 2 Over 27'})
PERIODS.update({(8,107): 'Inning 2 Over 28'})
PERIODS.update({(8,108): 'Inning 2 Over 29'})
PERIODS.update({(8,109): 'Inning 2 Over 30'})
PERIODS.update({(8,110): 'Inning 2 Over 31'})
PERIODS.update({(8,111): 'Inning 2 Over 32'})
PERIODS.update({(8,112): 'Inning 2 Over 33'})
PERIODS.update({(8,113): 'Inning 2 Over 34'})
PERIODS.update({(8,114): 'Inning 2 Over 35'})
PERIODS.update({(8,115): 'Inning 2 Over 36'})
PERIODS.update({(8,116): 'Inning 2 Over 37'})
PERIODS.update({(8,117): 'Inning 2 Over 38'})
PERIODS.update({(8,118): 'Inning 2 Over 39'})
PERIODS.update({(8,119): 'Inning 2 Over 40'})
PERIODS.update({(8,120): 'Inning 2 Over 41'})
PERIODS.update({(8,121): 'Inning 2 Over 42'})
PERIODS.update({(8,122): 'Inning 2 Over 43'})
PERIODS.update({(8,123): 'Inning 2 Over 44'})
PERIODS.update({(8,124): 'Inning 2 Over 45'})
PERIODS.update({(8,125): 'Inning 2 Over 46'})
PERIODS.update({(8,126): 'Inning 2 Over 47'})
PERIODS.update({(8,127): 'Inning 2 Over 48'})
PERIODS.update({(8,128): 'Inning 2 Over 49'})
PERIODS.update({(8,129): 'Inning 2 Over 50'})
PERIODS.update({(8,130): 'Super Over 2'})
PERIODS.update({(8,131): 'Inning 1&2 Over 1-6'})
PERIODS.update({(8,132): 'Inning 1&2 Over 1-10'})
PERIODS.update({(8,133): 'Inning 1&2 Over 1-15'})
PERIODS.update({(8,134): 'Inning 1&2 Over 1-20'})
PERIODS.update({(8,135): 'Inning 1&2 Over 1'})
PERIODS.update({(8,136): 'Inning 1&2 Over 2'})
PERIODS.update({(8,137): 'Inning 1&2 Over 3'})
PERIODS.update({(8,138): 'Inning 1&2 Over 4'})
PERIODS.update({(8,139): 'Inning 1&2 Over 5'})
PERIODS.update({(8,140): 'Inning 1&2 Over 6'})
PERIODS.update({(8,141): 'Inning 1&2 Over 7'})
PERIODS.update({(8,142): 'Inning 1&2 Over 8'})
PERIODS.update({(8,143): 'Inning 1&2 Over 9'})
PERIODS.update({(8,144): 'Inning 1&2 Over 10'})
PERIODS.update({(8,145): 'Inning 1&2 Over 11'})
PERIODS.update({(8,146): 'Inning 1&2 Over 12'})
PERIODS.update({(8,147): 'Inning 1&2 Over 13'})
PERIODS.update({(8,148): 'Inning 1&2 Over 14'})
PERIODS.update({(8,149): 'Inning 1&2 Over 15'})
PERIODS.update({(8,150): 'Inning 1&2 Over 16'})
PERIODS.update({(8,151): 'Inning 1&2 Over 17'})
PERIODS.update({(8,152): 'Inning 1&2 Over 18'})
PERIODS.update({(8,153): 'Inning 1&2 Over 19'})
PERIODS.update({(8,154): 'Inning 1&2 Over 20'})
PERIODS.update({(8,155): 'Inning 1 Overs 1-10'})
PERIODS.update({(8,156): 'Inning 1 Overs 1-15'})
PERIODS.update({(8,157): 'Inning 1 Overs 1-20'})
PERIODS.update({(8,158): 'Inning 2 Overs 1-10'})
PERIODS.update({(8,159): 'Inning 2 Overs 1-15'})
PERIODS.update({(8,160): 'Inning 2 Overs 1-20'})
PERIODS.update({(17,0): 'Matchups'})
PERIODS.update({(18,0): 'Match'})
PERIODS.update({(18,1): '1st Half'})
PERIODS.update({(18,2): '2nd Half'})
PERIODS.update({(28,0): 'Match'})
PERIODS.update({(28,1): '1st Frame'})
PERIODS.update({(34,0): 'Match'})
PERIODS.update({(34,1): '1st Set'})
PERIODS.update({(34,2): '2nd Set'})
PERIODS.update({(34,3): '3rd Set'})
PERIODS.update({(34,4): '4th Set'})
PERIODS.update({(34,5): '5th Set'})
PERIODS.update({(39,0): 'Game'})
PERIODS.update({(39,1): '1st Half'})
PERIODS.update({(39,2): '2nd Half'})
PERIODS.update({(39,3): '1st Quarter'})
PERIODS.update({(39,4): '2nd Quarter'})
PERIODS.update({(39,5): '3rd Quarter'})
PERIODS.update({(39,6): '4th Quarter'})
PERIODS.update({(40,0): 'Matchups'})
PERIODS.update({(56,0): 'Matchups'})
PERIODS.update({(1,0): 'Match'})
PERIODS.update({(1,1): '1st Game'})
PERIODS.update({(1,2): '2nd Game'})
PERIODS.update({(1,3): '3rd Game'})
PERIODS.update({(2,0): 'Match'})
PERIODS.update({(2,1): '1st Half'})
PERIODS.update({(2,2): '2nd Half'})
PERIODS.update({(5,0): 'Match'})
PERIODS.update({(5,1): '1st Set'})
PERIODS.update({(5,2): '2nd Set'})
PERIODS.update({(5,3): '3rd Set'})
PERIODS.update({(41,0): 'Matchups'})
PERIODS.update({(6,0): 'Fight'})
PERIODS.update({(7,0): 'Match'})
PERIODS.update({(43,0): 'Matchups'})
PERIODS.update({(57,0): 'Matchups'})
PERIODS.update({(9,0): 'Game'})
PERIODS.update({(9,1): '1st End'})
PERIODS.update({(45,0): 'Matchups'})
PERIODS.update({(58,0): 'Matchups'})
PERIODS.update({(13,0): 'Match'})
PERIODS.update({(13,1): '1st Half'})
PERIODS.update({(13,2): '2nd Half'})
PERIODS.update({(44,0): 'Matchups'})
PERIODS.update({(16,0): 'Match'})
PERIODS.update({(16,1): '1st Half'})
PERIODS.update({(16,2): '2nd Half'})
PERIODS.update({(22,0): 'Fight'})
PERIODS.update({(22,1): 'Round 1'})
PERIODS.update({(22,2): 'Round 2'})
PERIODS.update({(22,3): 'Round 3'})
PERIODS.update({(22,4): 'Round 4'})
PERIODS.update({(22,5): 'Round 5'})
PERIODS.update({(63,0): 'Matchups'})
PERIODS.update({(55,0): 'Match'})
PERIODS.update({(37,0): 'Match'})
PERIODS.update({(37,1): '1st Set Winner'})
PERIODS.update({(37,2): '2nd Set Winner'})
PERIODS.update({(37,3): '3rd Set Winner'})
PERIODS.update({(42,0): 'Matchups'})
PERIODS.update({(30,0): 'Game'})
PERIODS.update({(30,1): '1st Half'})
PERIODS.update({(30,2): '2st Half'})
PERIODS.update({(31,0): 'Match'})
PERIODS.update({(31,1): '1st Game'})
PERIODS.update({(31,2): '2nd Game'})
PERIODS.update({(31,3): '3rd Game'})
PERIODS.update({(31,4): '4th Game'})
PERIODS.update({(31,5): '5th Game'})
PERIODS.update({(65,0): 'Match'})
PERIODS.update({(32,0): 'Match'})
PERIODS.update({(32,1): '1st Game'})
PERIODS.update({(32,2): '2nd Game'})
PERIODS.update({(32,3): '3rd Game'})
PERIODS.update({(32,4): '4th Game'})
PERIODS.update({(32,5): '5th Game'})
PERIODS.update({(32,6): '6th Game'})
PERIODS.update({(36,0): 'Match'})
PERIODS.update({(36,1): '1st Period'})
PERIODS.update({(36,2): '2nd Period'})
PERIODS.update({(36,3): '3rd Period'})
PERIODS.update({(36,4): '4th Period'})
BOOKS = set()
BOOKS.add('Stake')
BOOKS.add('Betano')
BOOKS.add('bet365')
BOOKS.add('Hollywoodbets')
BOOKS.add('Bet9ja')
BOOKS.add('Betika')
BOOKS.add('SportyBet')
BOOKS.add('Betnacional')
BOOKS.add('Betfair')
BOOKS.add('Sportingbet')
BOOKS.add('EstrelaBet')
BOOKS.add('MELbet')
BOOKS.add('Winline')
BOOKS.add('Betway')
BOOKS.add('Wplay.co')
BOOKS.add('Brazino777')
BOOKS.add('Caliente')
BOOKS.add('BetKing')
BOOKS.add('Superbet')
BOOKS.add('Fortuna')
BOOKS.add('Nesine')
BOOKS.add('YesPlay')
BOOKS.add('BetPlay')
BOOKS.add('Unibet')
BOOKS.add('Adjarabet')
BOOKS.add('Rushbet')
BOOKS.add('Stoiximan')
BOOKS.add('FDJ')
BOOKS.add('Novibet')
BOOKS.add('Sisal')
BOOKS.add('Sky Bet')
BOOKS.add('Paddy Power')
BOOKS.add('1xBet')
BOOKS.add('Tipsport')
BOOKS.add('Ladbrokes')
BOOKS.add('pixbet')
BOOKS.add('William Hill')
BOOKS.add('Parimatch')
BOOKS.add('Veikkaus Pitkäveto')
BOOKS.add('HKJC')
BOOKS.add('FanDuel')
BOOKS.add('Betsson')
BOOKS.add('DraftKings')
BOOKS.add('Mozzart')
BOOKS.add('Winbet')
BOOKS.add('bwin')
BOOKS.add('Norsk Tipping')
BOOKS.add('Tipico')
BOOKS.add('TOTO')
BOOKS.add('BetClic')
BOOKS.add('Coral')
BOOKS.add('Blaze')
BOOKS.add('Bet.era')
BOOKS.add('KTO')
BOOKS.add('Sportium')
BOOKS.add('Svenskaspel Oddset')
BOOKS.add('Favbet')
BOOKS.add('Caesars Sportsbook')
BOOKS.add('Codere')
BOOKS.add('ATG')
BOOKS.add('Liga Stavok')
BOOKS.add('Odibets')
BOOKS.add('500.com')
BOOKS.add('Betcris')
BOOKS.add('betPawa')
BOOKS.add('Sazkabet')
BOOKS.add('BetWinner')
BOOKS.add('Lottomatica')
BOOKS.add('Inkabet')
BOOKS.add('PMU')
BOOKS.add('PalmsBet')
BOOKS.add('Galera.bet')
BOOKS.add('Te Apuesto')
BOOKS.add('BetCity')
BOOKS.add('Roobet')
BOOKS.add('Swisslos')
BOOKS.add('win2day')
BOOKS.add('MrJack.bet')
BOOKS.add('Fortebet')
BOOKS.add('GoldBet')
BOOKS.add('F12.bet')
BOOKS.add('Snai')
BOOKS.add('Meridianbet')
BOOKS.add('BetFlag')
BOOKS.add('iddaa')
BOOKS.add('Rivalo')
BOOKS.add('TAB.com.au')
BOOKS.add('LeoVegas')
BOOKS.add('Winamax')
BOOKS.add('STSbet')
BOOKS.add('Yajuego')
BOOKS.add('Easybet')
BOOKS.add('BetCity.nl')
BOOKS.add('Pamestoixima')
BOOKS.add('Danske Spil Oddset')
BOOKS.add('ZEturf')
BOOKS.add('Lottoland')
BOOKS.add('SuperSport')
BOOKS.add('Synot Tip')
BOOKS.add('OlyBet')
BOOKS.add('BC.Game')
BOOKS.add('TippmixPro')
BOOKS.add('Chance')
BOOKS.add('Singapore Pools')
BOOKS.add('Betlive')
BOOKS.add('22BET')
BOOKS.add('Marathonbet')
BOOKS.add('Eurobet')
BOOKS.add('Coolbet')
BOOKS.add('Gamdom')
BOOKS.add('World Sports Betting')
BOOKS.add('Betsafe')
BOOKS.add('Boylesports')
BOOKS.add('planetwin365')
BOOKS.add('Nike')
BOOKS.add('Admiral')
BOOKS.add('TwinSpires')
BOOKS.add('efbet')
BOOKS.add('BetMGM')
BOOKS.add('Optibet')
BOOKS.add('Interwetten')
BOOKS.add('TVG')
BOOKS.add('bet-at-home')
BOOKS.add('Betfred')
BOOKS.add('Olimp')
BOOKS.add('888 Sport')
BOOKS.add('Grosvenor Casinos')
BOOKS.add('NetBet')
BOOKS.add('TAB.co.nz')
BOOKS.add('Oley')
BOOKS.add('TOPsport')
BOOKS.add('BetVictor')
BOOKS.add('20Bet')
BOOKS.add('Bilyoner')
BOOKS.add('10bet')
BOOKS.add('Inbet')
BOOKS.add('Crystalbet')
BOOKS.add('Virgin Bet')
BOOKS.add('Misli')
BOOKS.add('Casa Pariurilor')
BOOKS.add('32Red')
BOOKS.add('Paf')
BOOKS.add('PlayaBets')
BOOKS.add('Pagbet')
BOOKS.add('MaxBet.rs')
BOOKS.add('Pinnacle')
BOOKS.add('winmasters')
BOOKS.add('TotoGaming')
BOOKS.add('MegApuesta')
BOOKS.add('SunBet')
BOOKS.add('Polla Chilena')
BOOKS.add('Aposta.La')
BOOKS.add('8888')
BOOKS.add('Betshop')
BOOKS.add('NineCasino')
BOOKS.add('Winner.co.il')
BOOKS.add('europebet')
BOOKS.add('Supabets')
BOOKS.add('Rikstoto')
BOOKS.add('TonyBet')
BOOKS.add('Leon Bets')
BOOKS.add('Bangbet')
BOOKS.add('Sports Interaction')
BOOKS.add('iBet789')
BOOKS.add('Bet Plays')
BOOKS.add('ESC Online')
BOOKS.add('Gets Bet')
BOOKS.add('Leader-Bet')
BOOKS.add('Dafabet')
BOOKS.add('ComeOn!')
BOOKS.add('Trust Dice')
BOOKS.add('Bluechip')
BOOKS.add('VBET')
BOOKS.add('Mystake')
BOOKS.add('Rivalry')
BOOKS.add('Duelbits')
BOOKS.add('Gal Sport Betting')
BOOKS.add('PremierBet')
BOOKS.add('Velobet')
BOOKS.add('GGBet')
BOOKS.add('Soccabet')
BOOKS.add('Giocodigitale')
BOOKS.add('Casa de Apostas')
BOOKS.add('Smarkets')
BOOKS.add('eTipos')
BOOKS.add('Circus')
BOOKS.add('RojaBet')
BOOKS.add('Solverde.pt')
BOOKS.add('Sportsbet.io')
BOOKS.add('Satsport')
BOOKS.add('Premier Kladionica')
BOOKS.add('WasafiBet')
BOOKS.add('MerkurXtip')
BOOKS.add('Strendus')
BOOKS.add('Luckia')
BOOKS.add('Casumo')
BOOKS.add('Genybet')
BOOKS.add('Napoleon Games')
BOOKS.add('7bet')
BOOKS.add('Alphawin')
BOOKS.add('HPIbet')
BOOKS.add('Loterie Romande')
BOOKS.add('Rollbit')
BOOKS.add('Coins.game')
BOOKS.add('Betpix')
BOOKS.add('Crocobet')
BOOKS.add('WWin')
BOOKS.add('SportPesa')
BOOKS.add('Bet UK')
BOOKS.add('Mr Green')
BOOKS.add('BetPoint')
BOOKS.add('Matchbook')
BOOKS.add('Betboo')
BOOKS.add('Cosmobet')
BOOKS.add('BataviaBets')
BOOKS.add('NordicBet')
BOOKS.add('Bet3000')
BOOKS.add('BalkanBet')
BOOKS.add('Qbet')
BOOKS.add('LV BET')
BOOKS.add('Esportiva.bet')
BOOKS.add('Tuttur')
BOOKS.add('Baji')
BOOKS.add('Premier')
BOOKS.add('Casino Portugal')
BOOKS.add('Sesame')
BOOKS.add('Expekt')
BOOKS.add('Meridianbet.co.tz')
BOOKS.add('SpinBet')
BOOKS.add('tipp3')
BOOKS.add('Maxline')
BOOKS.add('Gbets')
BOOKS.add('Neds')
BOOKS.add('AccessBET')
BOOKS.add('forBET')
BOOKS.add('SBOBET')
BOOKS.add('PowerPlay')
BOOKS.add('Betsul')
BOOKS.add('Cashpoint')
BOOKS.add('Volcano')
BOOKS.add('e-stave')
BOOKS.add('thepools')
BOOKS.add('Marsbet')
BOOKS.add('BetFury')
BOOKS.add('NairaBet')
BOOKS.add('Bet.co.za')
BOOKS.add('eTopaz')
BOOKS.add('RaceBets')
BOOKS.add('Thunderpick')
BOOKS.add('Cwinz')
BOOKS.add('MaxBet.ro')
BOOKS.add('Betcenter')
BOOKS.add('888Bet Tanzania')
BOOKS.add('Afropari')
BOOKS.add('Bingoal')
BOOKS.add('Placard')
BOOKS.add('Bet On Alfa')
BOOKS.add('Rajabets')
BOOKS.add('Betdaq')
BOOKS.add('BETFAN')
BOOKS.add('ibet')
BOOKS.add('Betsat')
BOOKS.add('Tote')
BOOKS.add('Boomerang-Bet')
BOOKS.add('MyWinners')
BOOKS.add('Mr Bet')
BOOKS.add('Mr Bit')
BOOKS.add('Winner.ro')
BOOKS.add('ZEbet')
BOOKS.add('BetOnRed')
BOOKS.add('Prva Sportska Kladionica')
BOOKS.add('Goldenbet')
BOOKS.add('BetRivers.NET')
BOOKS.add('kwiff')
BOOKS.add('Bet25')
BOOKS.add('bilbet')
BOOKS.add('Marca Apuestas')
BOOKS.add('partypoker')
BOOKS.add('WettArena')
BOOKS.add('12BET')
BOOKS.add('DOXXbet')
BOOKS.add('Interbet.co.za')
BOOKS.add('SportLife')
BOOKS.add('CopyBet')
BOOKS.add('Supermatch')
BOOKS.add('Cloudbet')
BOOKS.add('Megapari')
BOOKS.add('Rizk')
BOOKS.add('Zenit')
BOOKS.add('Snabbare')
BOOKS.add('JuegaEnLinea')
BOOKS.add('Spreadex')
BOOKS.add('Fafabet')
BOOKS.add('Rolletto')
BOOKS.add('QuiGioco')
BOOKS.add('Lucky Block')
BOOKS.add('310win')
BOOKS.add('Casino GranMadrid Online')
BOOKS.add('Midnite')
BOOKS.add('N1bet')
BOOKS.add('Bdmbet')
BOOKS.add('188BET')
BOOKS.add('Betspino')
BOOKS.add('Borgata Online')
BOOKS.add('Loteria Națională')
BOOKS.add('1xStavka')
BOOKS.add('BetInAsia')
BOOKS.add('RETABet')
BOOKS.add('Scooore')
BOOKS.add('Betaland')
BOOKS.add('Off Track Betting')
BOOKS.add('Pferdewetten')
BOOKS.add('ETOTO')
BOOKS.add('Cbet')
BOOKS.add('TOTALbet')
BOOKS.add('tipwin')
BOOKS.add('Svenplay')
BOOKS.add('Tab Gold')
BOOKS.add('Mansion88')
BOOKS.add('500.casino')
BOOKS.add('Zamba')
BOOKS.add('Versus')
BOOKS.add('Epicbet')