forked from Rahaman12/sumo-odds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1xbet-odds.html
12306 lines (11771 loc) · 787 KB
/
1xbet-odds.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sumo sports betting online | 1XBET.COM Betting Company</title>
<meta name="description" content="Bets on sumo can be placed here ► 1xbet.com. Profitable pre-match bets on sumo on 1x-bit.com with high odds!">
<meta name="format-detection" content="telephone=no">
<meta name="interkassa-verification" content="3906366cab1f0ec922d094faeffd27a4"/>
<meta name="w1-verification" content="194994611214"/>
<meta name="google-site-verification" content="YAljLlVrMC6Y-2Qq4nXQi8sFE20HwN-wprrRxwU_S1M"/>
<meta name="google-site-verification" content="ttSFVSVRXlgiShtuQFrgkkdCpXnbSUg98qkUwoiRcQ8"/>
<meta name="yandex-verification" content="a72d0af284068eb7" />
<link rel="alternate" hreflang="az" href="https://1xbet.com/az/line/Sumo/"/>
<link rel="alternate" hreflang="bg" href="https://1xbet.com/bg/line/Sumo/"/>
<link rel="alternate" hreflang="us" href="https://1xbet.com/us/line/Sumo/"/>
<link rel="alternate" hreflang="de" href="https://1xbet.com/de/line/Sumo/"/>
<link rel="alternate" hreflang="en" href="https://1xbet.com/en/line/Sumo/"/>
<link rel="alternate" hreflang="es" href="https://1xbet.com/es/line/Sumo/"/>
<link rel="alternate" hreflang="et" href="https://1xbet.com/et/line/Sumo/"/>
<link rel="alternate" hreflang="ir" href="https://1xbet.com/ir/line/Sumo/"/>
<link rel="alternate" hreflang="fi" href="https://1xbet.com/fi/line/Sumo/"/>
<link rel="alternate" hreflang="fr" href="https://1xbet.com/fr/line/Sumo/"/>
<link rel="alternate" hreflang="he" href="https://1xbet.com/he/line/Sumo/"/>
<link rel="alternate" hreflang="hi" href="https://1xbet.com/hi/line/Sumo/"/>
<link rel="alternate" hreflang="hr" href="https://1xbet.com/hr/line/Sumo/"/>
<link rel="alternate" hreflang="hu" href="https://1xbet.com/hu/line/Sumo/"/>
<link rel="alternate" hreflang="id" href="https://1xbet.com/id/line/Sumo/"/>
<link rel="alternate" hreflang="it" href="https://1xbet.com/it/line/Sumo/"/>
<link rel="alternate" hreflang="ge" href="https://1xbet.com/ge/line/Sumo/"/>
<link rel="alternate" hreflang="km" href="https://1xbet.com/km/line/Sumo/"/>
<link rel="alternate" hreflang="kr" href="https://1xbet.com/kr/line/Sumo/"/>
<link rel="alternate" hreflang="kz" href="https://1xbet.com/kz/line/Sumo/"/>
<link rel="alternate" hreflang="lt" href="https://1xbet.com/lt/line/Sumo/"/>
<link rel="alternate" hreflang="lv" href="https://1xbet.com/lv/line/Sumo/"/>
<link rel="alternate" hreflang="mk" href="https://1xbet.com/mk/line/Sumo/"/>
<link rel="alternate" hreflang="mn" href="https://1xbet.com/mn/line/Sumo/"/>
<link rel="alternate" hreflang="ms" href="https://1xbet.com/ms/line/Sumo/"/>
<link rel="alternate" hreflang="nb" href="https://1xbet.com/nb/line/Sumo/"/>
<link rel="alternate" hreflang="pl" href="https://1xbet.com/pl/line/Sumo/"/>
<link rel="alternate" hreflang="pt" href="https://1xbet.com/pt/line/Sumo/"/>
<link rel="alternate" hreflang="br" href="https://1xbet.com/br/line/Sumo/"/>
<link rel="alternate" hreflang="ro" href="https://1xbet.com/ro/line/Sumo/"/>
<link rel="alternate" hreflang="ru" href="https://1xbet.com/ru/line/Sumo/"/>
<link rel="alternate" hreflang="sk" href="https://1xbet.com/sk/line/Sumo/"/>
<link rel="alternate" hreflang="se" href="https://1xbet.com/se/line/Sumo/"/>
<link rel="alternate" hreflang="th" href="https://1xbet.com/th/line/Sumo/"/>
<link rel="alternate" hreflang="tr" href="https://1xbet.com/tr/line/Sumo/"/>
<link rel="alternate" hreflang="ua" href="https://1xbet.com/ua/line/Sumo/"/>
<link rel="alternate" hreflang="cn" href="https://1xbet.com/cn/line/Sumo/"/>
<link rel="alternate" hreflang="tw" href="https://1xbet.com/tw/line/Sumo/"/>
<link rel="alternate" hreflang="vi" href="https://1xbet.com/vi/line/Sumo/"/>
<link rel="alternate" hreflang="uz" href="https://1xbet.com/uz/line/Sumo/"/>
<meta name="msvalidate.01" content="9EC9E01FA631A0A069D948E66137F200"/>
<meta name="wmail-verification" content="2213c161e11c16bf907ab50777570e8b"/>
<meta name="wmail-verification" content="5ec07f4f21561ddf06dbe5c2d222c126"/>
<meta name="yandex-verification" content="799ae7b9f8600074"/>
<meta name="yandex-verification" content="ee51e04c3cca45a3"/>
<meta name="yandex-verification" content="04be6ebabadbabc0"/>
<meta name="verify-paysera" content="08e7405dc882f8093c85701d30f741b3"/>
<meta property="og:type" content="article" />
<meta property="og:title" content="Sumo sports betting online | 1XBET.COM Betting Company" />
<meta property="og:description" content="Bets on sumo can be placed here ► 1xbet.com. Profitable pre-match bets on sumo on 1x-bit.com with high odds!" />
<meta property="og:image" content="https://v2l.ccdnss.com/xbet/img/og_image2.png" />
<meta property="og:url" content="https://www.1xbet.com/line/Sumo/" />
<link rel="manifest" href="/xbet/manifest.json">
<link rel="canonical" href="https://www.1xbet.com/line/Sumo/">
<link rel="alternate" media="only screen and (max-width: 640px)" href="https://bk1x.mobi/en/line/sumo/">
<link rel="alternate" media="handheld" href="https://bk1x.mobi/en/line/Sumo/">
<base href="https://1xbet.com/en/">
<link rel="icon" href="/generate_files/pg/default/images/e6f20c1381e559562dc6e9cdd4fe056f.png">
<link rel="shortcut icon" href="/generate_files/pg/default/images/e6f20c1381e559562dc6e9cdd4fe056f.png">
<!-- подключение из админки -->
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/result.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/header.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/coupon.css">
<!-- new footer -->
<!-- new footer -->
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/keyboard.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/jquery.rollbar.css">
<!--<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/menu_left.css">-->
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/rollbar_custom.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/popup.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/new_column_right.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/scoreboard_game.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/information.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/filter.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/video_feed.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/sports_announcements.css">
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/private_office.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:Roboto:300,300i,400,400i,500,500i,700,700i&subset=cyrillic-ext,latin-ext">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto+Condensed:400,400i,300,300i,700,700i&subset=cyrillic-ext,latin-ext">
<!-- <link rel="stylesheet" type="text/css" href="">-->
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/modal-g.css">
<!--<link rel="stylesheet" type="text/css" href="">-->
<script type="text/javascript">
var REF_ID = 1;
var IS_CLEAN_X = false;
var SERVER_TIME = 'Tue, 20 Mar 2018 17:46:49 +0300';
</script>
<script>_static_prefix = '';</script>
<script>var dictionary = {"select_bonus_type":"Select bonus type!","input_bet_amount":"Enter stake amount.","team_wins":"Win in the match","choose_league":"Choose league","select_currency":"Select currency","line":"Sports","liveTitle":"LIVE Bets – in-play betting on sports events | 1XBET.COM","placeBet":"place a bet","placeBet2":"Place a bet","matchFound":"Matches found","queryError":"An error occurred while processing the request!","players":"Players","league":"Leagues","searchWait":"Searching data","update":"Page is being updated, please wait","gameBegan":"The game has started","d":"d","h":"hrs","m":"m","s":"s","single":"Single bet","express":"Accumulator","system":"System bet","chain":"Chain bet","close":"Close","nomatches":"There are no matches today","save":"Save","error":"Error","rezult":"Result","RUB":"rub.","incorData":"Incorrect data! Please re-enter.","favorites":"Favorites","nofavorites":"You have no favorite leagues","haventselectegame":"You have not selected any games.","delfromfavorites":"Remove this league from My leagues!","addtofavorites":"Add this league to My leagues!","addalltomymatches":"Add all matches from this league to My games!","delallfrommymatches":"Remove all matches from this league from My games!","addtomymatches":"Add this match from this league to My games!","delfrommymatches":"Remove this match from this league from My games!","matchstats":"Match stats!","matchreview":"Match summary","statistic":"Statistics","lineups":"Lineups","completed":"Finished","formation":"Formation","table":"Standings","mygames":"My games","video":"Video","victory1":"1","victory1Quad":"W1 By Quarters","drawQuad":"X By Quarters","victory2Quad":"W2 By Quarters","victory2":"2","draw":"X","1x2":"1Х2","victory1draw":"1X","victory1victory2":"12","drawvictory2":"X2","win_set":"Win in the set","handicap":"Handicap","handicapFirst":"Handicap 1","handicapFirst1Opp":"Team 1 Handiсap","handicapParam":"Handicap parameter","handicapFirst2Opp":"Team 2 Handicap","handicapSecond":"Handicap 2","total":"Total","more":"O","less":"U","totalMore":"Total over","totalParam":"Total parameter","totalLess":"Total under","doublechance":"Double chance","spaceset":" set","videowindow":"Show streaming window","showOnlyVideo":"Show with video","goes":"is on","remained":"left","passed":"passed","break":"break","minut":"min","minimize":"Collapse","maximize":"Maximize","minimizeAll":"Collapse all","maximizeAll":"Expand all","gameover":"Game finished","message":"Message","messageSent":"Message sent","completeFields":"Please fill in all the fields correctly.","requestSent":"Request sent","noDataInPeriod":"No data for selected period","score":"Score","cancel":"Cancel","overtime":"Overtime","extratimeFutzal":"ET","penaltyFutzal":"Penalty shootout","yellowcard":"Yellow cards","redcard":"Red cards","penalty":"Penalties","numOfSubstitutions":"Number of substitutions","shotsOnGoal":"Shots on target","attemptsOffTarget":"Shots off target","numOfAttacks":"Attacks","numOfDangerousAttacks":"Dangerous attacks","winner":"Winner","betAccepted":"Bet accepted!","betRej":"No response from server. Your bet might have been accepted, check bet history.","repeatBet":"An error occurred. Your bet might have been accepted, check bet history.","amountSetOneClick1":"Stake ","amountSetOneClick2":" has been set for one-click bets.","gameLoadError":"This game has already ended. Please select another event","noBetsForThisGame":"No bets for selected event. Please select another event.","no1x2BetForThisGroup":"No quick bets for selected group of events. Select an event from the menu on the left.","daysDecl":"day, days, days","hoursDecl":"hour, hours, hours","minutesDecl":"minute, minutes, minutes","secondsDecl":"second, seconds, seconds","feb":"February","mar":"March","apr":"April","may":"May","jun":"June","jul":"July","aug":"August","sep":"September","oct":"October","nov":"November","dec":"December","month0":"January","month1":"February","month2":"March","month3":"April","month4":"May","month5":"June","month6":"July","month7":"August","month8":"September","month9":"October","month10":"November","month11":"December","sunday":"Sunday","monday":"Monday","tuesday":"Tuesday","wednesday":"Wednesday","thursday":"Thursday","friday":"Friday","saturday":"Saturday","day0":"Sunday","day1":"Monday","day2":"Tuesday","day3":"Wednesday","day4":"Thursday","day5":"Friday","day6":"Saturday","delete":"Delete","date":"Date","today":"Today","passChanged":"Password changed.","enterYourSkype":"Enter your Skype login in My Account!","saveSuccess":"Information saved successfully.","keyboard00":"Display number pad","keyboard01":"Display virtual keyboard","keyboard02":"Select keyboard layout","keyboard03":"Dead keys","keyboard04":"On.","keyboard05":"Off.","keyboard06":"Close keyboard","keyboard07":"Сlear","keyboard08":"Clear input box","keyboard09":"Version","keyboard10":"Decrease keyboard size","keyboard11":"Increase keyboard size","betAmount":"Stake","win_amount":"Potential winnings","win_amount_bonus":"Potential winnings including bonus","coupon_num":"Bet slip №","coupon_was_sale":"Bet slip sold successfully. Amount credited to your account:","coupon_sum_reduced":"stake reduced to","total_coeff":"Overall odds","total_coeff_bonus":"Overall odds including bonus","betType":"Bet type","systemSize":"System size","couponExample":"Bet slip example","eventName":"Event name","outcome":"Outcome","koeff":"Odds","loses":"Lost bets","showCalc":"Show calculation","addEvent":"Add sporting event","delEvent":"Remove event","enterBetAmount":"You must enter stake amount","smallBetAmount":"Stake amount must be more than 0","eventKoeffLess1":"Odds cannot be less than 1","enterkoeff":"You must enter odds for event №","systemCombination":"System bet combinations","systemCombinationType":"All possible combinations of the type","of":"of","expressCombination":"Accumulator bet combinations","betdetails":"Bet details","numOfVariants":"Number of combinations","amountPerBet":"Stake per combo","event":"Event","calcEx1":"Handicap (0:3) 1","calcEx2":"Total (2,5) Under","calcEx3":"Goal from 46th to 60th minute – Yes","calcEx4":"Handicap 2(+5,5)","calcEx5":"Goal from 30th to 90th minute","win_1_title":"Team 1 Wins","draw_title":"Draw","win_2_title":"Team 2 Wins","win_1_draw_title":"W1 or Draw","win_1_win_2_title":"W1 or W2","draw_win_2_title":"Draw or W2","total_more_title":"Total Over","total_less_title":"Total Under","bet":"Stake","prize":"Win","pleaseAuth":"Please log in!","moreev":"More","matchcourse":"Match History","financialBetting":"Financials","overmoney":"Amount is too big (maximum: ","packetToToClear":"Enter your option of batch bet","errTyping":"Error when entering ","lessmoney":"Amount is too small (minimum: ","texttranslation":"LIVE Text Commentary","playersstats":"Player stats","grid":"Draw","lastgame":"Recent Games:","game_vs_players":"Head-to-heads","static_data_notfound":"No stats available","saleCoupon":"Sell bet slip","saleCouponPrice":"Sell bet slip for","saleCouponPriceChange":"Bet slip price has been changed.","pleaseWait":"Please wait.","noOpenCoupons":"You have no open bet slips","telephone":"Phone","january":"January","february":"February","march":"March","april":"April","may1":"May","june":"June","july":"July","august":"August","september":"September","october":"October","november":"November","december":"December","moreThan":"Higher than","inInterval":"In range of","betsBeginAt":"Markets will open at","closingBid":"Close of trade","newBidsOpened":"Betting will open in","betsZone":"Betting zone","noMoreBets":"No more bets","yes":"Yes","no":"No","results":"Results","mostImportant":"Important only","matchNotStarted":"The game has not started yet","matchStarted":"Game in progress","pointToPoint":"Point by point (+ advantage of the leading team)","lostServe":"LOST SERVE","servePlayer":"Serve","matchDuration":"Match duration","back":"Back","place":"Place","last5matches":"Last 5 matches","shape":"Form","nextMatch":"Next match","inTotal":"Overall","atHome":"Home","away":"Away","errLoadTab":"Failed to load this tab. We will try to fix this as soon as possible.","player":"Player","team":"Team","g":"G","pps":"Pts","transmitting":"Assists","p":"A","ud":"GA","fauls":"Fouls committed","fauls1":"FC","gotFaulsCount":"Fouls received","gotFaulsCount1":"FR","percentTransmissons":"Pass accuracy %","percentTransmissons1":"PA","allComments":"All comments","bombardiers":"Top scorers","moveNext":"Qualifies for next round","tieBreak":"Tie-break","breakPoint":"Break point","breakPoint1":"BP","setPoint":"Set point","setPoint1":"SP","matchPoint":"Match point","matchPoint1":"MP","match":"Match","football":"Football","showMoreMatches":"Show more matches","exitYesOrNo":"Are you sure you want to log out?","confirmAction":"Confirm action","ok":"OK","searchResults":"Search results","selectVariants":"You must choose at least one outcome for each event!","tooManyCoupons":"Too many bet slips (no more than 500 at a time)!","totoSmallAmountMsg":"Amount is too small (minimum: {0} {1})","totoBigAmountMsg":"Amount is too big (maximum: {0} {1})","totoPacketScoreErr":"This correct score is not available {0}:{1} – {2} bet. Use Any Other","totoNeedNVariants":"There must be {0} outcomes","accountBlocked":"Your account is blocked","noUpcomingEvents":"No upcoming events","onlineConsultant":"Online consultant","enterYourCode":"Enter your code!","enterSMSCode":"SMS code","show1xzone":"Show 1xZone","showVideoStream":"Show video stream","OA":"Any other","cancelled":"Canceled","notAppeared":"Non-appearance","rejection":"Rejected","firstSet":"1st set","secondSet":"2nd set","thirdSet":"3rd set","interrupted":"Abandoned","waiting":"Waiting","firstTime":"1st half","secondTime":"2nd half","firstQuarter":"1st quarter","secondQuarter":"2nd quarter","thirdQuarter":"3rd quarter","forthQuarter":"4th quarter","firstPeriod":"1st period","secondPeriod":"2nd period","thirdPeriod":"3rd period","overTime":"Overtime","bullits":"Shootout","winafterBullits":"Win after a shootout","winafterOvertime":"Overtime win","moved":"Postponed","techlose":"Forfeit defeat","OneOver":"1 over","OneUnder":"1 under","TwoOver":"2 over","TwoUnder":"2 under","virtualSportMenuTime":"The match starts in","p1":"L ","p2":"l","i":"MP ","v":"W ","n":"D ","mStat":"G ","o":"P ","tirazhForming":"Sorry, draw is in progress","couponSale":"Bet slip successfully sold for","maxGames1x2":"The number of games opened must not exceed","chooseDeal":"Choose trade","chooseInstrument":"Choose instrument","chooseDir":"Choose predicted price change","thisWorldDontHaveGames":"No available games","quarter":"quarter","hitsBaseball":"hits","half":"half","buy":"Buy","sell":"Sell","buyForPrice":"Buy for the price","sellForPrice":"Sell for the price","purchased":"Bought","sold":"Sold","byPrice":"for the price","notSetted":"Limit not set","to2":"to","posAlreadyOpened":"Position with this instrument has already been opened","betСonstructor":"Bet Constructor","numPosition":"Position number","closedAuto":"was closed automatically","price":"Price","matches":"matches","matches2":"matches","top5players":"Top 5 players","bypoints":"by points","bymoney":"by prize","forwardsFF":"forwards","midfieldersFF":"midfielders","defendersFF":"defenders","goalkeepersFF":"goalkeepers","centerPlayersFF":"centers","teams":"teams","limitPlayersLine":"You have chosen the maximum possible number of players of the following type","goalkeeper":"goalkeeper","defense":"defence","halfbacks":"midfield","attack":"attack","limitSalary":"You do not have enough funds to add this player","limitSalaryTeam":"You do not have enough funds to add this team","selAllPlayers":"Choose players to save to roster. Left:","randIndex":"Random index","opened":"Open","closed":"Closed","finished":"Settled","canceled":"Canceled","match50x50":"50-50","tournament":"tournament","noLeagues":"Sorry, there are no contests at the moment","competStarted":"Next contest has already started","multiBet":"Multibet","conditionalBet":"Conditional bet","lobby":"Lobby","block":"Block","max":"Max","noMoney":"Not enough funds in the account","antiExpress":"Anti-Accumulator","lineUp":"Lineup","bonus":"Bonus","bonusExpress":"Accumulator bonus","addToTeam":"Add to team","compromatMailText":"Dear customer! Your e-mail has been hacked! You must change your password on the website using My Account - Personal information - Change password. The new password must be at least 8 characters long. Do not use the same password for several accounts.","attention":"Attention","liveBets":"LIVE bets","lineBets":"Fixed-odds sports betting","lucky":"Lucky","patent":"Patent","free":"free","selectTournament":"Choose tournament","selectCountry":"Select country","selectRegion":"Select region","selectCity":"Select city","startEnteringCityTownName":"Start entering address","pointsTV":"Broadcasts","pointsPC":"Guest computer","pointsBetgamesTV":"BetGames.TV","pointsInCoffee":"Coffee and tea","pointsGoldenRace":"Horse racing","pointsInBeer":"Beer on sale","attackFF":"f","halfBacksFF":"MF","defendFF":"D","defendFFBasketball":" G","goalKeeperFF":"G","centerFF":"C","centerBasket":"Center","freeEnter":"Free entry","group":"Group","minVolume":"Minimum trade size","maxVolume":"Maximum trade size","freekicks":"Free kicks","showAll":"Show all","showSelected":"Show marked","main":"Main page","betsonyour":"Bet on Your National Team","multi":"Multilive","cricket":"Cricket","noDopInfo":"Unfortunately, the stats are not available at the moment","minimumSetTP":"Minimum limit order:","minimumSetSL":"Minimum stop loss:","left":"left","minutes":"min","seconds":"sec","hours_min":"hrs","days_min":"days","allSports":"All sports","earned":"earned in","earnedTotal":"overall score","add":"Add","allTeamsScore":"Both to score","allTeamsScoreYes":"Both Teams To Score – Yes","allTeamsScoreNo":"Both Teams To Score – No","personalTotal1":"Team\/player total 1","personalTotal1Shot":"IT1","personalTotal2Shot":"IT2","personalTotal1More":"Team 1 Total Over","personalTotal1Less":"Team 1 Total Under","personalTotalParam":"Team Total value","personalTotal2More":"Team 2 Total Over","personalTotal2Less":"Team 2 Total Under","winOT1":"Team 1 To Win Including Overtime And Shootout","winOT2":"Team 2 To Win Including Overtime And Shootout","personalTotal2":"Team\/player total 2","winForHalfs":"Win by quarters","withBullits":"Including shootout","mainGame":"Regular time","delAll":"Remove all","guaranteedBank":"Guaranteed prize fund","top":"TOP","tomorrow":"Tomorrow","save_your_data":"Please save your registration details before closing the window.","betsInsurance":"Bet insured successfully","cyber":"eSports","perseverance":"Stamina","strategy":"Strategy","luck":"Luck","technique":"Technique","horizon":"Scope","false_auth":"Incorrect username or password","false_auth2":"Please enter your username and password.","title_points_info":"Fantasy Football rules | Points scoring system","title_how_to_play":"How to play Fantasy Football","title_fantasy":"Fantasy Football","baseball_Extras":"Extra runs","baseball_Total":"Total","baseball_Bould":"Bowled","baseball_Caught":"Caught","baseball_Leg_wicket":"Leg before wicket","baseball_Stampd":"Stumped","baseball_not_scored":"Not out","baseball_runOut":"Run out","promoNot":"Bonus points are not being calculated yet.","promoTime":"You can make 1 request in 3 days. Next request available in","promoGo":"1 request in 3 days, you can make a request right now!","promoMin":"Minimum number of points required to purchase this promo code – ","promoCurent":"Available for use:","promoPoints":" points.","promoNotBalance":"You do not have enough points to purchase this promo code.","promoMinGmc":"To buy a promo code you need at least 1 GMC","genCouponError":"An error occurred while processing your request, please accept our apologies","genCouponEmpty":"Please fill in all the fields","genCouponEmptySport":"Please select a sport","genCouponNotFound":"No bet found with these search criteria, please modify your search","notGame":"No events found with these search criteria, please modify your search.","live":"LIVE","downloadDoc":"The document has been uploaded successfully","level":"Level","slot_error_no_answer1":"Sorry, an error occurred while loading the game ","slot_error_no_answer2":"Please try again later.","casino_error_no_answer1":"Sorry, an unknown error occurred while loading the game ","casino_error_no_answer2":"Please contact technical support.","slot_error_no_demo":"Sorry, this game is not available in demo mode","slot_error_need_auth":"Want to play? Just log on to your account!","slot_error_get_nick":"Nickname assignment error. Please try again later","slot_error_get_balance":"Balance request error. Please try again later","slot_error_update_nick":"Nickname update error","slot_error_empty_nick":"Nickname field cannot be empty","slot_mes_win_access_need":"Please allow pop-ups","slot_mes_min_words":"Minimum number of symbols for search – ","slot_no_more_space":"There is no space on the gaming table. Please close the current game to start a new one.","slot_second_time":"The game cannot be started twice.","slot_close_another_game":"To play this game please close game ","slot_no_feature_for_provider":"Sorry, this mode is not available for this provider.","timeFootball":"Half","periodHockey":"Period","bydays":"Daily","bytime":"Hourly","fortunaBuy":"Success!","congratulations":"Congratulations!","youWin":"You have won","bonusBalls":"bonus points!","notWheel":"You do not have enough spins.","laptop":"Laptop","tablet":"Tablet","levelGolf":"Level","fullTimeGolf":"Finished","notMemoryGame":"You have not bought enough games!","notMemorySport":"Please select a sport to start playing!","MemoryError":"Unfortunately an error has occurred. Data has been saved, please try again.","MemoryError_7":"An error occurred while processing your request, please accept our apologies. The winnings have been credited to your account in the amount of ","MemoryError_8":"This game is not available to you!","loto_error":"An error occurred while processing your request, please accept our apologies. The winnings have been credited to your bonus account.","MemoryBuy":"Games bought: ","notSafeGame":"You have not bought enough games!","callsCanMadeRegUser":"Only registered users can make calls!","lotoBuy":"Number of tickets bought: ","successDone":"Success","points1xBetNotFound":"1xBet Betting Shops not found","tryGame":"Try one more time!","nullChest":"Empty chest.","printVersion":"Print version","print":"Print","Mon":"MO","Tue":"TU","Wed":"WE","Thu":"TH","Fri":"FR","Sat":"SA","Sun":"SU","wipe_off":"SCRATCH HERE","not_win_lottery":"The draw has finished. The results can be found in the <a id=\"check_history_but\" href=\"#\">history subsection<\/a>.","notFound":"No results found","notFoundAll":"nothing has been found","file_exist":"This file has already been uploaded","file_null":"File not selected","waiting_approve":"Awaiting confirmation","lose":"Loss","winMatch":"To win","winMatch2":"Win","errorGetCoupon":"An error occurred while downloading the bet slip","triples":"Triples","hit_wicket":"Fallen wicket","error_lotto_time":"You can no longer buy tickets for this draw","no_lotto_ticket":"To take part in the lottery, you need to complete at least one ticket!","show_alternative_game":"Show alternative matches","hide_alternative_game":"Hide alternative matches","refuse_bonus":"Reject the bonus","win_21":"Win!","defeat_21":"Loss!","defeat_msg":"Try again!","draws_21":"Draw!","sum_21":"You have won: {0}","not_finish":"Game not finished.","max_cards_21":"Cards limit has been exceeded<\/br>(no more than 5 cards per hand)!","win_iphone_21":"You have won an iPhone 7!","makeAllForecasts":"Make your predictions for all matches","coins_heads":"Heads","coins_tails":"Tails","coins_win":"win","coins_loss":"loss","race_win":"Win the race","error_21":"Game {0} has finished with an error! Please contact Customer Support quoting the game number!","bullits2":"Shootouts","error_mail":"Please, enter your correct email","error_name":"Enter first name","error_text":"Enter your message","weight_cock":"{0} g.","weight_bull":"{0} kg.","cupon_reduced":"stake reduced to ","summ_return":"Amount credited: ","error_match_of_days":"Sorry, the Match Of The Day is currently unavailable. Please try again later","betex_step_coef":"Odds taken in increments of","betex_unplaced_bets":"You have unplaced bets. Do you want to cancel them?","error_sale_cupon":"Incorrect bet slip sale parameters!","gameHash":"Game hash","combinationHighCard":"High card","combinationPair":"Pair","combinationTwoPairs":"Two Pair","combinationThreeOfKind":"Three of a Kind","combinationStraight":"Straight","combinationFlush":"Flush","combinationFullHouse":"Full House","combinationQuads":"Four of a Kind","combinationStraightFlush":"Straight Flush","deckAndSalt":"Pack of cards + a random string","minBet":"Minimum stake amount","maxBet":"Maximum stake amount","errorServer":"Server error. Please try again later.","lineAYA":"Sports. A–Z","liveAYA":"Live. A–Z","reached_limit":"Maximum number reached","max_files_appeal":"Maximum 15 attachments!","dont_switch_phone":"Do you really want to cancel change of phone number?","amountSetOneClickMinBet":"The minimum stake is ","smsSend":"An SMS with your user ID and password has been sent to your phone","pass":"Pass","select_bet":"Select stake amount!","select_bet_trade":"Select stake amount for bidding!","overflow_points":"The amount must not exceed {0} points!","min_bet_trade":"The number of points must be greater than that of your opponents!","change_transfer_cards":"Select a card you want to give away to one of your opponents.","change_transfer_cards_2":"Select a card you want to give away to the other opponent.","change_transfer_who":"Select a player to give a card to.","change_cards":"Select a card!","marriage":"Marriage!","dont_move":"You cannot make a move with this card!","failed_trade":"You cannot exceed the maximum stake amount (120 points) because you have no marriage combination!","failed_trade2":"You must either increase your bid or click Pass to maintain your current bid ('Pass' button)!","warning_stop_game":"Are you sure you want to finish the game? If you do, your stake will not be refunded!","warning_stop_round":"If you decide to finish this turn, other players will get 60 points and you will be fined 120 points.","msg_take_bot":"Your opponent can't beat your attack and takes the cards. Add extra attacking cards or end this move!","msg_failed_take":"You cannot add more cards!","warning_overflow_cards":"Attention! If you get to 18 cards or more, you'll automatically lose the game!","autosaleaborted":"Auto sale disabled","autosaleon":"Auto sale enabled","input_summ_lucky":"Select or enter stake amount!","start_lucky":"To start the game press \"Place a bet\"","chose_color_lucky":"Select a color or suit!","totals":"RESULTS","badValue":"Incorrect value entered","maxBetOneClick":"Maximum one-click bet limit exceeded","minlength_error":"Minimum number of symbols – ","no_password_error":"Enter password","no_repeat_error":"Repeat password","strong_error":"The password must contain only Latin characters and digits!","not_match_error":"Passwords do not match","betGamesGame":"Game","derby_sum_bet_overflow":"Maximum stake amount for this race exceeded.","penaltySeries":"Penalty shootout","statistic_tab_meets":"HEAD-TO-HEAD","statistic_tab_report":"Summary","statistic_tab_teams":"Team stats","statistic_tab_lineup":"Lineup","statistic_expand":"Expand","statistic_collapse":"Collapse","os_not_supported":"Warning! This game may not be displayed correctly with your OS!","dont_move_multicards":"You cannot make a move with these cards!","bura_player_moscow":"You have three aces and you win this turn.","bura_player_bura":"You have three trump cards and you win this turn.","bura_player_small_moscow":"You have three “Sixes” including the trump suit. You can make a move with all three or reveal your cards.","bura_player_puppet":"You have three cards of the same suit. You can make a move with all three or reveal your cards.","bura_bot_moscow":"Your opponent has three aces and they win this turn.","bura_bot_bura":"Your opponent has three trump cards and they win this turn.","bura_bot_small_moscow":"Your opponent has three “Sixes” including the trump suit. They can make a move with all three or reveal their cards.","bura_bot_puppet":"Your opponent has three cards of the same suit. They can make a move with all three or reveal their cards.","bura_double_bura":"You and your opponent have three trump cards. The player with the higher-ranking card wins.","bura_player_not_beat_card":"Cannot beat cards? Select any cards to lay them face down.","bura_bot_not_beat_card":"Your opponent cannot beat your attack and lays their cards face down.","bura_bot_is_opened":"Your opponent reveals their cards.","bura_player_auto_opened":"Congratulations! You have scored 31 points and your cards are automatically revealed.","waitStartGame":"Game starting soon","notAcceptBets":"Bets are no longer accepted","placeYourBets":"Place your bets","beforeEndRound":"Round will end in","calcWinners":"Winnings are being paid out","notCalculated":"Unsettled","loss":"Loss","return":"Refund","sumBetLessMin":"Stake amount lower than minimum","sumBetMoreMax":"Stake amount greater than maximum","betNotPass":"Failed to place bet, try again","tokenError":"Session has expired – please refresh the page","payment":"Deposit","rouletteIsoRes":"Result: {0}, {1}, {2}","rouletteIsoZero":"Result: Zero","rouletteIsoRed":"red","rouletteIsoBlack":"black","rouletteIsoEven":"even","rouletteIsoOdd":"odd","derbyBonusOneHorse":"When using bonus funds you can bet on one horse only!","blog_0":"All","blog_1":"Football","blog_4":"Ice Hockey","blog_7":"Volleyball","blog_8":"Video","blog_10":"Tennis","blog_13":"Other sports","blog_16":"Humor","blog_19":"Life at 1xBet","blog_22":"Useful links","blog_anons":"Preview","blog_post":"Article","testTranslate":"Get up to 100$ this Wednesday! The bonus is available for \"Lucky Friday\" participants only","bonuses_1xgames_day":"Day {0}","bonuses_1xgames_bonus_type_1":"Double your stake if you win","bonuses_1xgames_bonus_type_2":"Get a 50% refund if you lose","bonuses_1xgames_bonus_type_3":"Receive a €1 free bet.","bonuses_1xgames_dont_closed":"You can use the bonus after the end of the game.","size_sum_coupon":"Stake reduced to {0}. Do you agree?","slots_freespin_prizes":"won {0} free spins in {1}","wait_to_connect":"Waiting for connection...","distribution":"Deal","player_step":"Player's turn","dealer_step":"Dealer's turn","player_victory":"Player wins","dealer_victory":"Dealer wins","geolocationNotSup":"Your browser does not support geolocation","geolocationServiceErr":"Error. Geolocation service failed","chooseCountryRegionCity":"Select country, region and city to see betting shops.","pointsNotFound":"Unfortunately, there are no 1xBet betting shops yet in your town.","pointsWithParamsNotFound":"We have found no betting shops matching this description. Please try another search.","distribution_cards":"Dealing","retreat":"Discard","takeof":"Take cards","setofcards":"Drawing cards from the deck","playdurak":"Draw","gamefinish":"Game over","gameaborted":"Game interrupted","nextstep":"Next move by Player ","attacks":"Attack","foughtoff":"Defense","throws":"Adding cards","ourgames_win_game":"{0} won {2} in {1}","dayx_prize_1":"iPhone X","dayx_prize_2":"Free game","dayx_no_tickets":"You have no tickets","bets36Game":"5Bet","bets42Game":"7Bet","diceGame":"Dice","wheelGame":"Wheel","pokerGame":"Poker","warOfBetsGame":"War of elements","betGamesHowToPlay":"How to play","betGamesDealers":"Our dealers","betGamesResults":"Results","betGamesHistory":"Bet history","betGamesGameDate":"Date of game","betGamesAllGames":"All Games","betGamesGameNumber":"Game ID","betGamesShowResults":"Find","betGamesTime":"Time","betGamesNumber":"Number","betGamesResult":"Result","betGamesVideo":"Video","betGamesWon":"Won","betGamesPlayer":"Player","betGamesBanker":"Dealer","betGamesBroadcastWillStartIn":"Live broadcast starts in:","betGamesLastFiveResults":"Last 5 games results:","betGamesTop3WinningsLastGame":"TOP 3 last game wins:","betGamesGameId":"Game ID:","betGamesGameStatus":"Game status:","betGamesBetStatus":"Bet status:","betGamesEventStatus":"Event status","betGamesCombos":"Combinations","betGamesTopCardWins":"High card wins","betGamesOnePairWins":"One pair wins","betGamesTwoPairWins":"Two pair wins","betGamesSetWins":"Three of a kind wins","betGamesActive":"active","betGamesInactive":"inactive","betGamesAccepted":"accepted","betGamesNotAccepted":"not accepted","betGamesBetsAreAccepted":"Bets are being accepted","betGamesBetsAreNotAccepted":"Bets are no longer accepted","betGamesPleaseWaitForTheStartOfBets":"Betting is not open yet, please wait.","betGamesSelectBetVariant":"Select an outcome","betGamesCoupon":"Bet slip","betGamesEmptyCoupon":"Your ticket is empty. Please select your bet.","betGamesPleaseAuthorize":"Please log in to place bets.","betGamesSum":"Amount","betGamesBetNum":"Bet number","betGamesPlaceBet":"Place a bet","betGamesLastBets":"Recent bets","betGamesBetExtra":"Bet slip","betGamesTranslations":"Broadcasts","betGamesLive":"Live","betGamesOffline":"offline","betGamesStacking":"stacking","betGamesEnded":"ended","betGamesChooseBet":"Please select an outcome","betGamesPerfectConfirm":"Confirm","betGamesDecline":"Decline","betGamesOneClick":"One-click","betGamesSingle":"Single bet","betGamesExpress":"Accumulator","betGamesBlocked":"Blocked","betGamesCoefChanged":"Changes in the odds","betGamesCoefChangedText":"Odds changed for this event","betGamesWhenCoefChanges":"When odds change","betGamesAcceptAtIncrease":"Accept if odds increase","betGamesConfirm":"Confirm","betGamesAcceptAnyChange":"Accept any change","betGamesPokerRoundBet":"Stake","betGamesPokerRoundPreflop":"Pre Flop Action","betGamesPokerRoundFlop":"The Flop","betGamesPokerRoundTurn":"Turn","betGamesPokerRoundRiver":"The River","betGamesWarOfBetsRoundStartBets":"Initial bets","betGamesWarOfBetsRoundPlayerCard":"Player's card","betGamesBetType":"Bet type:","betGamesGameType":"Game","betGamesWin":"Win","betGamesLoss":"Loss","betGamesMaxBetSum":"Maximum stake amount","betGamesPossiblePrize":"Potential winnings","betGamesOk":"Ok","betGamesFilterResultMessage":"To get results you need to select filter parameters and click on \"Find\" button","betGamesChooseInstance":"Select outcome for placing a bet","betGamesShowMore":"Show more events","betGamesShowLess":"Show fewer events","betGamesYourChoice":"Your selection","betGamesLogIn":"Log in to your account.","betGamesPayIfNecessary":"Top up your account if needed.","betGamesSelectEvent":"Select an event.","betGamesSelectBetType":"Select an outcome.","betGamesEnterBetSum":"Enter your stake in the bet slip. Press \"Place a bet\".","betGamesAfterBet":"Once the bet is placed, you will see a pop-up message \"Success\".","betGamesWinningsCalc":"To calculate the winnings the stake is multiplied by the odds. The winnings are credited to the account when the event ends.","betGamesBetVariants":"You can place single and accumulator bets. An accumulator bet can be placed by adding several markets to your bet slip.","betGamesVariousEvents":"Bets are accepted on the upcoming events by default. To bet on later matches, select an event from:","betGamesSaveTime":"Use \"One-click\" betting to save time. Once your preferred stake amount is set, you will be able to bet by simply clicking on an outcome.","betGamesCheckBetStatus":"You can check the status of all open and settled bets in \"Bet History\".","betGamesCheckResults":"Results of all previous events can be checked in the \"Results\" section.","betGamesExampleOption":"None of the seven selected numbers to be drawn","betGamesExampleOption2":"The arrow will point to the sector with the selected number from (13) to (24)","betGamesExampleOption3":"The arrow will point to the sector with a number less than (12.5)","betGamesBetHistory":"Bet history","betGamesMyResults":"My results","betGamesDrawing":"Draw","betGamesBetsAccepted":"Your bets have been accepted","betGamesLiveIn":"Live broadcast starts in:","betGamesRate":"Rate","betGamesThanksForRating":"Thank you for rating!","betGamesTop":"Top","betGamesLastWins":"Top {0} last game wins:","betGamesLastResults":"Last {0} games results","koef":"odds","fullkoef":"Overall odds","minutSmall":"m.","events_not_found":"No bets for selected section. Please select another events.","zenit_message":"Запросить сообщение повторно можно только через 60 сек. после запроса","choose_team_will_win":"Select a team<br\/>to win in extra time","not_balance_section":"Multicurrency accounts are not supported in this section!","error_ourgames_cashback":"You cannot select more than two games a month!","xgames_cashback_sel_alert":"Please select 2 games. ","steam_user_data_empty":"Inventory is not available. Check privacy settings and ensure address is entered correctly.","slots":"Slots","half_small":"half","quarter_small":"quarter","save_step_cupon":"Changes saved successfully.","win_1x2_main_time":"1X2 In Regular Time","delBetHistory_period":"Do you want to delete bet history for selected period?","delBetHistory_one":"Delete bet?","error_MaxPeriod_limit":"When searching bet history you can only select a period of 31 days maximum! Please select dates.","delBetHistory_one_new":"Are you sure you want to delete bet?","delBetHistory_period_new":"Do you want to delete bet history for selected period?","section_in_development":"This section is under construction. We apologize for any inconvenience.","rules_dont_agree":"You did not agree to Terms and Conditions!","open_new_popup":"Open in a separate window","fullscreen":"Fullscreen","reload":"Refresh"}</script> <script src="https://v2l.ccdnss.com/vendor/jquery/dist/jquery.min.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/jquery.ui.custom.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/jquery.ui.lng.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/core/cookie.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/cookie.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/popup.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/pfm.js?re=20032018"></script>
<script src="https://v2l.ccdnss.com/xbet/js/connect.js?v=20032018"></script>
<script src="https://v2l.ccdnss.com/xbet/js/jsviewsMy.min.js?ba=20032018"></script>
<script src="https://v2l.ccdnss.com/xbet/js/messageToUser.js?b=150317"></script>
<script src="https://v2l.ccdnss.com/xbet/js/settings.js?er=20032018"></script>
<script src="https://v2l.ccdnss.com/xbet/js/jquery.rollbar.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/common_socket.js?qw=20032018"></script>
<script src="https://v2l.ccdnss.com/xbet/js/subscribe_notification.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/md5.min.js?mzi=20032018"></script>
<script src="https://v2l.ccdnss.com/xbet/js/core/partner.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/core/language.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/core/validator.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/core/benchmark.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/core/popup.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/core/mediator.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/core/util.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/core/app.js"></script>
<script src="https://v2l.ccdnss.com/xbet/js/insure_coupon.js"></script>
<script>
var config = {
debug: false
};
var App = new Core.App(config);
// TODO kill globals need_greek_features, is_new_design_domain, getRefId()
App.partner = new Core.Partner({
id: 1,
greekFeatures: 0,
isNewDesignDomain: 0 });
</script>
<link rel="stylesheet" type="text/css" href="https://v2l.ccdnss.com/xbet/css/animation.css">
<script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/animation.js"></script>
<script>
<!-- End Piwik Code -->
// Google Analytics
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-43962315-51', 'auto', {'allowLinker': true, 'userId': '38976859'});
ga('set', 'dimension2', '38976859');
ga('require', 'displayfeatures');
ga('require', 'ec');
// ga('ehEcFull.require', 'ec');
ga('set', 'dimension1', '38976859');
ga('send', 'pageview');
// ga('ehEcFull.send', 'pageview'); // Счётчик для e-commerce
// END Google Analytics
var need_greek_features = 0;
var is_new_design_domain = 0;
if (GetCookie('disc')) {
$.ajax({
type: 'POST',
url: 'user/disconnect',
success: function () {
DeleteCookie('disc', '/', '');
window.location.reload();
}
});
}
</script>
<script async src="//radar.cedexis.com/1/23802/radar.js"></script>
<script type="text/javascript">var SUPPORT_MULTI_ACCOUNTS = true;var REF_ID = 1;var SERVER_TIME = 'Tue, 20 Mar 2018 17:46:49 +0300';var COUNTRY_CODE = 'se';var IS_CLEAN = false;var PRELOADER = '/preloader/default/preloader.svg';var IS_IE_EDGE = true;var GEO_CURRENCY = {"id":61,"code":"SEK","symbol":"Sw.kr","name":"Swedish krona","hide":false,"coef_convert":0.14156566,"min_sum_bet":3,"errors_list":[],"scenario":null,"type_free_props":["hidden","visible","errors_list","scenario","type_free_props"]};var HIDE_BALANCE = 0;var COUPON_DATA = [];var IS_RTL = false;var IS_SOCKET_PROTOCOL_ACCESS_LIVE = false;var IS_SOCKET_PROTOCOL_ACCESS_LINE = false;var IS_SOCKET_PROTOCOL_ACCESS = false;var SSR_DASHBOARD = {"line":{"Error":"","ErrorCode":0,"Guid":"","Id":0,"Success":true,"Value":[{"CI":23422331,"COI":218,"E":[{"C":1.56,"G":1,"T":1},{"C":2.448,"G":1,"T":3}],"EC":2,"I":155192923,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":9533,"O1":"Abi","O1C":225,"O1I":1229109,"O1R":"\u0410\u0431\u0438","O2":"Chiyoshoma","O2C":225,"O2I":347441,"O2R":"\u0427\u0438\u0435\u0441\u043e\u043c\u0430","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23423445,"COI":218,"E":[{"C":1.645,"G":1,"T":1},{"C":2.26,"G":1,"T":3}],"EC":2,"I":155194870,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":1668,"O1":"Asanoyama","O1C":225,"O1I":896831,"O1R":"\u0410\u0441\u0430\u043d\u043e\u044f\u043c\u0430","O2":"Myogiryu","O2C":225,"O2I":77495,"O2R":"\u041c\u0451\u0433\u0438\u0440\u044e","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23422339,"COI":218,"E":[{"C":1.65,"G":1,"T":1},{"C":2.26,"G":1,"T":3}],"EC":2,"I":155192208,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":9556,"O1":"Chiyotairyu","O1C":225,"O1I":77849,"O1R":"\u0422\u0438\u0451\u0442\u0430\u0439\u0440\u044e","O2":"Arawashi","O2C":225,"O2I":126193,"O2R":"\u0410\u0440\u0430\u0432\u0430\u0441\u0438","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23423151,"COI":218,"E":[{"C":1.645,"G":1,"T":1},{"C":2.26,"G":1,"T":3}],"EC":2,"I":155194571,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":2840,"O1":"Daiamami","O1C":225,"O1I":914379,"O1R":"\u0414\u0430\u0439\u0430\u043c\u0430\u043c\u0438","O2":"Kyokutaisei","O2C":225,"O2I":1241461,"O2R":"\u041a\u0435\u043a\u0443\u0442\u0430\u0439\u0441\u0435\u0439","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23423149,"COI":218,"E":[{"C":1.7,"G":1,"T":1},{"C":2.168,"G":1,"T":3}],"EC":2,"I":155194574,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":2571,"O1":"Daieisho","O1C":218,"O1I":229559,"O1R":"\u0414\u0430\u0439\u044d\u0439\u0441\u0435","O2":"Nishikigi","O2C":218,"O2I":345825,"O2R":"\u041d\u0438\u0441\u0438\u043a\u0438\u0433\u0438","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23423153,"COI":218,"E":[{"C":1.616,"G":1,"T":1},{"C":2.315,"G":1,"T":3}],"EC":2,"I":155194572,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":3056,"O1":"Daishomaru","O1C":218,"O1I":315969,"O1R":"\u0414\u0430\u0438\u0441\u0435\u043c\u0430\u0440\u0443","O2":"Hidenoumi","O2C":225,"O2I":204999,"O2R":"\u0425\u0438\u0434\u044d\u043d\u043e\u0443\u043c\u0438","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23422343,"COI":218,"E":[{"C":1.8,"G":1,"T":1},{"C":2.025,"G":1,"T":3}],"EC":2,"I":155192749,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":9581,"O1":"Endo","O1C":225,"O1I":77483,"O1R":"\u042d\u043d\u0434\u043e","O2":"Takarafuji","O2C":225,"O2I":77533,"O2R":"\u0422\u0430\u043a\u0430\u0440\u0430\u0444\u0443\u0434\u0437\u0438","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23422329,"COI":218,"E":[{"C":1.656,"G":1,"T":1},{"C":2.248,"G":1,"T":3}],"EC":2,"I":155192204,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":9405,"O1":"Goeido","O1C":225,"O1I":77511,"O1R":"\u0413\u043e\u044d\u0439\u0434\u043e","O2":"Shodai","O2C":218,"O2I":259311,"O2R":"\u0421\u0435\u0434\u0430\u0438","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23422991,"COI":218,"E":[{"C":1.82,"G":1,"T":1},{"C":1.995,"G":1,"T":3}],"EC":2,"I":155194334,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":1912,"O1":"Ikioi","O1C":225,"O1I":77535,"O1R":"\u0418\u043a\u0438\u043e\u0439","O2":"Kagayaki","O2C":218,"O2I":252783,"O2R":"\u041a\u0430\u0433\u0430\u044f\u043a\u0438","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23422335,"COI":218,"E":[{"C":1.485,"G":1,"T":1},{"C":2.656,"G":1,"T":3}],"EC":2,"I":155192744,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":9538,"O1":"Kaisei","O1C":225,"O1I":77529,"O1R":"\u041a\u0430\u0439\u0441\u044d\u0439","O2":"Takakeisho","O2C":218,"O2I":529403,"O2R":"\u0422\u0430\u043a\u0430\u043a\u044d\u0439\u0441\u0435","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23422327,"COI":218,"E":[{"C":1.6,"G":1,"T":1},{"C":2.375,"G":1,"T":3}],"EC":2,"I":155192206,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":8718,"O1":"Kakuryu","O1C":225,"O1I":77523,"O1R":"\u041a\u0430\u043a\u0443\u0440\u044e","O2":"Ichinoj\u014d","O2C":124,"O2I":125533,"O2R":"\u0418\u0442\u0438\u043d\u043e\u0434\u0437\u0435","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23422325,"COI":218,"E":[{"C":1.57,"G":1,"T":1},{"C":2.42,"G":1,"T":3}],"EC":2,"I":155192207,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":8576,"O1":"Mitakeumi","O1C":218,"O1I":251691,"O1R":"\u041c\u0438\u0442\u0430\u043a\u044d\u0443\u043c\u0438","O2":"Chiyomaru","O2C":218,"O2I":126207,"O2R":"\u0422\u0438\u0435\u043c\u0430\u0440\u0443","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23423147,"COI":218,"E":[{"C":1.55,"G":1,"T":1},{"C":2.47,"G":1,"T":3}],"EC":2,"I":155194575,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":2239,"O1":"Okinoumi","O1C":218,"O1I":78299,"O1R":"\u041e\u043a\u0438\u043d\u043e\u0443\u043c\u0438","O2":"Sokokurai","O2C":1,"O2I":126009,"O2R":"\u0421\u043e\u043a\u043e\u043a\u0443\u0440\u0430\u0439","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23422333,"COI":218,"E":[{"C":1.67,"G":1,"T":1},{"C":2.216,"G":1,"T":3}],"EC":2,"I":155192926,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":9537,"O1":"Shohozan","O1C":225,"O1I":77517,"O1R":"\u0421\u0451\u0445\u043e\u0434\u0437\u0430\u043d","O2":"Hokutofuji","O2C":225,"O2I":471397,"O2R":"\u0425\u043e\u043a\u0443\u0442\u043e\u0444\u0443\u0434\u0437\u0438","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23422341,"COI":218,"E":[{"C":1.62,"G":1,"T":1},{"C":2.31,"G":1,"T":3}],"EC":2,"I":155192748,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":9580,"O1":"Tamawashi","O1C":225,"O1I":77531,"O1R":"\u0422\u0430\u043c\u0430\u0432\u0430\u0441\u0438","O2":"Kotoshogiku","O2C":225,"O2I":77513,"O2R":"\u041a\u043e\u0442\u043e\u0441\u0451\u0433\u0438\u043a\u0443","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23423145,"COI":218,"E":[{"C":1.9,"G":1,"T":1},{"C":1.91,"G":1,"T":3}],"EC":2,"I":155194578,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":1512,"O1":"Tochiozan","O1C":225,"O1I":77507,"O1R":"\u0422\u043e\u0442\u0438\u043e\u0434\u0437\u0430\u043d","O2":"Ishiura","O2C":225,"O2I":471395,"O2R":"\u0418\u0441\u0438\u0443\u0440\u0430","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23422337,"COI":218,"E":[{"C":1.67,"G":1,"T":1},{"C":2.225,"G":1,"T":3}],"EC":2,"I":155193361,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":9554,"O1":"Yoshikaze","O1C":225,"O1I":77485,"O1R":"\u0401\u0441\u0438\u043a\u0430\u0434\u0437\u044d","O2":"Ryuden","O2C":218,"O2I":1066181,"O2R":"\u0420\u044e\u0434\u044d\u043d","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391},{"CI":23423143,"COI":218,"E":[{"C":1.395,"G":1,"T":1},{"C":2.985,"G":1,"T":3}],"EC":2,"I":155194580,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430","MS":[0],"N":1360,"O1":"Yutakayama","O1C":218,"O1I":688347,"O1R":"\u042e\u0442\u0430\u043a\u0430\u044f\u043c\u0430","O2":"Kotoyuki","O2C":218,"O2I":126201,"O2R":"\u041a\u043e\u0442\u043e\u044e\u043a\u0438","S":1521615600,"SI":81,"SN":"Sumo","SR":"\u0421\u0443\u043c\u043e","B":58391}]}};var SSR_TOP_SPORTS = {"line":{"Error":"","ErrorCode":0,"Guid":"","Id":0,"Success":true,"Value":[{"E":"Football","I":1,"N":"Football","R":"\u0424\u0443\u0442\u0431\u043e\u043b"},{"E":"Boxing","I":9,"N":"Boxing","R":"\u0411\u043e\u043a\u0441"},{"E":"Ice Hockey","I":2,"N":"Ice Hockey","R":"\u0425\u043e\u043a\u043a\u0435\u0439"},{"E":"Basketball","I":3,"N":"Basketball","R":"\u0411\u0430\u0441\u043a\u0435\u0442\u0431\u043e\u043b"},{"E":"Cricket","I":66,"N":"Cricket","R":"\u041a\u0440\u0438\u043a\u0435\u0442"},{"E":"Formula 1","I":26,"N":"Formula 1","R":"\u0424\u043e\u0440\u043c\u0443\u043b\u0430-1"},{"E":"Baseball","I":5,"N":"Baseball","R":"\u0411\u0435\u0439\u0441\u0431\u043e\u043b"},{"E":"Tennis","I":4,"N":"Tennis","R":"\u0422\u0435\u043d\u043d\u0438\u0441"},{"E":"Handball","I":8,"N":"Handball","R":"\u0413\u0430\u043d\u0434\u0431\u043e\u043b"},{"E":"Volleyball","I":6,"N":"Volleyball","R":"\u0412\u043e\u043b\u0435\u0439\u0431\u043e\u043b"},{"E":"TV-Games","I":20,"N":"TV-Games","R":"\u0422\u0412-\u0438\u0433\u0440\u044b"},{"E":"Special bets","I":87,"N":"Special bets","R":"\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0442\u0430\u0432\u043a\u0438"},{"E":"Figure Skating","I":71,"N":"Figure Skating","R":"\u0424\u0438\u0433\u0443\u0440\u043d\u043e\u0435 \u043a\u0430\u0442\u0430\u043d\u0438\u0435"},{"E":"Swimming","I":37,"N":"Swimming","R":"\u041f\u043b\u0430\u0432\u0430\u043d\u0438\u0435"},{"E":"Biathlon","I":19,"N":"Biathlon","R":"\u0411\u0438\u0430\u0442\u043b\u043e\u043d"},{"E":"Athletics","I":57,"N":"Athletics","R":"\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u0430"},{"E":"Ski Jumping","I":23,"N":"Ski Jumping","R":"\u041f\u0440\u044b\u0436\u043a\u0438 \u0441 \u0442\u0440\u0430\u043c\u043f\u043b\u0438\u043d\u0430"},{"E":"Skiing","I":24,"N":"Skiing","R":"\u041b\u044b\u0436\u0438"},{"E":"Triathlon","I":65,"N":"Triathlon","R":"\u0422\u0440\u0438\u0430\u0442\u043b\u043e\u043d"},{"E":"Darts","I":21,"N":"Darts","R":"\u0414\u0430\u0440\u0442\u0441"},{"E":"eSports","I":40,"N":"eSports","R":"\u041a\u0438\u0431\u0435\u0440\u0421\u043f\u043e\u0440\u0442"},{"E":"Rugby","I":7,"N":"Rugby","R":"\u0420\u0435\u0433\u0431\u0438"},{"E":"Lottery","I":82,"N":"Lottery","R":"\u041b\u043e\u0442\u0435\u0440\u0435\u044f"},{"E":"Buzkashi","I":164,"N":"Buzkashi","R":"\u041a\u043e\u043a-\u0431\u043e\u0440\u0443"},{"E":"Table Tennis","I":10,"N":"Table Tennis","R":"\u041d\u0430\u0441\u0442\u043e\u043b\u044c\u043d\u044b\u0439 \u0442\u0435\u043d\u043d\u0438\u0441"},{"E":"Motorsport","I":18,"N":"Motorsport","R":"\u0410\u0432\u0442\u043e\u0433\u043e\u043d\u043a\u0438"},{"E":"Futsal","I":14,"N":"Futsal","R":"\u0424\u0443\u0442\u0437\u0430\u043b"},{"E":"Horse Racing AntePost","I":132,"N":"Horse Racing AntePost","R":"\u0421\u043a\u0430\u0447\u043a\u0438. \u0414\u043e\u043b\u0433\u043e\u0441\u0440\u043e\u0447\u043d\u044b\u0435"},{"E":"Bandy","I":15,"N":"Bandy","R":"\u0425\u043e\u043a\u043a\u0435\u0439 \u0441 \u043c\u044f\u0447\u043e\u043c"},{"E":"Floorball","I":67,"N":"Floorball","R":"\u0424\u043b\u043e\u0440\u0431\u043e\u043b"}]}};var SSPRITEPATH = 'xbet/img/sprites/build/slots/sprite_slots-bc79c760fd.png';var SSR_LEFT_MENU = {"line":{"Error":"","ErrorCode":0,"Guid":"","Id":0,"Success":true,"Value":[{"C":507,"I":2999,"N":"Long-term bets","R":"Long-term bets"},{"C":1191,"I":1,"N":"Football","R":"\u0424\u0443\u0442\u0431\u043e\u043b"},{"C":235,"I":4,"N":"Tennis","R":"\u0422\u0435\u043d\u043d\u0438\u0441"},{"C":175,"I":3,"N":"Basketball","R":"\u0411\u0430\u0441\u043a\u0435\u0442\u0431\u043e\u043b"},{"C":218,"I":2,"N":"Ice Hockey","R":"\u0425\u043e\u043a\u043a\u0435\u0439"},{"C":63,"I":6,"N":"Volleyball","R":"\u0412\u043e\u043b\u0435\u0439\u0431\u043e\u043b"},{"C":42,"I":10,"N":"Table Tennis","R":"\u041d\u0430\u0441\u0442\u043e\u043b\u044c\u043d\u044b\u0439 \u0442\u0435\u043d\u043d\u0438\u0441"},{"C":118,"I":87,"N":"Special bets","R":"\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0442\u0430\u0432\u043a\u0438"},{"C":103,"I":8,"N":"Handball","R":"\u0413\u0430\u043d\u0434\u0431\u043e\u043b"},{"C":47,"I":16,"N":"Badminton","R":"\u0411\u0430\u0434\u043c\u0438\u043d\u0442\u043e\u043d"},{"C":13,"I":5,"N":"Baseball","R":"\u0411\u0435\u0439\u0441\u0431\u043e\u043b"},{"C":4,"I":30,"N":"Snooker","R":"\u0421\u043d\u0443\u043a\u0435\u0440"},{"C":72,"I":44,"N":"Horse Racing","R":"\u0421\u043a\u0430\u0447\u043a\u0438"},{"C":8,"I":14,"N":"Futsal","R":"\u0424\u0443\u0442\u0437\u0430\u043b"},{"C":2,"I":17,"N":"Water Polo","R":"\u0412\u043e\u0434\u043d\u043e\u0435 \u043f\u043e\u043b\u043e"},{"C":44,"I":7,"N":"Rugby","R":"\u0420\u0435\u0433\u0431\u0438"},{"C":33,"I":28,"N":"Australian Rules","R":"\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u0439\u0441\u043a\u0438\u0439 \u0444\u0443\u0442\u0431\u043e\u043b"},{"C":42,"I":9,"N":"Boxing","R":"\u0411\u043e\u043a\u0441"},{"C":2,"I":13,"N":"American Football","R":"\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0444\u0443\u0442\u0431\u043e\u043b"},{"C":2,"I":15,"N":"Bandy","R":"\u0425\u043e\u043a\u043a\u0435\u0439 \u0441 \u043c\u044f\u0447\u043e\u043c"},{"C":11,"I":18,"N":"Motorsport","R":"\u0410\u0432\u0442\u043e\u0433\u043e\u043d\u043a\u0438"},{"C":14,"I":19,"N":"Biathlon","R":"\u0411\u0438\u0430\u0442\u043b\u043e\u043d"},{"C":67,"I":20,"N":"TV-Games","R":"\u0422\u0412-\u0438\u0433\u0440\u044b"},{"C":13,"I":21,"N":"Darts","R":"\u0414\u0430\u0440\u0442\u0441"},{"C":1,"I":23,"N":"Ski Jumping","R":"\u041f\u0440\u044b\u0436\u043a\u0438 \u0441 \u0442\u0440\u0430\u043c\u043f\u043b\u0438\u043d\u0430"},{"C":2,"I":24,"N":"Skiing","R":"\u041b\u044b\u0436\u0438"},{"C":6,"I":26,"N":"Formula 1","R":"\u0424\u043e\u0440\u043c\u0443\u043b\u0430-1"},{"C":1,"I":27,"N":"Field Hockey","R":"\u0425\u043e\u043a\u043a\u0435\u0439 \u043d\u0430 \u0442\u0440\u0430\u0432\u0435"},{"C":4,"I":31,"N":"Motorbikes","R":"\u041c\u043e\u0442\u043e\u0433\u043e\u043d\u043a\u0438"},{"C":5,"I":36,"N":"Bicycle Racing","R":"\u0412\u0435\u043b\u043e\u0441\u043f\u043e\u0440\u0442"},{"C":1,"I":37,"N":"Swimming","R":"\u041f\u043b\u0430\u0432\u0430\u043d\u0438\u0435"},{"C":1,"I":38,"N":"Poker","R":"\u041f\u043e\u043a\u0435\u0440"},{"C":34,"I":41,"N":"Golf","R":"\u0413\u043e\u043b\u044c\u0444"},{"C":2,"I":46,"N":"Curling","R":"\u041a\u0435\u0440\u043b\u0438\u043d\u0433"},{"C":3,"I":49,"N":"Netball","R":"\u041d\u0435\u0442\u0431\u043e\u043b"},{"C":72,"I":56,"N":"Martial Arts","R":"\u0415\u0434\u0438\u043d\u043e\u0431\u043e\u0440\u0441\u0442\u0432\u0430"},{"C":1,"I":57,"N":"Athletics","R":"\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u0430"},{"C":1,"I":62,"N":"Rowing","R":"\u0413\u0440\u0435\u0431\u043b\u044f"},{"C":4,"I":65,"N":"Triathlon","R":"\u0422\u0440\u0438\u0430\u0442\u043b\u043e\u043d"},{"C":9,"I":66,"N":"Cricket","R":"\u041a\u0440\u0438\u043a\u0435\u0442"},{"C":22,"I":67,"N":"Floorball","R":"\u0424\u043b\u043e\u0440\u0431\u043e\u043b"},{"C":216,"I":68,"N":"Greyhound Racing","R":"\u0421\u043e\u0431\u0430\u0447\u044c\u0438 \u0431\u0435\u0433\u0430"},{"C":1,"I":71,"N":"Figure Skating","R":"\u0424\u0438\u0433\u0443\u0440\u043d\u043e\u0435 \u043a\u0430\u0442\u0430\u043d\u0438\u0435"},{"C":22,"I":80,"N":"Gaelic Football","R":"\u0413\u044d\u043b\u044c\u0441\u043a\u0438\u0439 \u0444\u0443\u0442\u0431\u043e\u043b"},{"C":18,"I":81,"N":"Sumo","R":"\u0421\u0443\u043c\u043e","L":[{"CI":218,"GC":18,"L":"Haru Basho. Osaka","LI":962527,"LR":"\u042f\u043f\u043e\u043d\u0438\u044f. \u0425\u0430\u0440\u0443 \u0411\u0430\u0441\u0435. \u041e\u0441\u0430\u043a\u0430"}]},{"C":154,"I":82,"N":"Lottery","R":"\u041b\u043e\u0442\u0435\u0440\u0435\u044f"},{"C":41,"I":92,"N":"Trotting","R":"\u0422\u0440\u043e\u0442\u0442\u0438\u043d\u0433"},{"C":7,"I":102,"N":"Speedway","R":"\u0421\u043f\u0438\u0434\u0432\u0435\u0439"},{"C":8,"I":126,"N":"Hurling","R":"\u0425\u0435\u0440\u043b\u0438\u043d\u0433"},{"C":84,"I":132,"N":"Horse Racing AntePost","R":"\u0421\u043a\u0430\u0447\u043a\u0438. \u0414\u043e\u043b\u0433\u043e\u0441\u0440\u043e\u0447\u043d\u044b\u0435"},{"C":1,"I":133,"N":"Trotting AntePost","R":"\u0422\u0440\u043e\u0442\u0442\u0438\u043d\u0433. \u0414\u043e\u043b\u0433\u043e\u0441\u0440\u043e\u0447\u043d\u044b\u0435"},{"C":6,"I":138,"N":"Surfing","R":"\u0421\u0451\u0440\u0444\u0438\u043d\u0433"},{"C":2,"I":140,"N":"Crossfit","R":"\u041a\u0440\u043e\u0441\u0441\u0444\u0438\u0442"},{"C":11,"I":151,"N":"Greyhound AntePost","R":"\u0421\u043e\u0431\u0430\u0447\u044c\u0438 \u0431\u0435\u0433\u0430. \u0414\u043e\u043b\u0433\u043e\u0441\u0440\u043e\u0447\u043d\u044b\u0435"},{"C":1,"I":164,"N":"Buzkashi","R":"\u041a\u043e\u043a-\u0431\u043e\u0440\u0443"},{"C":104,"I":40,"N":"eSports","R":"\u041a\u0438\u0431\u0435\u0440\u0421\u043f\u043e\u0440\u0442"}]}};var SSR_LEFT_MENU_TOPS = {"data":{"Champ":[{"CI":153,"GC":8,"L":"NBA","LI":13589,"SI":3,"SN":"Basketball","SR":"\u0411\u0430\u0441\u043a\u0435\u0442\u0431\u043e\u043b","T":100},{"CI":223,"GC":4,"L":"UEFA Champions League","LI":118587,"LR":"\u041b\u0438\u0433\u0430 \u0427\u0435\u043c\u043f\u0438\u043e\u043d\u043e\u0432 \u0423\u0415\u0424\u0410","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1000},{"CI":223,"GC":4,"L":"UEFA Europa League","LI":118593,"LR":"\u041b\u0438\u0433\u0430 \u0415\u0432\u0440\u043e\u043f\u044b \u0423\u0415\u0424\u0410","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1000},{"CI":231,"GC":30,"L":"England. Premier League","LI":88637,"LR":"\u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442 \u0410\u043d\u0433\u043b\u0438\u0438. \u041f\u0440\u0435\u043c\u044c\u0435\u0440-\u043b\u0438\u0433\u0430","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1000},{"CI":231,"GC":2,"L":"England. FA Cup","LI":108319,"LR":"\u041a\u0443\u0431\u043e\u043a \u0410\u043d\u0433\u043b\u0438\u0438","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1000},{"CI":53,"GC":28,"L":"Germany. Bundesliga","LI":96463,"LR":"\u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442 \u0413\u0435\u0440\u043c\u0430\u043d\u0438\u0438. \u0411\u0443\u043d\u0434\u0435\u0441\u043b\u0438\u0433\u0430","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1000},{"CI":78,"GC":30,"L":"Spain. Primera Division","LI":127733,"LR":"\u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442 \u0418\u0441\u043f\u0430\u043d\u0438\u0438. \u041f\u0440\u0438\u043c\u0435\u0440\u0430","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1000},{"CI":78,"GC":1,"L":"Spain Copa del Rey","LI":119243,"LR":"\u041a\u0443\u0431\u043e\u043a \u0418\u0441\u043f\u0430\u043d\u0438\u0438","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1000},{"CI":79,"GC":1,"L":"Coppa Italia","LI":127759,"LR":"\u041a\u0443\u0431\u043e\u043a \u0418\u0442\u0430\u043b\u0438\u0438","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":500},{"CI":79,"GC":37,"L":"Italy. Serie A","LI":110163,"LR":"\u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442 \u0418\u0442\u0430\u043b\u0438\u0438. \u0421\u0435\u0440\u0438\u044f \u0410","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1000},{"CI":198,"GC":29,"L":"France. Ligue 1","LI":12821,"LR":"\u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442 \u0424\u0440\u0430\u043d\u0446\u0438\u0438. \u041f\u0435\u0440\u0432\u0430\u044f \u043b\u0438\u0433\u0430","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1000},{"CI":1,"GC":27,"L":"Russia. Premier League","LI":225733,"LR":"\u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442 \u0420\u043e\u0441\u0441\u0438\u0438. \u041f\u0440\u0435\u043c\u044c\u0435\u0440-\u043b\u0438\u0433\u0430","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1000},{"CI":153,"GC":16,"L":"NHL","LI":30619,"SI":2,"SN":"Ice Hockey","SR":"\u0425\u043e\u043a\u043a\u0435\u0439","T":300},{"CI":225,"GC":5,"L":"Kontinental Hockey League","LI":3355,"LR":"\u041a\u0425\u041b","SI":2,"SN":"Ice Hockey","SR":"\u0425\u043e\u043a\u043a\u0435\u0439","T":300},{"CI":225,"GC":48,"L":"FIFA World Cup 2018","LI":1536237,"LR":"\u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442 \u041c\u0438\u0440\u0430 2018","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1000},{"CI":225,"GC":68,"L":"Friendlies","LI":212413,"LR":"\u0422\u043e\u0432\u0430\u0440\u0438\u0449\u0435\u0441\u043a\u0438\u0435 \u043c\u0430\u0442\u0447\u0438","SI":1,"SN":"Football","SR":"\u0424\u0443\u0442\u0431\u043e\u043b","T":1}],"Country":true,"Countries":{"country_name":"","country_data":"","dataCountries":{"Columns":["id","name"],"Data":[[3,"Abkhazia"],[17,"Afghanistan"],[226,"Africa"],[7,"Albania"],[8,"Algeria"],[259,"American Samoa"],[11,"Andorra"],[9,"Angola"],[10,"Anguilla"],[12,"Antigua and Barbuda"],[14,"Argentina"],[15,"Armenia"],[16,"Aruba"],[229,"Asia"],[4,"Australia"],[232,"Australia and Oceania"],[5,"Austria"],[6,"Azerbaijan"],[21,"Bahrain"],[19,"Bangladesh"],[20,"Barbados"],[242,"Basque Country"],[22,"Belarus"],[24,"Belgium"],[23,"Belize"],[25,"Benin"],[26,"Bermuda"],[36,"Bhutan"],[28,"Bolivia"],[29,"Bosnia and Herzegovina"],[30,"Botswana"],[31,"Brazil"],[32,"British Virgin Islands"],[33,"Brunei"],[27,"Bulgaria"],[34,"Burkina Faso"],[35,"Burundi"],[227,"CAR"],[83,"Cambodia"],[84,"Cameroon"],[85,"Canada"],[81,"Cape Verde"],[245,"Cayman Islands"],[202,"Chad"],[280,"Channel Islands"],[205,"Chile"],[90,"China"],[91,"Colombia"],[92,"Comoros"],[93,"Congo (Brazzaville)"],[94,"Congo (Kinshasa)"],[99,"Cook Islands"],[95,"Costa Rica"],[96,"Cote D'Ivoire"],[201,"Croatia"],[97,"Cuba"],[234,"Cura\u00e7ao"],[88,"Cyprus"],[204,"Czech Republic"],[62,"Denmark"],[64,"Djibouti"],[246,"Dominica"],[65,"Dominican Republic"],[42,"East Timor"],[209,"Ecuador"],[66,"Egypt"],[154,"El Salvador"],[231,"England"],[210,"Equatorial Guinea"],[211,"Eritrea"],[212,"Estonia"],[213,"Ethiopia"],[223,"Europe"],[194,"Faroe Islands"],[195,"Fiji"],[197,"Finland"],[198,"France"],[199,"French Guiana"],[200,"French Polynesia"],[244,"French Polynesia"],[44,"Gabon"],[47,"Gambia"],[61,"Georgia"],[53,"Germany"],[48,"Ghana"],[55,"Gibraltar"],[60,"Greece"],[59,"Greenland"],[58,"Grenada"],[49,"Guadeloupe"],[238,"Guam"],[50,"Guatemala"],[54,"Guernsey"],[51,"Guinea"],[52,"Guinea-Bissau"],[46,"Guyana"],[45,"Haiti"],[222,"Holland"],[56,"Honduras"],[57,"Hong Kong"],[40,"Hungary"],[77,"Iceland"],[71,"India"],[72,"Indonesia"],[75,"Iran"],[74,"Iraq"],[76,"Ireland"],[127,"Isle of Man"],[70,"Israel"],[79,"Italy"],[217,"Jamaica"],[218,"Japan"],[63,"Jersey"],[73,"Jordan"],[82,"Kazakhstan"],[87,"Kenya"],[89,"Kiribati"],[279,"Kosovo"],[243,"Kosovo"],[277,"Kurdistan"],[98,"Kuwait"],[228,"Kyrgyzstan"],[101,"Laos"],[102,"Latvia"],[220,"Lebanon"],[105,"Lebanon"],[103,"Lesotho"],[104,"Liberia"],[106,"Libya"],[108,"Liechtenstein"],[107,"Lithuania"],[109,"Luxembourg"],[233,"Macau"],[113,"Macedonia"],[112,"Madagascar"],[114,"Malawi"],[115,"Malaysia"],[117,"Maldives"],[116,"Mali"],[118,"Malta"],[263,"Marshall Islands"],[119,"Martinique"],[111,"Mauritania"],[110,"Mauritius"],[120,"Mexico"],[265,"Micronesia"],[122,"Moldova"],[123,"Monaco"],[124,"Mongolia"],[203,"Montenegro"],[125,"Morocco"],[121,"Mozambique"],[126,"Myanmar (Burma)"],[128,"Namibia"],[129,"Nauru"],[130,"Nepal"],[133,"Netherlands"],[13,"Netherlands Antilles"],[136,"New Caledonia"],[135,"New Zealand"],[134,"Nicaragua"],[131,"Niger"],[132,"Nigeria"],[138,"Norfolk Island"],[162,"North Korea"],[281,"Northern Cyprus"],[236,"Northern Ireland"],[278,"Northern Mariana Islands"],[137,"Norway"],[140,"Oman"],[141,"Pakistan"],[276,"Palau"],[237,"Palestine"],[142,"Panama"],[143,"Papua New Guinea"],[144,"Paraguay"],[145,"Peru"],[196,"Philippines"],[146,"Pitcairn Islands"],[147,"Poland"],[148,"Portugal"],[149,"Puerto Rico"],[86,"Qatar"],[150,"Reunion"],[152,"Romania"],[1,"Russia"],[151,"Rwanda"],[161,"Saint Helena"],[166,"Saint Kitts and Nevis"],[160,"Saint Lucia"],[164,"Saint Pierre and Miquelon"],[167,"Saint Vincent and the Grenadines"],[155,"Samoa"],[156,"San Marino"],[157,"Sao Tome and Principe"],[158,"Saudi Arabia"],[219,"Scotland"],[165,"Senegal"],[168,"Serbia"],[163,"Seychelles"],[177,"Sierra Leone"],[169,"Singapore"],[171,"Slovakia"],[172,"Slovenia"],[173,"Solomon Islands"],[174,"Somalia"],[214,"South Africa"],[224,"South America"],[215,"South Korea"],[216,"South Ossetia"],[239,"South Sudan"],[78,"Spain"],[208,"Sri Lanka"],[175,"Sudan"],[176,"Suriname"],[159,"Swaziland"],[207,"Sweden"],[206,"Switzerland"],[170,"Syria"],[179,"Taiwan"],[178,"Tajikistan"],[181,"Tanzania"],[180,"Thailand"],[18,"The Bahamas"],[182,"Togo"],[183,"Tokelau"],[184,"Tonga"],[185,"Trinidad and Tobago"],[187,"Tunisia"],[190,"Turkey"],[188,"Turkmenistan"],[189,"Turks and Caicos Islands"],[186,"Tuvalu"],[191,"Uganda"],[2,"Ukraine"],[139,"United Arab Emirates"],[39,"United Kingdom"],[153,"United States"],[193,"Uruguay"],[192,"Uzbekistan"],[38,"Vanuatu"],[41,"Venezuela"],[43,"Vietnam"],[230,"Wales"],[37,"Wallis and Futuna"],[68,"Western Sahara"],[225,"World"],[80,"Yemen"],[247,"Yugoslavia"],[67,"Zambia"],[248,"Zanzibar"],[69,"Zimbabwe"]],"Error":null,"Success":false},"dataCountriesWithGames":[1,2,4,5,6,8,10,14,15,20,21,22,24,29,31,34,39,52,53,60,61,62,66,71,73,76,78,79,85,86,90,91,102,107,123,125,133,135,137,140,141,147,148,152,153,155,165,169,171,172,176,180,182,187,190,195,196,197,198,201,204,205,206,207,212,214,218,219,223,225,226,230,231],"dataCountriesWithGamesLine":[1,2,4,5,6,7,8,9,11,14,15,17,20,21,22,24,27,29,31,39,40,41,43,44,47,51,53,55,56,57,60,61,62,65,66,67,69,70,71,72,73,74,75,76,77,78,79,80,82,83,84,85,86,87,88,90,91,92,95,97,98,101,102,104,105,106,107,108,109,111,113,114,115,116,118,120,122,123,124,125,126,128,132,133,135,136,137,139,140,142,144,145,147,148,149,152,153,154,156,158,162,165,168,169,170,171,172,175,179,180,181,182,187,190,192,193,194,195,196,197,198,200,201,203,204,205,206,207,209,212,214,215,218,219,222,223,224,225,226,227,228,229,230,231,236,237,243],"live100procent":false}}};</script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/vue/dist/vue.min.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/public/1xbower/common.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/vuex.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/generate_files/betstemplates/betsNames_full_en.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/vue-modules/1xmin_custom.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/promise-es6.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/jquery-mousewheel/jquery.mousewheel.min.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/localforage.min.js" ></script><link rel="stylesheet" href="https://v2l.ccdnss.com/vendor/jquery.scrollbar/jquery.scrollbar.css" type="text/css"><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/jquery.scrollbar/jquery.scrollbar.min.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/chosen/chosen.jquery.js" ></script><link rel="stylesheet" href="https://v2l.ccdnss.com/vendor/chosen/chosen.css" type="text/css"><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/flashContent.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/genCoupon.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/gamestats.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/bundle/app/common.927a53fa83910b1a2a2d.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/bundle/app/statistic_popup_open_ws.9e5a86132a2bbb14a419.js" ></script><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/game.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/genCoupon.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/video_content.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/fight_cock.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/cards-common.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/after-css/fullscreen_games/fs_cards.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/after-css/scoreboard/scoreboard.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/after-css/widgets/w-social.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/vendor/select2/select2.css" type="text/css"><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/select2/select2.min.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/select2/select2_locale_ru.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/jquery.arcticmodal.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/gilbitron/carouFredSel/jquery.carouFredSel-6.2.1-packed.js" ></script><link rel="stylesheet" href="https://v2l.ccdnss.com/vendor/owl.carousel/dist/assets/owl.carousel.min.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/vendor/owl.carousel/dist/assets/owl.theme.default.css" type="text/css"><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/owl.carousel/dist/owl.carousel.min.js" ></script><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/select2_custom.css" type="text/css"><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/vue-plugins/user_balance.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/vuex/dist/vuex.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/new_sale_cupon.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/vue-plugins/range_slider.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/jquery-json/dist/jquery.json.min.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/jquery.notification/jquery.notification.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/signalr/jquery.signalR.min.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/jquery.timers/jquery.timers.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/jquery.transit/jquery.transit.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/jquery-validation/dist/jquery.validate.min.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/xbet/js/my-perfect-scrollbar.js" ></script><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/swfobject/swfobject/swfobject.js" ></script><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/after-css/dropdown-menu/top-dropdowns-icons.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/vendor/font-awesome/css/font-awesome.min.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/after-css/footer/footer_main.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/after-css/new_menu_left/new_menu_left.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/after-css/new1x2/new1x2_main.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/after-css/sportstream/sportstream.css" type="text/css"><script type="text/javascript" src="https://v2l.ccdnss.com/vendor/fingerprintjs2/dist/fingerprint2.min.js" ></script><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/after-css/coupon-modal/coupon_modal.css" type="text/css"><link rel="stylesheet" href="https://v2l.ccdnss.com/xbet/css/after-css/w-express/w-express.css" type="text/css"></head><body class=" betting haveLeftMenu fixedLeft fixedRight redhlp_online redhlp_ready biggestRight">
<iframe src="" id="bigBrother" name="bigBrother" style="width: 200px; height: 10px; position: absolute; visibility: hidden;"></iframe>
<script type="text/javascript">
$(document).ready(function () {
var loginout = $('#');
$('#loginout .wrap_lk > .submenu_link', '#loginout .wrap_lk > .submenu_link2').click(function () {
disConnect();
});
});
</script>
<div id="fTop" class="">
<div id="loc_info" class="loc_info2">
<!-- <div id="loc_info_position">-->
<div class="loc_info_leftFL">
<a href="desktop/?type_app=1"
onclick="sendAnalyticsData('Шапка', 'Клик приложение для Windows', '', 'клик-приложение-для-windows-в-шапке');"
class="win_load">
<span class="name" title="Desktop apps">Desktop<b>apps</b></span>
<span class="hideDop">
<span class="bigName">1xWin<br/><span>Betting app</span></span>
<span
class="text">This app will make pre-match and in-play betting faster and save mobile data.</span>
</span>
</a>
<a href="desktop/?type_app=2"
onclick="sendAnalyticsData('Шапка', '', '', '');"
class="access_load">
<span class="name" title="How to bypass the website blocks">How to bypass<b>the website blocks</b></span>
<span class="hideDop">
<span class="bigName">How to bypass the website blocks</span>
<span class="text">send an SMS with the text WWW to +7 960 030-50-80 and get a working mirror site address!</span>
</span>
</a>
<a href="mobile/" onclick="sendAnalyticsData('Шапка', 'Клик приложение для Смартфона', '', 'клик-приложение-для-смартфона-в-шапке');"
class="smart_load">
<span class="name" title="Smartphone app"><b>Smartphone</b>app</span>
<span class="hideDop">
<span class="bigName">Smartphone<br>app</span>
<span class="text">The 1xBet app makes betting simpler and easier.</span>
</span>
</a>
<a href="bonus/rules/bets_by_telegram/"
onclick="sendAnalyticsData('Шапка', 'Клик cтавки через Telegram', '', 'клик-cтавки-через-telegram');" class="telegram_icon">
<span class="name" title="Bets via Telegram">Bets<b>via Telegram</b></span>
<span class="hideDop">
<span class="bigName">Bets<br>via Telegram</span>
</span>
</a>
</div>
<a href="information/payment/" class="paymentsTLBut" title="Payments">
<span>Payments</span>
</a>
<div class="top_extra_buttons">
<a class="callbackTLBut" title="" href="javascript://"
onClick="window.open('/user/onlinecall', 'Online call', 'menubar=no, location=no, resizable=no, scrollbars=no, status=no, width=240, height=150'); sendAnalyticsData('Онлайн звонок', 'Клик онлайн звонок', '', 'Клик-онлайн-звонок');">
<span><b>Call</b>Even a beginner will have no problem placing a bet with our company.</span>
</a>
<!-- <ul class="menu_stat">-->
<!--<li>--><a href="statistic/" class="st" title="Statistics"
onclick="sendAnalyticsData('Иконки', 'Клик по иконке', 'Статистика');"></a><!--</li>-->
<!--<li>--><a href="results/" class="rz"
title="Results"
onclick="sendAnalyticsData('Иконки', 'Клик по иконке', 'Результаты');"></a><!--</li>-->
<!--<li><a href="" class="ls" title="" onclick="sendAnalyticsData('Иконки', 'Клик по иконке', 'LiveScore');"></a></li>-->
<!-- </ul>-->
</div>
<div id="loginout">
<noindex>
<div class="top_short_link">
<a href="information/about/" class="submenu_link">About us</a>
<a href="information/contacts/" class="submenu_link">Contacts</a>
<a href="information/rules/" class="submenu_link">Terms and Conditions</a>
</div>
</noindex>
<!-- Bottom popup message window -->
<div style="position:relative;" id="upm-time-close">
<div style="position:fixed; bottom:5px; left:15px;">
<div id="upm-time" class="upm-n">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="100%" valign="top" class="message_title">
<b>New messages</b>
</td>
<td>
<a href="javascript://" onclick="$('#upm-time-close').delay('100').fadeOut('fast');">
<div style="margin-top:-3px;">
<div class="upm-close"></div>
</div>
</a>
</td>
</tr>
<tr>
<td valign="top">
<div style="color:#bbb;">
You have a new message. </div>
</td>
</tr>
</table>
</div>
</div>
</div>
<span class="user-money">
<!-- Bottom popup message window -->
<script type="text/x-template" id="user_balance">
<div class="user-money">
<div class="user-money_balance base-balance">
<a @click="getBalance" class="show_bonusProgress" title="Balance">
<div class="top-b__account">
<p class="top-b-acc__title">{{_active.name}} (<span class='currency-account'>{{_active.iso}}</span>)</p>
<p class="top-b-acc__amount">{{_active.money}}</p>
</div>
<span v-if="_currency.length > 1" class="top-b__arrow"></span>
</a>
<template v-if="_currency.length > 1">
<div class="user-balance-list base-balance-list scrollbar-macosx">
<div @click="setBalance(balance.id)" v-for="(balance, index) in _currency" class="user-balance-list__item">
<p class="user-balance-list__name">{{balance.name}} (<span class='user-balance-list__currency'>{{balance.iso}}</span>)</p>
<p class="user-balance-list__value">{{balance.money}}</p>
</div>
</div>
</template>
</div>
<div v-if="promo || _other.length" class="user-money_balance extra-balance">
<a class="extra-balance__tab" title="Bonuses">
<template v-if="promo">
<div class="top-b__account">
<p class="top-b-acc__title">Bonus points</p>
<p class="top-b-acc__amount">{{promo}}</p>
</div>
</template>
<template v-else-if="_other.length == 1">
<div v-for="(balance, index) in _other" class="top-b__account">
<p class="top-b-acc__title">{{balance.name}} (<span class='currency-account'>{{balance.iso}}</span>)</p>
<p class="top-b-acc__amount">{{balance.money}}</p>
</div>
</template>
<div v-else class="top-b__account">
Bonuses </div>
<span class="top-b__arrow"></span>
</a>
<div v-if="_other.length || _bonuses.length" class="user-balance-list extra-balance-list scrollbar-macosx">
<div class="extra-balance-list__item">
<div v-if="_other.length" class="extra-balance-item">
<div class="extra-balance-item__title">Bonus account</div>
<div v-for="(balance, index) in _other" class="extra-balance-item__single">
<div class="extra-balance-item__name">{{balance.name}}(<span class='extra-balance-item__currency'>{{balance.iso}}</span>)</div>
<div class="extra-balance-item__amount">{{balance.money}}</div>
</div>
</div>
<div v-if="_bonuses.length" class="extra-balance-item">
<div class="extra-balance-item__title">Bonuses</div>
<div v-for="(bonus, index) in _bonuses" class="extra-balance-item__single new_header_compatibility">
<div class="nameBonus" style="text-align: center">{{bonus.name}}</div>
<div class="bonusProgress">
<label class="bonus_start">{{bonus.start}}</label>
<div class="progress">
<div :style="{width : bonus.width + '%', height: '100%'}" class="ui-progressbar-value"></div>
<div class="progress-label">{{bonus.cur}}</div>
</div>
<label class="bonus_end">{{bonus.end}}</label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</script>
<div class="user-money user-money_before">
<div class="user-money_balance base-balance">
<a @click="getBalance" class="show_bonusProgress" title="Balance">
<div class="top-b__account">
<p class="top-b-acc__title">Main account (<span class='currency-account'>SEK</span>)</p>
<p class="top-b-acc__amount">135.4</p>
</div>
</a>
</div>
<div class="user-money_balance extra-balance">
<a class="extra-balance__tab" title="Bonuses">
<div class="top-b__account">
<p class="top-b-acc__title">Bonus points</p>
<p class="top-b-acc__amount">0</p>
</div>
</a>
</div>
</div>
<div id="user-money" >
<user_balance :firstrender='{"balance":[{"id":38976859,"money":135.4,"lineRestrict":0,"liveRestrict":0,"BetVivaroBalance":0,"fantasy_virt_balance":0,"idCurrecy":61,"kode":"SEK","HasPromoStavka":1,"firstdep":null,"firstdepbonus":null,"hasbonus":0,"refID":1,"PointsBalance":0,"idException":105497,"TypeAccount":0,"line_type":0,"need_ban":0,"Bonus":0,"typ":0,"alias":"","MinOutDeposite":9,"MinOutElectronDeposite":30,"MinInElectronDeposite":15,"freespins":0,"AccountName":"Main account","active":true}],"bonus":[]}'></user_balance>
</div>
<script>$(document).trigger('load.user.money');</script>
<a class="up-funds-button-green" href="office/recharge/" title="Deposit">
Deposit </a>
</span>
<span id="uMessage" title="My messages">
<a href="javascript:" onclick="uMsg.eventClickBlockMsg(); sendAnalyticsData('Шапка', 'Сообщения', 'Клик Кнопка сообщения', 'клик-ваши-сообщения-в-шапке');">
<img src="https://v2l.ccdnss.com/xbet/img/mail.gif" width="19" height="13" id="message_img"/>
<span class="num_of_messages">0</span>/<span class="total_num_of_messages">0</span>
</a>
</span>
<span class="wrap_lk new_header_compatibility ">
<a class="submenu_link alert"
href="office/account/"
onClick="sendAnalyticsData('Шапка', 'Личный кабинет в шапке', 'Клик Личный кабинет');" title="My account"
>
<span style="border-bottom:1px dashed #336699;">
My account </span>
</a>
<ul class="lk_header_options">
<li class="lk_header_options_item lk_header_options_recharge"><a
href="office/recharge/">Deposit</a></li>
<li class="lk_header_options_item lk_header_options_deduce"><a href="office/deduce/">Withdraw funds</a></li>
<li class="lk_header_options_item lk_header_options_bringfriend">
<a href="office/bringfriend/">Affiliate Program</a>
</li>
<li class="lk_header_options_item lk_header_options_account"><a href="office/account/">Personal profile</a></li>
<li class="lk_header_options_item lk_header_options_history"><a href="office/history/">Bet history</a></li>
<li class="lk_header_options_item lk_header_options_settings"><a href="office/settings/">Account settings</a></li>
<li class="lk_header_options_item lk_header_options_exit exitLink"><a href="javascript:">Log out</a></li>
</ul>
</span>
</div>
<noindex>
<div class="coefDropTop">
<div class="curcoefDropTop" title="Settings"
onclick="sendAnalyticsData('Шапка', 'Клик Настройки в шапке');"></div>
<div class="coefDropTop_con">
<ul class="top-options_views">
<li id="eu-view" data-type="0" class="top-view europe active">
<p class="top-view__name">European view</p>
<div class="top-view__map"></div>
</li>
<li id="asia-view" data-type="1" class="top-view asia ">
<p class="top-view__name">Asian view</p>
<div class="top-view__map"></div>
</li>
</ul>
<span class="top-name">Odds format</span>
<ul class="top-options" id="coef_ul">
<li data-num="2">
<a title="US" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Коэффициент Американский');">
<span>US</span>
</a>
</li>
<li data-num="1">
<a title="UK" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Коэффициент Английский');">
<span>UK</span>
</a>
</li>
<li data-num="0">
<a title="Decimal" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Коэффициент Десятичный');">
<span>Decimal</span>
</a>
</li>
<li data-num="4">
<a title="Hong Kong" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Коэффициент Гонконгский');">
<span>Hong Kong</span>
</a>
</li>
<li data-num="5">
<a title="Indonesian" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Коэффициент Индонезийский');">
<span>Indonesian</span>
</a>
</li>
<li data-num="6">
<a title="Malay" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Коэффициент Малайский');">
<span>Malay</span>
</a>
</li>
</ul>
<span class="top-name">Odds change display</span>
<ul class="top-options" id="indicators_ul">
<li data-num="1">
<a title="Full version" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Индикация изменений коэффициентов Полная');">
<span>Full version</span>
</a>
</li>
<li data-num="2">
<a title="Light version"
onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Индикация изменений коэффициентов Упрощенная');">
<span>Light version</span>
</a>
</li>
<li data-num="3">
<a title="Disable"
onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Индикация изменений коэффициентов Отключена');">
<span>Disable</span>
</a>
</li>
</ul>
<span class="top-name live_line_view">Compact view</span>
<ul class="top-options" id="live_line_view">
<li data-num="1" class=" check">
<a title="Enabled" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Компактный вид', 'Включить');">
<span>Enabled</span>
</a>
</li>
<li data-num="2" class="">
<a title="Disabled" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Компактный вид', 'Выключить');">
<span>Disabled</span>
</a>
</li>
</ul>
<div class="top-extra-options">
<div class="teo-item">
<a href="#" class="teo-item__name_switch " id="lite_version"
onclick="sendAnalyticsData('Шапка', 'Клик Облегченная версия сайта');">
Simple version </a>
</div>
<ul class="teo-item" id="expressTop_ul">
<li data-num="3" data-name="line" class="teo-item__name_switch check" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Экспрессы Экспресс дня');" title="Accumulator Of The Day">
Accumulator Of The Day </li>
<li data-num="1" data-name="live" class="teo-item__name_switch check" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Экспрессы Live экспресс дня');" title="Live Accumulator Of The Day">
Live Accumulator Of The Day </li>
</ul>
<ul class="teo-item" id="tutors_ul">
<li class="teo-item__name_switch" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Подсказки');" title="Show hints">
Show hints </li>
</ul>
<ul class="teo-item" id="colors_setting">
<li class="teo-item__name">
<span>Background</span>
<span class="teo-color__gray" data-num="1" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Подсказки Показать подсказки');" title="Light">Light</span>
<span class="teo-color__blue" data-num="0" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Подсказки Скрыть подсказки');" title="Dark">Dark</span>
</li>
</ul>
<ul class="teo-item" id="coupon_setting">
<li class="teo-item__name_switch" onclick="sendAnalyticsData('Шапка', 'Меню Настройки в шапке', 'Клик Расширенный купон');" title="Detailed bet slip">
Detailed bet slip </li>
</ul>
<ul class="teo-item" id="only_betting">
<li class="teo-item__name_switch " title="Show sports only">
Show sports only </li>
</ul> <ul class="teo-item" id="show_number_game">
<li class="teo-item__name_switch " title="Show game ID">
Show game ID </li>
</ul>
<ul class="teo-item" id="change_font_size">
<li class="teo-item__name">
<span>Font size</span>
<span id="f-s_normal" class="font-style font-normal " data-num="0"
title="Normal">A</span>
<span id="f-s_medium" class="font-style font-medium " data-num="1"
title="Medium">A</span>
<span id="f-s_big" class="font-style font-big " data-num="2"
title="Big">A</span>
</li>
</ul>
</div>
</div>
</div>
<div class="timeButTopFl" style="" title="Select time zone">
<span class="timeButTop"></span>
<div class="timeButTop_con">
<div class="timeButTop_con_scroll darkScroll">
<ul id="tz">
<li data-value="-12.00">
<span class="labelUTC">(UTC−12:00)</span> - Baker (Island), Howland Island (Island) </li>
<li data-value="-11.00">
<span class="labelUTC">(UTC-11:00)</span> - Samoa </li>
<li data-value="-10.00">
<span class="labelUTC">(UTC-10:00)</span> - Hawaii </li>
<li data-value="-8.00">
<span class="labelUTC">(UTC-8:00)</span> - Alaska </li>
<li data-value="-7.00">
<span class="labelUTC">(UTC-7:00)</span> - Pacific Time (US, Canada) </li>
<li data-value="-6.00">
<span class="labelUTC">(UTC-6:00)</span> - Mountain Standard Time (USA and Canada), Mexico (Chihuahua, Mazatlán) </li>
<li data-value="-5.00">
<span class="labelUTC">(UTC-5:00)</span> - Central Time (US & Canada), Mexico (Guadalajara, Mexico City, Monterrey), Pacific Time (US, Canada), GMT -5 (Bogota, Lima, Quito) </li>
<li data-value="-4.00">
<span class="labelUTC">(UTC-4:00)</span> - Venezuela </li>
<li data-value="-3.00">
<span class="labelUTC">(UTC-3:00)</span> - Atlantic Time (Canada), La Paz, Santiago </li>
<li data-value="-3.50">
<span class="labelUTC">(UTC-3:30)</span> - Newfoundland </li>
<li data-value="-3.00">
<span class="labelUTC">(UTC-3:00)</span> - South American Eastern Time (Brasilia, Buenos Aires, Georgetown), Greenland </li>
<li data-value="-2.00">
<span class="labelUTC">(UTC-2:00)</span> - Mid-Atlantic Time </li>
<li data-value="-1.00">
<span class="labelUTC">(UTC-1:00)</span> - Cape Verde </li>
<li data-value="0.00">
<span class="labelUTC">(UTC 0:00)</span> - Azores, Casablanca, Lisbon, Monrovia </li>
<li data-value="1.00">
<span class="labelUTC">(UTC+1:00)</span> - Dublin, Edinburgh, London, Prague </li>
<li data-value="2.00">
<span class="labelUTC">(UTC+2:00)</span> - Amsterdam, Berlin, Brussels, Vienna, Copenhagen, Madrid, Paris, Rome, Stockholm, Warsaw </li>
<li data-value="2.00">
<span class="labelUTC">(UTC+2:00)</span> - Kaliningrad, Egypt, South Africa, Cyprus </li>
<li data-value="3.00">
<span class="labelUTC">(UTC+3:00)</span> - Moscow time, Kenya, Tanzania, Somalia, Sudan, Madagascar, Iraq, Yemen, Kuwait, Saudi Arabia, Qatar </li>
<li data-value="3.50">
<span class="labelUTC">(UTC+3:30)</span> - Tehran </li>
<li data-value="4.00">
<span class="labelUTC">(UTC+4:00)</span> - Samara, Izhevsk, Abkhazia, Armenia, Azerbaijan, Georgia, UAE, Oman </li>
<li data-value="4.50">
<span class="labelUTC">(UTC+4:30)</span> - Afghanistan </li>
<li data-value="5.00">
<span class="labelUTC">(UTC+5:00)</span> - Yekaterinburg Time, Western Asian Time (Islamabad, Karachi, Uzbekistan) </li>
<li data-value="5.50">
<span class="labelUTC">(UTC+5:30)</span> - India, Sri Lanka </li>
<li data-value="5.75">
<span class="labelUTC">(UTC+5:45)</span> - Nepal </li>
<li data-value="6.00">
<span class="labelUTC">(UTC+6:00)</span> - Omsk Time, Central Asian Time (Bangladesh, Kazakhstan, Kyrgyzstan) </li>
<li data-value="6.50">
<span class="labelUTC">(UTC+6:30)</span> - Myanmar </li>
<li data-value="7.00">
<span class="labelUTC">(UTC+7:00)</span> - Krasnoyarsk Time, Novosibirsk, Kemerovo, South-East Asia (Bangkok, Jakarta, Hanoi) </li>
<li data-value="8.00">
<span class="labelUTC">(UTC+8:00)</span> - Irkutsk Time, Ulaanbaatar, Kuala Lumpur, Hong Kong, China, Singapore, Taiwan, Perth </li>
<li data-value="8.50">
<span class="labelUTC">(UTC+8:30)</span> - North Korea </li>
<li data-value="8.75">
<span class="labelUTC">(UTC+8:45)</span> - Caiguna, Eucla, Madura Island, Mundrabilla, Border Village </li>
<li data-value="9.00">
<span class="labelUTC">(UTC+9:00)</span> - Yakutsk Time, Korea, Japan </li>
<li data-value="9.50">
<span class="labelUTC">(UTC+9:30)</span> - Australian Central Standard Time (Adelaide, Darwin Island) </li>
<li data-value="10.00">
<span class="labelUTC">(UTC+10:00)</span> - Vladivostok Time, Magadan Time, Brisbane, Canberra, Melbourne, Sydney, Tasmania, Guam, Port Moresby </li>
<li data-value="10.50">
<span class="labelUTC">(UTC+10:30)</span> - North Australia </li>
<li data-value="11.00">
<span class="labelUTC">(UTC+11:00)</span> - Sakhalin Region (North Kuril district), Central Pacific Time (Solomon Islands, New Caledonia), Norfolk Island </li>
<li data-value="12.00">
<span class="labelUTC">(UTC+12:00)</span> - Kamchatka region, Chukotka Autonomous District, Marshall Islands, Fiji, New Zealand </li>
<li data-value="12.75">
<span class="labelUTC">(UTC+12:45)</span> - Chatham Islands (winter time) </li>
<li data-value="13.00">
<span class="labelUTC">(UTC+13:00)</span> - Samoa, Tonga </li>
<li data-value="13.75">
<span class="labelUTC">(UTC+13:45)</span> - Chatham Islands (summer time) </li>
<li data-value="14.00">
<span class="labelUTC">(UTC+14:00)</span> - Line Islands </li>
</ul>
</div>
</div>
</div>
</noindex>
<div class="langDropTop">
<div class="langDropTop_con">
<div class="curlangDropTop" title="Select language">
<span class="langDT17 ldt_en"></span>
<span class="name">en</span>
</div>
<ul class="langDropTop_ul">
<li>
<a title="Shqip" data-lng="al" data-flaglng="al">
<span class="langDT17 ldt_al"></span>
<span class="name">al</span>
</a>
</li>
<li>
<a title="" data-lng="es" data-flaglng="ag">
<span class="langDT17 ldt_ag"></span>
<span class="name">ag</span>
</a>
</li>
<li>
<a title="العربية" data-lng="ar" data-flaglng="ae">
<span class="langDT17 ldt_ar"></span>
<span class="name">ae</span>
</a>
</li>
<li>
<a title="Australian English" data-lng="au" data-flaglng="au">
<span class="langDT17 ldt_au"></span>
<span class="name">au</span>
</a>
</li>
<li>
<a title="Azərbaycan dili" data-lng="az" data-flaglng="az">
<span class="langDT17 ldt_az"></span>
<span class="name">az</span>
</a>
</li>
<li>
<a title="Български" data-lng="bg" data-flaglng="bg">
<span class="langDT17 ldt_bg"></span>
<span class="name">bg</span>
</a>
</li>
<li>
<a title="Português (Brasil)" data-lng="br" data-flaglng="br">
<span class="langDT17 ldt_br"></span>
<span class="name">br</span>
</a>
</li>
<li>
<a title="Беларуская мова" data-lng="by" data-flaglng="by">
<span class="langDT17 ldt_by"></span>
<span class="name">by</span>
</a>
</li>
<li>
<a title="汉语" data-lng="cn" data-flaglng="cn">
<span class="langDT17 ldt_cn"></span>
<span class="name">cn</span>
</a>
</li>
<li>
<a title="Český" data-lng="cs" data-flaglng="cz">
<span class="langDT17 ldt_cs"></span>
<span class="name">cz</span>
</a>
</li>
<li>
<a title="Dansk" data-lng="da" data-flaglng="dk">
<span class="langDT17 ldt_da"></span>
<span class="name">dk</span>
</a>
</li>
<li>
<a title="Deutsch" data-lng="de" data-flaglng="de">
<span class="langDT17 ldt_de"></span>
<span class="name">de</span>
</a>
</li>
<li>
<a title="Ελληνικά" data-lng="el" data-flaglng="gr">
<span class="langDT17 ldt_el"></span>
<span class="name">gr</span>
</a>
</li>
<li>
<a title="English" data-lng="en" data-flaglng="en">
<span class="langDT17 ldt_en"></span>
<span class="name">en</span>
</a>
</li>
<li>
<a title="Español" data-lng="es" data-flaglng="es">
<span class="langDT17 ldt_es"></span>
<span class="name">es</span>
</a>
</li>
<li>
<a title="Eesti keel" data-lng="et" data-flaglng="et">
<span class="langDT17 ldt_et"></span>
<span class="name">et</span>
</a>
</li>
<li>
<a title="زبان فارسی" data-lng="fa" data-flaglng="ir">
<span class="langDT17 ldt_fa"></span>
<span class="name">ir</span>
</a>
</li>
<li>
<a title="Suomi" data-lng="fi" data-flaglng="fi">
<span class="langDT17 ldt_fi"></span>
<span class="name">fi</span>
</a>
</li>
<li>
<a title="Français" data-lng="fr" data-flaglng="fr">
<span class="langDT17 ldt_fr"></span>
<span class="name">fr</span>
</a>
</li>
<li>
<a title="עברית" data-lng="he" data-flaglng="he">
<span class="langDT17 ldt_he"></span>
<span class="name">he</span>
</a>
</li>
<li>
<a title="हिन्दी" data-lng="hi" data-flaglng="hi">
<span class="langDT17 ldt_hi"></span>
<span class="name">hi</span>
</a>
</li>
<li>
<a title="Hrvatski jezik" data-lng="hr" data-flaglng="hr">
<span class="langDT17 ldt_hr"></span>
<span class="name">hr</span>
</a>
</li>
<li>
<a title="Magyar nyelv" data-lng="hu" data-flaglng="hu">
<span class="langDT17 ldt_hu"></span>
<span class="name">hu</span>
</a>
</li>
<li>
<a title="Bahasa Indonesia" data-lng="id" data-flaglng="id">
<span class="langDT17 ldt_id"></span>
<span class="name">id</span>
</a>
</li>
<li>
<a title="العربية" data-lng="iq" data-flaglng="iq">
<span class="langDT17 ldt_iq"></span>
<span class="name">iq</span>
</a>
</li>
<li>
<a title="Italiano" data-lng="it" data-flaglng="it">
<span class="langDT17 ldt_it"></span>
<span class="name">it</span>
</a>
</li>
<li>
<a title="日本語" data-lng="ja" data-flaglng="jp">
<span class="langDT17 ldt_ja"></span>
<span class="name">jp</span>
</a>
</li>
<li>
<a title="ქართული ენა" data-lng="ka" data-flaglng="ge">
<span class="langDT17 ldt_ka"></span>
<span class="name">ge</span>
</a>
</li>
<li>
<a title="ភាសាខ្មែរ" data-lng="km" data-flaglng="km">
<span class="langDT17 ldt_km"></span>
<span class="name">km</span>
</a>
</li>
<li>
<a title="한국어" data-lng="ko" data-flaglng="kr">
<span class="langDT17 ldt_ko"></span>
<span class="name">kr</span>
</a>
</li>
<li>
<a title="Қазақ тілі" data-lng="kz" data-flaglng="kz">
<span class="langDT17 ldt_kz"></span>
<span class="name">kz</span>
</a>
</li>
<li>
<a title="Lietuvių kalba" data-lng="lt" data-flaglng="lt">
<span class="langDT17 ldt_lt"></span>
<span class="name">lt</span>
</a>
</li>
<li>
<a title="Latviešu valoda" data-lng="lv" data-flaglng="lv">
<span class="langDT17 ldt_lv"></span>
<span class="name">lv</span>
</a>
</li>
<li>
<a title="Македонски јазик" data-lng="mk" data-flaglng="mk">
<span class="langDT17 ldt_mk"></span>
<span class="name">mk</span>
</a>
</li>
<li>
<a title="Монгол хэл" data-lng="mn" data-flaglng="mn">
<span class="langDT17 ldt_mn"></span>
<span class="name">mn</span>
</a>
</li>
<li>
<a title="Bahasa Melayu" data-lng="ms" data-flaglng="ms">
<span class="langDT17 ldt_ms"></span>
<span class="name">ms</span>
</a>
</li>
<li>
<a title="Norsk" data-lng="nb" data-flaglng="nb">
<span class="langDT17 ldt_nb"></span>
<span class="name">nb</span>
</a>
</li>
<li>
<a title="Polski" data-lng="pl" data-flaglng="pl">
<span class="langDT17 ldt_pl"></span>
<span class="name">pl</span>
</a>
</li>
<li>
<a title="Português" data-lng="pt" data-flaglng="pt">
<span class="langDT17 ldt_pt"></span>
<span class="name">pt</span>
</a>
</li>
<li>
<a title="Română" data-lng="ro" data-flaglng="ro">
<span class="langDT17 ldt_ro"></span>
<span class="name">ro</span>
</a>
</li>
<li>
<a title="Русский" data-lng="ru" data-flaglng="ru">
<span class="langDT17 ldt_ru"></span>
<span class="name">ru</span>
</a>
</li>
<li>
<a title="Slovenčin" data-lng="sk" data-flaglng="sk">
<span class="langDT17 ldt_sk"></span>
<span class="name">sk</span>
</a>
</li>
<li>
<a title="Српски" data-lng="sr" data-flaglng="rs">
<span class="langDT17 ldt_sr"></span>
<span class="name">rs</span>
</a>
</li>
<li>
<a title="Svenska" data-lng="sv" data-flaglng="se">
<span class="langDT17 ldt_sv"></span>
<span class="name">se</span>
</a>
</li>
<li>
<a title="ภาษาไทย" data-lng="th" data-flaglng="th">
<span class="langDT17 ldt_th"></span>
<span class="name">th</span>
</a>
</li>
<li>
<a title="Türkçe" data-lng="tr" data-flaglng="tr">
<span class="langDT17 ldt_tr"></span>
<span class="name">tr</span>
</a>
</li>
<li>
<a title="漢語" data-lng="tw" data-flaglng="tw">
<span class="langDT17 ldt_tw"></span>
<span class="name">tw</span>
</a>
</li>
<li>
<a title="Українська мова" data-lng="ua" data-flaglng="ua">
<span class="langDT17 ldt_ua"></span>
<span class="name">ua</span>
</a>
</li>
<li>
<a title="American" data-lng="us" data-flaglng="us">
<span class="langDT17 ldt_us"></span>
<span class="name">us</span>
</a>
</li>
<li>
<a title="Oʻzbek tili" data-lng="uz" data-flaglng="uz">
<span class="langDT17 ldt_uz"></span>
<span class="name">uz</span>
</a>
</li>
<li>
<a title="Tiếng Việt" data-lng="vi" data-flaglng="vi">
<span class="langDT17 ldt_vi"></span>
<span class="name">vi</span>
</a>
</li>
</ul>
</div>
</div>
<!-- </div>-->
<div style="display:none;" id="list_of_messages">
<div class="caption">
<div class="theme">Subject</div>
<div class="date">Date</div>
<div class="clear"></div>
</div>