forked from daviddrysdale/python-phonenumbers
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadditional_data.py
More file actions
3374 lines (3372 loc) · 255 KB
/
Copy pathadditional_data.py
File metadata and controls
3374 lines (3372 loc) · 255 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
numbering_plan = [
# RU
{'start': 9000000000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9000200000, 'count': 300000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9000500000, 'count': 100000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9000600000, 'count': 400000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9001000000, 'count': 100000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9001100000, 'count': 870000, 'timezone': ('Europe/Moscow', )},
{'start': 9001970000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9002170000, 'count': 18000, 'timezone': ('Europe/Moscow', )},
{'start': 9002190000, 'count': 910000, 'timezone': ('Europe/Moscow', )},
{'start': 9003100000, 'count': 50000, 'timezone': ('Europe/Volgograd', )},
{'start': 9003150000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9003350000, 'count': 10000, 'timezone': ('Asia/Anadyr', )},
{'start': 9003360000, 'count': 90000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9003450000, 'count': 100000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9003550000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9003750000, 'count': 300000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9004050000, 'count': 100000, 'timezone': ('Asia/Magadan', )},
{'start': 9004150000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9004250000, 'count': 100000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9004350000, 'count': 100000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9004450000, 'count': 10000, 'timezone': ('Asia/Anadyr', )},
{'start': 9004460000, 'count': 191000, 'timezone': ('Europe/Moscow', )},
{'start': 9004655000, 'count': 230000, 'timezone': ('Europe/Moscow', )},
{'start': 9004885000, 'count': 10000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9004900000, 'count': 300000, 'timezone': ('Europe/Moscow', )},
{'start': 9005200000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9005300000, 'count': 310000, 'timezone': ('Europe/Moscow', )},
{'start': 9005610000, 'count': 100000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9005710000, 'count': 890000, 'timezone': ('Europe/Moscow', )},
{'start': 9006600000, 'count': 100000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9006700000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9006800000, 'count': 100000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9006900000, 'count': 600000, 'timezone': ('Europe/Moscow', )},
{'start': 9007500000, 'count': 400000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9007900000, 'count': 350000, 'timezone': ('Europe/Moscow', )},
{'start': 9008250000, 'count': 125000, 'timezone': ('Europe/Volgograd', )},
{'start': 9008375000, 'count': 1000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9008376000, 'count': 1000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9008377000, 'count': 123000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9008500000, 'count': 499000, 'timezone': ('Europe/Moscow', )},
{'start': 9008999000, 'count': 1000, 'timezone': ('Europe/Samara', )},
{'start': 9009000000, 'count': 210000, 'timezone': ('Europe/Moscow', )},
{'start': 9009210000, 'count': 30000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9009240000, 'count': 895300, 'timezone': ('Europe/Moscow', )},
{'start': 9010135300, 'count': 200, 'timezone': ('Asia/Irkutsk', )},
{'start': 9010135500, 'count': 100, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9010135600, 'count': 100, 'timezone': ('Asia/Chita', )},
{'start': 9010135700, 'count': 100, 'timezone': ('Asia/Kamchatka', )},
{'start': 9010135800, 'count': 100, 'timezone': ('Europe/Moscow', )},
{'start': 9010135900, 'count': 100, 'timezone': ('Asia/Omsk', )},
{'start': 9010136000, 'count': 100, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9010136100, 'count': 100, 'timezone': ('Asia/Irkutsk', )},
{'start': 9010136200, 'count': 100, 'timezone': ('Europe/Moscow', )},
{'start': 9010136300, 'count': 100, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9010136400, 'count': 200, 'timezone': ('Europe/Moscow', )},
{'start': 9010136600, 'count': 100, 'timezone': ('Asia/Chita', )},
{'start': 9010136700, 'count': 100, 'timezone': ('Asia/Vladivostok', )},
{'start': 9010136800, 'count': 100, 'timezone': ('Asia/Yakutsk', )},
{'start': 9010136900, 'count': 100, 'timezone': ('Asia/Kamchatka', )},
{'start': 9010137000, 'count': 100, 'timezone': ('Europe/Moscow', )},
{'start': 9010140000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9010170000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9010200000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9010920000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9010950000, 'count': 50000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9011000000, 'count': 80000, 'timezone': ('Europe/Moscow', )},
{'start': 9011090000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9011100000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9011110000, 'count': 10000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9011120000, 'count': 40000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9011170000, 'count': 70000, 'timezone': ('Europe/Moscow', )},
{'start': 9011250000, 'count': 40000, 'timezone': ('Europe/Moscow', )},
{'start': 9011300000, 'count': 15000, 'timezone': ('Europe/Volgograd', )},
{'start': 9011315000, 'count': 400, 'timezone': ('Europe/Moscow', )},
{'start': 9011315400, 'count': 100, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9011315500, 'count': 100, 'timezone': ('Europe/Moscow', )},
{'start': 9011315600, 'count': 100, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9011315700, 'count': 100, 'timezone': ('Europe/Moscow', )},
{'start': 9011315800, 'count': 100, 'timezone': ('Europe/Samara', )},
{'start': 9011315900, 'count': 100, 'timezone': ('Europe/Volgograd', )},
{'start': 9011316000, 'count': 100, 'timezone': ('Europe/Moscow', )},
{'start': 9011316100, 'count': 100, 'timezone': ('Asia/Omsk', )},
{'start': 9011316200, 'count': 200, 'timezone': ('Europe/Moscow', )},
{'start': 9011340000, 'count': 10000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9011350000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9011380000, 'count': 10000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9011390000, 'count': 10000, 'timezone': ('Asia/Anadyr', )},
{'start': 9011400000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9011440000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9011450000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9011470000, 'count': 5000, 'timezone': ('Europe/Moscow', )},
{'start': 9011490000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9011510000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9011520000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9011560000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9011570000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9011580000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9011610000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9011800000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9012000000, 'count': 10000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9012010000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9012020000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9012050000, 'count': 50000, 'timezone': ('Asia/Omsk', )},
{'start': 9012100000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9012200000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9012220000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9012300000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9012340000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9012350000, 'count': 70000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9012420000, 'count': 20000, 'timezone': ('Europe/Volgograd', )},
{'start': 9012500000, 'count': 40000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9012600000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9012620000, 'count': 20000, 'timezone': ('Asia/Omsk', )},
{'start': 9012650000, 'count': 50000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9012700000, 'count': 210000, 'timezone': ('Europe/Moscow', )},
{'start': 9012990000, 'count': 910000, 'timezone': ('Europe/Moscow', )},
{'start': 9013900000, 'count': 10000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9013910000, 'count': 190000, 'timezone': ('Europe/Moscow', )},
{'start': 9014100000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9014120000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9014130000, 'count': 40000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9014180000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9014190000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9014200000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9014300000, 'count': 130000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9014440000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9014450000, 'count': 10000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9014460000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9014490000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9014500000, 'count': 30000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9014530000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9014550000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9014560000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9014570000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9014580000, 'count': 20000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9014600000, 'count': 10000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9014610000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9014620000, 'count': 20000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9014640000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9014650000, 'count': 20000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9014700000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9014710000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9014750000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9014780000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9014790000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9014800000, 'count': 140000, 'timezone': ('Europe/Moscow', )},
{'start': 9014960000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9015000000, 'count': 1000000, 'timezone': ('Europe/Moscow', )},
{'start': 9016000000, 'count': 10000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9016070000, 'count': 80000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9016150000, 'count': 20000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9016170000, 'count': 20000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9016190000, 'count': 10000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9016210000, 'count': 10000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9016230000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9016290000, 'count': 10000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9016300000, 'count': 45000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9016350000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9016400000, 'count': 20000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9016420000, 'count': 5000, 'timezone': ('Asia/Omsk', )},
{'start': 9016440000, 'count': 10000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9016450000, 'count': 10000, 'timezone': ('Asia/Omsk', )},
{'start': 9016460000, 'count': 20000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9016500000, 'count': 250000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9017000000, 'count': 1020000, 'timezone': ('Europe/Moscow', )},
{'start': 9018020000, 'count': 20000, 'timezone': ('Europe/Samara', )},
{'start': 9018040000, 'count': 40000, 'timezone': ('Europe/Volgograd', )},
{'start': 9018090000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9018100000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9018200000, 'count': 20000, 'timezone': ('Europe/Volgograd', )},
{'start': 9018220000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9018470000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9018600000, 'count': 100000, 'timezone': ('Europe/Samara', )},
{'start': 9018700000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9018880000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9019000000, 'count': 110000, 'timezone': ('Europe/Moscow', )},
{'start': 9019110000, 'count': 10000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9019230000, 'count': 10000, 'timezone': ('Asia/Chita', )},
{'start': 9019240000, 'count': 10000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9019290000, 'count': 10000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9019300000, 'count': 10000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9019320000, 'count': 10000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9019330000, 'count': 10000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9019340000, 'count': 10000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9019350000, 'count': 10000, 'timezone': ('Asia/Magadan', )},
{'start': 9019370000, 'count': 10000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9019380000, 'count': 10000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9019390000, 'count': 10000, 'timezone': ('Asia/Anadyr', )},
{'start': 9019400000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9019410000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9019420000, 'count': 20000, 'timezone': ('Europe/Samara', )},
{'start': 9019440000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9019470000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9019490000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9019520000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9019540000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9019560000, 'count': 10000, 'timezone': ('Asia/Omsk', )},
{'start': 9019570000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9019580000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9019610000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9019630000, 'count': 10000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9019640000, 'count': 160000, 'timezone': ('Europe/Moscow', )},
{'start': 9019810000, 'count': 290000, 'timezone': ('Europe/Moscow', )},
{'start': 9020100000, 'count': 50000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9020150000, 'count': 50000, 'timezone': ('Europe/Moscow', )},
{'start': 9020200000, 'count': 129000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9020329000, 'count': 40000, 'timezone': ('Europe/Moscow', )},
{'start': 9020369000, 'count': 11000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9020380000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9020400000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9020500000, 'count': 300000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9020800000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9020900000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9021000000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9021100000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9021200000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9021400000, 'count': 70000, 'timezone': ('Asia/Omsk', )},
{'start': 9021470000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9021500000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9021520000, 'count': 30000, 'timezone': ('Europe/Samara', )},
{'start': 9021550000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9021570000, 'count': 30000, 'timezone': ('Europe/Samara', )},
{'start': 9021600000, 'count': 200000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9021800000, 'count': 80000, 'timezone': ('Europe/Samara', )},
{'start': 9021880000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9021890000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9021900000, 'count': 450000, 'timezone': ('Europe/Moscow', )},
{'start': 9022350000, 'count': 50000, 'timezone': ('Europe/Samara', )},
{'start': 9022400000, 'count': 70000, 'timezone': ('Europe/Moscow', )},
{'start': 9022470000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9022490000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9022500000, 'count': 30000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9022530000, 'count': 270000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9022800000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9022810000, 'count': 80000, 'timezone': ('Europe/Moscow', )},
{'start': 9022890000, 'count': 110000, 'timezone': ('Europe/Samara', )},
{'start': 9023000000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9023100000, 'count': 50000, 'timezone': ('Europe/Volgograd', )},
{'start': 9023150000, 'count': 50000, 'timezone': ('Europe/Moscow', )},
{'start': 9023200000, 'count': 50000, 'timezone': ('Europe/Samara', )},
{'start': 9023250000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9023350000, 'count': 50000, 'timezone': ('Europe/Samara', )},
{'start': 9023400000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9023500000, 'count': 20000, 'timezone': ('Europe/Volgograd', )},
{'start': 9023520000, 'count': 80000, 'timezone': ('Europe/Moscow', )},
{'start': 9023600000, 'count': 50000, 'timezone': ('Europe/Volgograd', )},
{'start': 9023650000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9023670000, 'count': 130000, 'timezone': ('Europe/Samara', )},
{'start': 9023800000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9023900000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9024000000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9024030000, 'count': 60000, 'timezone': ('Europe/Moscow', )},
{'start': 9024090000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9024110000, 'count': 30000, 'timezone': ('Europe/Samara', )},
{'start': 9024140000, 'count': 100000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9024250000, 'count': 50000, 'timezone': ('Europe/Samara', )},
{'start': 9024300000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9024400000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9024500000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9024610000, 'count': 40000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9024650000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9024670000, 'count': 20000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9024700000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9024800000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9024900000, 'count': 140000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9025040000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9025050000, 'count': 20000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9025070000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9025080000, 'count': 10000, 'timezone': ('Asia/Magadan', )},
{'start': 9025090000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9025100000, 'count': 70000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9025170000, 'count': 20000, 'timezone': ('Europe/Samara', )},
{'start': 9025190000, 'count': 10000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9025200000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9025300000, 'count': 200000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9025500000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9025530000, 'count': 50000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9025580000, 'count': 10000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9025590000, 'count': 10000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9025600000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9025700000, 'count': 60000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9025760000, 'count': 40000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9025800000, 'count': 20000, 'timezone': ('Europe/Samara', )},
{'start': 9025820000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9025830000, 'count': 50000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9025880000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9025900000, 'count': 600000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9026500000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9026600000, 'count': 130000, 'timezone': ('Europe/Moscow', )},
{'start': 9026730000, 'count': 70000, 'timezone': ('Asia/Omsk', )},
{'start': 9026800000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9026900000, 'count': 50000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9026950000, 'count': 150000, 'timezone': ('Europe/Moscow', )},
{'start': 9027100000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9027110000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9027120000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9027130000, 'count': 40000, 'timezone': ('Europe/Moscow', )},
{'start': 9027170000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9027180000, 'count': 220000, 'timezone': ('Europe/Moscow', )},
{'start': 9027400000, 'count': 30000, 'timezone': ('Europe/Samara', )},
{'start': 9027430000, 'count': 50000, 'timezone': ('Europe/Moscow', )},
{'start': 9027480000, 'count': 20000, 'timezone': ('Europe/Samara', )},
{'start': 9027500000, 'count': 50000, 'timezone': ('Europe/Moscow', )},
{'start': 9027550000, 'count': 50000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9027600000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9027700000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9027900000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9028100000, 'count': 20000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9028120000, 'count': 90000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9028210000, 'count': 30000, 'timezone': ('Asia/Omsk', )},
{'start': 9028240000, 'count': 160000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9028400000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9028500000, 'count': 300000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9028800000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9028900000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9029000000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9029100000, 'count': 200000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9029300000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9029400000, 'count': 130000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9029530000, 'count': 30000, 'timezone': ('Europe/Volgograd', )},
{'start': 9029560000, 'count': 270000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9029830000, 'count': 20000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9029850000, 'count': 50000, 'timezone': ('Europe/Moscow', )},
{'start': 9029900000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9029930000, 'count': 30000, 'timezone': ('Europe/Volgograd', )},
{'start': 9029960000, 'count': 10000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9029970000, 'count': 30000, 'timezone': ('Asia/Omsk', )},
{'start': 9030000000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9030200000, 'count': 40000, 'timezone': ('Europe/Volgograd', )},
{'start': 9030240000, 'count': 210000, 'timezone': ('Europe/Moscow', )},
{'start': 9030450000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9030460000, 'count': 30000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9030490000, 'count': 10000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9030500000, 'count': 170000, 'timezone': ('Europe/Moscow', )},
{'start': 9030670000, 'count': 50000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9030720000, 'count': 30000, 'timezone': ('Asia/Omsk', )},
{'start': 9030750000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9030760000, 'count': 10000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9030770000, 'count': 10000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9030780000, 'count': 140000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9030920000, 'count': 2080000, 'timezone': ('Europe/Moscow', )},
{'start': 9033000000, 'count': 50000, 'timezone': ('Europe/Samara', )},
{'start': 9033050000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9033080000, 'count': 20000, 'timezone': ('Europe/Samara', )},
{'start': 9033100000, 'count': 30000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9033130000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9033150000, 'count': 30000, 'timezone': ('Europe/Volgograd', )},
{'start': 9033180000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9033210000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9033220000, 'count': 50000, 'timezone': ('Europe/Moscow', )},
{'start': 9033270000, 'count': 30000, 'timezone': ('Europe/Volgograd', )},
{'start': 9033300000, 'count': 60000, 'timezone': ('Europe/Samara', )},
{'start': 9033360000, 'count': 110000, 'timezone': ('Europe/Moscow', )},
{'start': 9033470000, 'count': 30000, 'timezone': ('Europe/Volgograd', )},
{'start': 9033500000, 'count': 70000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9033570000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9033600000, 'count': 30000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9033630000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9033640000, 'count': 60000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9033700000, 'count': 90000, 'timezone': ('Europe/Volgograd', )},
{'start': 9033790000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9033800000, 'count': 70000, 'timezone': ('Europe/Volgograd', )},
{'start': 9033870000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9033900000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9034000000, 'count': 670000, 'timezone': ('Europe/Moscow', )},
{'start': 9034670000, 'count': 20000, 'timezone': ('Europe/Volgograd', )},
{'start': 9034690000, 'count': 60000, 'timezone': ('Europe/Moscow', )},
{'start': 9034750000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9034760000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9034780000, 'count': 20000, 'timezone': ('Europe/Volgograd', )},
{'start': 9034800000, 'count': 4200000, 'timezone': ('Europe/Moscow', )},
{'start': 9039000000, 'count': 70000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9039070000, 'count': 30000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9039100000, 'count': 30000, 'timezone': ('Asia/Omsk', )},
{'start': 9039130000, 'count': 30000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9039160000, 'count': 10000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9039170000, 'count': 20000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9039190000, 'count': 10000, 'timezone': ('Asia/Omsk', )},
{'start': 9039200000, 'count': 50000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9039250000, 'count': 30000, 'timezone': ('Asia/Omsk', )},
{'start': 9039280000, 'count': 20000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9039300000, 'count': 100000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9039400000, 'count': 70000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9039470000, 'count': 30000, 'timezone': ('Asia/Omsk', )},
{'start': 9039500000, 'count': 60000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9039560000, 'count': 30000, 'timezone': ('Asia/Omsk', )},
{'start': 9039590000, 'count': 10000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9039600000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9039800000, 'count': 40000, 'timezone': ('Asia/Omsk', )},
{'start': 9039840000, 'count': 20000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9039860000, 'count': 40000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9039900000, 'count': 30000, 'timezone': ('Asia/Omsk', )},
{'start': 9039930000, 'count': 20000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9039950000, 'count': 20000, 'timezone': ('Asia/Omsk', )},
{'start': 9039970000, 'count': 30000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9040000000, 'count': 700000, 'timezone': ('Europe/Moscow', )},
{'start': 9040700000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9040800000, 'count': 300000, 'timezone': ('Europe/Moscow', )},
{'start': 9041100000, 'count': 500000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9041600000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9041800000, 'count': 600000, 'timezone': ('Europe/Moscow', )},
{'start': 9042400000, 'count': 50000, 'timezone': ('Europe/Volgograd', )},
{'start': 9042450000, 'count': 50000, 'timezone': ('Europe/Samara', )},
{'start': 9042500000, 'count': 250000, 'timezone': ('Europe/Moscow', )},
{'start': 9042750000, 'count': 50000, 'timezone': ('Europe/Samara', )},
{'start': 9042800000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9043000000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9043100000, 'count': 100000, 'timezone': ('Europe/Samara', )},
{'start': 9043200000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9043300000, 'count': 400000, 'timezone': ('Europe/Moscow', )},
{'start': 9043700000, 'count': 100000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9043800000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9043900000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9044000000, 'count': 400000, 'timezone': ('Europe/Volgograd', )},
{'start': 9044400000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9044500000, 'count': 500000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9045000000, 'count': 400000, 'timezone': ('Europe/Moscow', )},
{'start': 9045400000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9045500000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9045700000, 'count': 100000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9045800000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9045900000, 'count': 300000, 'timezone': ('Europe/Moscow', )},
{'start': 9046200000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9046300000, 'count': 700000, 'timezone': ('Europe/Moscow', )},
{'start': 9047000000, 'count': 80000, 'timezone': ('Europe/Volgograd', )},
{'start': 9047080000, 'count': 40000, 'timezone': ('Europe/Samara', )},
{'start': 9047120000, 'count': 160000, 'timezone': ('Europe/Moscow', )},
{'start': 9047280000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9047290000, 'count': 9000, 'timezone': ('Europe/Samara', )},
{'start': 9047299000, 'count': 1000, 'timezone': ('Europe/Moscow', )},
{'start': 9047300000, 'count': 50000, 'timezone': ('Europe/Samara', )},
{'start': 9047350000, 'count': 50000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9047400000, 'count': 100000, 'timezone': ('Europe/Samara', )},
{'start': 9047500000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9047600000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9047700000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9047800000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9048000000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9048200000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9048300000, 'count': 100000, 'timezone': ('Europe/Samara', )},
{'start': 9048400000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9048500000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9048700000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9048900000, 'count': 100000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9049000000, 'count': 300000, 'timezone': ('Europe/Moscow', )},
{'start': 9049300000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9049550000, 'count': 50000, 'timezone': ('Europe/Moscow', )},
{'start': 9049600000, 'count': 100000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9049700000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9049900000, 'count': 100000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9050000000, 'count': 80000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9050080000, 'count': 90000, 'timezone': ('Europe/Moscow', )},
{'start': 9050170000, 'count': 30000, 'timezone': ('Europe/Samara', )},
{'start': 9050200000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9050300000, 'count': 50000, 'timezone': ('Europe/Volgograd', )},
{'start': 9050350000, 'count': 250000, 'timezone': ('Europe/Moscow', )},
{'start': 9050600000, 'count': 50000, 'timezone': ('Europe/Volgograd', )},
{'start': 9050650000, 'count': 150000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9050800000, 'count': 50000, 'timezone': ('Asia/Omsk', )},
{'start': 9050850000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9050860000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9050890000, 'count': 10000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9050900000, 'count': 40000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9050940000, 'count': 20000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9050960000, 'count': 40000, 'timezone': ('Asia/Omsk', )},
{'start': 9051000000, 'count': 800000, 'timezone': ('Europe/Moscow', )},
{'start': 9051800000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9051820000, 'count': 580000, 'timezone': ('Europe/Moscow', )},
{'start': 9052400000, 'count': 100000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9052500000, 'count': 500000, 'timezone': ('Europe/Moscow', )},
{'start': 9053000000, 'count': 70000, 'timezone': ('Europe/Samara', )},
{'start': 9053070000, 'count': 30000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9053100000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9053200000, 'count': 200000, 'timezone': ('Europe/Volgograd', )},
{'start': 9053400000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9053500000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9053600000, 'count': 50000, 'timezone': ('Europe/Volgograd', )},
{'start': 9053650000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9053680000, 'count': 20000, 'timezone': ('Europe/Volgograd', )},
{'start': 9053700000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9053800000, 'count': 90000, 'timezone': ('Europe/Volgograd', )},
{'start': 9053890000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9053900000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9054000000, 'count': 330000, 'timezone': ('Europe/Moscow', )},
{'start': 9054330000, 'count': 20000, 'timezone': ('Europe/Volgograd', )},
{'start': 9054350000, 'count': 450000, 'timezone': ('Europe/Moscow', )},
{'start': 9054800000, 'count': 40000, 'timezone': ('Europe/Volgograd', )},
{'start': 9054840000, 'count': 3160000, 'timezone': ('Europe/Moscow', )},
{'start': 9058000000, 'count': 550000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9058550000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9058570000, 'count': 80000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9058650000, 'count': 50000, 'timezone': ('Europe/Moscow', )},
{'start': 9058700000, 'count': 30000, 'timezone': ('Europe/Volgograd', )},
{'start': 9058730000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9058740000, 'count': 40000, 'timezone': ('Europe/Samara', )},
{'start': 9058780000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9058800000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9059000000, 'count': 200000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9059200000, 'count': 10000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9059210000, 'count': 90000, 'timezone': ('Asia/Omsk', )},
{'start': 9059300000, 'count': 100000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9059400000, 'count': 50000, 'timezone': ('Asia/Omsk', )},
{'start': 9059450000, 'count': 20000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9059470000, 'count': 30000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9059500000, 'count': 100000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9059600000, 'count': 100000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9059700000, 'count': 100000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9059800000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9059900000, 'count': 30000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9059930000, 'count': 30000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9059960000, 'count': 40000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9060000000, 'count': 1000000, 'timezone': ('Europe/Moscow', )},
{'start': 9061000000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9061100000, 'count': 150000, 'timezone': ('Europe/Moscow', )},
{'start': 9061250000, 'count': 50000, 'timezone': ('Europe/Samara', )},
{'start': 9061300000, 'count': 180000, 'timezone': ('Europe/Moscow', )},
{'start': 9061480000, 'count': 80000, 'timezone': ('Europe/Volgograd', )},
{'start': 9061560000, 'count': 90000, 'timezone': ('Europe/Moscow', )},
{'start': 9061650000, 'count': 110000, 'timezone': ('Europe/Volgograd', )},
{'start': 9061760000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9061770000, 'count': 30000, 'timezone': ('Europe/Volgograd', )},
{'start': 9061800000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9061900000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9061930000, 'count': 30000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9061960000, 'count': 20000, 'timezone': ('Asia/Omsk', )},
{'start': 9061980000, 'count': 20000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9062000000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9062100000, 'count': 100000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9062200000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9062300000, 'count': 100000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9062400000, 'count': 600000, 'timezone': ('Europe/Moscow', )},
{'start': 9063000000, 'count': 200000, 'timezone': ('Europe/Volgograd', )},
{'start': 9063200000, 'count': 170000, 'timezone': ('Europe/Moscow', )},
{'start': 9063370000, 'count': 110000, 'timezone': ('Europe/Samara', )},
{'start': 9063480000, 'count': 220000, 'timezone': ('Europe/Moscow', )},
{'start': 9063700000, 'count': 80000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9063780000, 'count': 220000, 'timezone': ('Europe/Moscow', )},
{'start': 9064000000, 'count': 110000, 'timezone': ('Europe/Volgograd', )},
{'start': 9064110000, 'count': 400000, 'timezone': ('Europe/Moscow', )},
{'start': 9064510000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9064520000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9064550000, 'count': 50000, 'timezone': ('Europe/Volgograd', )},
{'start': 9064600000, 'count': 3400000, 'timezone': ('Europe/Moscow', )},
{'start': 9068000000, 'count': 160000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9068160000, 'count': 40000, 'timezone': ('Europe/Samara', )},
{'start': 9068200000, 'count': 90000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9068290000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9068300000, 'count': 490000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9068790000, 'count': 40000, 'timezone': ('Europe/Moscow', )},
{'start': 9068830000, 'count': 140000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9068970000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9068980000, 'count': 20000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9069000000, 'count': 60000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9069060000, 'count': 40000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9069100000, 'count': 80000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9069180000, 'count': 20000, 'timezone': ('Asia/Omsk', )},
{'start': 9069200000, 'count': 190000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9069390000, 'count': 80000, 'timezone': ('Asia/Omsk', )},
{'start': 9069470000, 'count': 50000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9069520000, 'count': 20000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9069540000, 'count': 60000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9069600000, 'count': 110000, 'timezone': ('Asia/Omsk', )},
{'start': 9069710000, 'count': 40000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9069750000, 'count': 150000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9069900000, 'count': 40000, 'timezone': ('Asia/Omsk', )},
{'start': 9069940000, 'count': 30000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9069970000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9080000000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9080100000, 'count': 170000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9080270000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9080300000, 'count': 50000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9080350000, 'count': 50000, 'timezone': ('Europe/Moscow', )},
{'start': 9080400000, 'count': 600000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9081000000, 'count': 200000, 'timezone': ('Asia/Omsk', )},
{'start': 9081200000, 'count': 800000, 'timezone': ('Europe/Moscow', )},
{'start': 9082000000, 'count': 250000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9082250000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9082270000, 'count': 10000, 'timezone': ('Asia/Magadan', )},
{'start': 9082280000, 'count': 120000, 'timezone': ('Europe/Moscow', )},
{'start': 9082400000, 'count': 400000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9082800000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9082900000, 'count': 10000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9082910000, 'count': 190000, 'timezone': ('Europe/Moscow', )},
{'start': 9083100000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9083200000, 'count': 50000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9083250000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9083280000, 'count': 160000, 'timezone': ('Europe/Moscow', )},
{'start': 9083440000, 'count': 20000, 'timezone': ('Europe/Samara', )},
{'start': 9083460000, 'count': 40000, 'timezone': ('Europe/Moscow', )},
{'start': 9083500000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9083600000, 'count': 40000, 'timezone': ('Europe/Moscow', )},
{'start': 9083640000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9083650000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9083660000, 'count': 40000, 'timezone': ('Europe/Samara', )},
{'start': 9083700000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9083730000, 'count': 20000, 'timezone': ('Europe/Samara', )},
{'start': 9083750000, 'count': 50000, 'timezone': ('Europe/Volgograd', )},
{'start': 9083800000, 'count': 500000, 'timezone': ('Europe/Samara', )},
{'start': 9084300000, 'count': 50000, 'timezone': ('Europe/Moscow', )},
{'start': 9084350000, 'count': 50000, 'timezone': ('Europe/Volgograd', )},
{'start': 9084400000, 'count': 250000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9084650000, 'count': 270000, 'timezone': ('Europe/Moscow', )},
{'start': 9084920000, 'count': 30000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9084950000, 'count': 20000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9084970000, 'count': 30000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9085000000, 'count': 400000, 'timezone': ('Europe/Moscow', )},
{'start': 9085400000, 'count': 200000, 'timezone': ('Europe/Volgograd', )},
{'start': 9085600000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9085700000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9085900000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9086000000, 'count': 30000, 'timezone': ('Europe/Moscow', )},
{'start': 9086030000, 'count': 10000, 'timezone': ('Asia/Magadan', )},
{'start': 9086040000, 'count': 40000, 'timezone': ('Europe/Moscow', )},
{'start': 9086080000, 'count': 5000, 'timezone': ('Asia/Magadan', )},
{'start': 9086085000, 'count': 100, 'timezone': ('Europe/Moscow', )},
{'start': 9086090000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9086100000, 'count': 200000, 'timezone': ('Europe/Volgograd', )},
{'start': 9086300000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9086400000, 'count': 300000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9086700000, 'count': 300000, 'timezone': ('Europe/Moscow', )},
{'start': 9087000000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9087100000, 'count': 600000, 'timezone': ('Europe/Moscow', )},
{'start': 9087700000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9087800000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9087900000, 'count': 200000, 'timezone': ('Asia/Omsk', )},
{'start': 9088100000, 'count': 300000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9088400000, 'count': 120000, 'timezone': ('Europe/Moscow', )},
{'start': 9088520000, 'count': 780000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9089300000, 'count': 30000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9089330000, 'count': 70000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9089400000, 'count': 200000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9089600000, 'count': 400000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9090000000, 'count': 500000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9090500000, 'count': 180000, 'timezone': ('Europe/Samara', )},
{'start': 9090680000, 'count': 520000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9091200000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9091300000, 'count': 150000, 'timezone': ('Europe/Volgograd', )},
{'start': 9091450000, 'count': 50000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9091500000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9091700000, 'count': 300000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9092000000, 'count': 1230000, 'timezone': ('Europe/Moscow', )},
{'start': 9093230000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9093240000, 'count': 50000, 'timezone': ('Europe/Moscow', )},
{'start': 9093290000, 'count': 10000, 'timezone': ('Europe/Samara', )},
{'start': 9093300000, 'count': 120000, 'timezone': ('Europe/Volgograd', )},
{'start': 9093420000, 'count': 30000, 'timezone': ('Europe/Samara', )},
{'start': 9093450000, 'count': 90000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9093540000, 'count': 80000, 'timezone': ('Europe/Moscow', )},
{'start': 9093620000, 'count': 40000, 'timezone': ('Europe/Samara', )},
{'start': 9093660000, 'count': 40000, 'timezone': ('Europe/Moscow', )},
{'start': 9093700000, 'count': 20000, 'timezone': ('Europe/Samara', )},
{'start': 9093720000, 'count': 230000, 'timezone': ('Europe/Volgograd', )},
{'start': 9093950000, 'count': 1050000, 'timezone': ('Europe/Moscow', )},
{'start': 9095000000, 'count': 90000, 'timezone': ('Asia/Omsk', )},
{'start': 9095090000, 'count': 140000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9095230000, 'count': 60000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9095290000, 'count': 60000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9095350000, 'count': 30000, 'timezone': ('Asia/Omsk', )},
{'start': 9095380000, 'count': 120000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9095500000, 'count': 500000, 'timezone': ('Europe/Moscow', )},
{'start': 9096000000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9096200000, 'count': 800000, 'timezone': ('Europe/Moscow', )},
{'start': 9097000000, 'count': 130000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9097130000, 'count': 30000, 'timezone': ('Europe/Samara', )},
{'start': 9097160000, 'count': 60000, 'timezone': ('Europe/Volgograd', )},
{'start': 9097220000, 'count': 280000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9097500000, 'count': 250000, 'timezone': ('Europe/Moscow', )},
{'start': 9097750000, 'count': 250000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9098000000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9098100000, 'count': 100000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9098200000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9098300000, 'count': 100000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9098400000, 'count': 400000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9098800000, 'count': 30000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9098830000, 'count': 30000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9098860000, 'count': 40000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9098900000, 'count': 30000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9098930000, 'count': 30000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9098960000, 'count': 40000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9099000000, 'count': 11700000, 'timezone': ('Europe/Moscow', )},
{'start': 9110700000, 'count': 50000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9110750000, 'count': 3750000, 'timezone': ('Europe/Moscow', )},
{'start': 9114500000, 'count': 500000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9115000000, 'count': 3500000, 'timezone': ('Europe/Moscow', )},
{'start': 9118500000, 'count': 200000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9118700000, 'count': 1330000, 'timezone': ('Europe/Moscow', )},
{'start': 9120030000, 'count': 50000, 'timezone': ('Europe/Samara', )},
{'start': 9120080000, 'count': 20000, 'timezone': ('Europe/Volgograd', )},
{'start': 9120100000, 'count': 200000, 'timezone': ('Europe/Samara', )},
{'start': 9120300000, 'count': 230000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9120530000, 'count': 30000, 'timezone': ('Europe/Samara', )},
{'start': 9120560000, 'count': 30000, 'timezone': ('Europe/Volgograd', )},
{'start': 9120590000, 'count': 150000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9120740000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9120750000, 'count': 17000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9120770000, 'count': 130000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9120930000, 'count': 10000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9120940000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9121000000, 'count': 1000000, 'timezone': ('Europe/Moscow', )},
{'start': 9122000000, 'count': 1300000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9123300000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9123400000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9123600000, 'count': 200000, 'timezone': ('Europe/Volgograd', )},
{'start': 9123800000, 'count': 600000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9124400000, 'count': 300000, 'timezone': ('Europe/Samara', )},
{'start': 9124700000, 'count': 300000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9125000000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9125100000, 'count': 300000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9125400000, 'count': 300000, 'timezone': ('Europe/Moscow', )},
{'start': 9125700000, 'count': 1300000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9127000000, 'count': 400000, 'timezone': ('Europe/Volgograd', )},
{'start': 9127400000, 'count': 300000, 'timezone': ('Europe/Samara', )},
{'start': 9127700000, 'count': 500000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9128200000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9128300000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9128500000, 'count': 100000, 'timezone': ('Europe/Samara', )},
{'start': 9128600000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9128700000, 'count': 100000, 'timezone': ('Europe/Samara', )},
{'start': 9128800000, 'count': 600000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9129400000, 'count': 300000, 'timezone': ('Europe/Moscow', )},
{'start': 9129700000, 'count': 300000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9130000000, 'count': 200000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9130200000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9130300000, 'count': 300000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9130600000, 'count': 100000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9130700000, 'count': 100000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9130800000, 'count': 200000, 'timezone': ('Asia/Omsk', )},
{'start': 9131000000, 'count': 200000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9131200000, 'count': 200000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9131400000, 'count': 200000, 'timezone': ('Asia/Omsk', )},
{'start': 9131600000, 'count': 400000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9132000000, 'count': 100000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9132100000, 'count': 700000, 'timezone': ('Asia/Omsk', )},
{'start': 9132800000, 'count': 600000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9133400000, 'count': 200000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9133600000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9133700000, 'count': 300000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9134000000, 'count': 400000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9134400000, 'count': 100000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9134500000, 'count': 400000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9134900000, 'count': 1100000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9136000000, 'count': 1000000, 'timezone': ('Asia/Omsk', )},
{'start': 9137000000, 'count': 1300000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9138300000, 'count': 100000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9138400000, 'count': 1200000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9139600000, 'count': 200000, 'timezone': ('Asia/Omsk', )},
{'start': 9139800000, 'count': 80000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9139880000, 'count': 10000, 'timezone': ('Asia/Omsk', )},
{'start': 9139890000, 'count': 10000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9139900000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9140000000, 'count': 150000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9140150000, 'count': 50000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9140200000, 'count': 100000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9140300000, 'count': 100000, 'timezone': ('Asia/Magadan', )},
{'start': 9140400000, 'count': 100000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9140500000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9140600000, 'count': 50000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9140650000, 'count': 150000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9140800000, 'count': 30000, 'timezone': ('Asia/Anadyr', )},
{'start': 9140830000, 'count': 170000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9141000000, 'count': 200000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9141200000, 'count': 300000, 'timezone': ('Asia/Chita', )},
{'start': 9141500000, 'count': 700000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9142200000, 'count': 900000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9143100000, 'count': 400000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9143500000, 'count': 200000, 'timezone': ('Asia/Chita', )},
{'start': 9143700000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9143800000, 'count': 200000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9144000000, 'count': 300000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9144300000, 'count': 1000000, 'timezone': ('Asia/Chita', )},
{'start': 9145300000, 'count': 30000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9145330000, 'count': 50000, 'timezone': ('Asia/Anadyr', )},
{'start': 9145380000, 'count': 13000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9145400000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9145500000, 'count': 700000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9146200000, 'count': 100000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9146300000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9146400000, 'count': 100000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9146500000, 'count': 900000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9147400000, 'count': 300000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9147700000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9147800000, 'count': 100000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9147900000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9148000000, 'count': 100000, 'timezone': ('Asia/Chita', )},
{'start': 9148100000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9148200000, 'count': 100000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9148300000, 'count': 200000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9148500000, 'count': 200000, 'timezone': ('Asia/Magadan', )},
{'start': 9148700000, 'count': 900000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9149600000, 'count': 200000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9149800000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9149900000, 'count': 100000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9150000000, 'count': 20000000, 'timezone': ('Europe/Moscow', )},
{'start': 9170000000, 'count': 30000, 'timezone': ('Europe/Volgograd', )},
{'start': 9170030000, 'count': 70000, 'timezone': ('Europe/Moscow', )},
{'start': 9170100000, 'count': 100000, 'timezone': ('Europe/Samara', )},
{'start': 9170200000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9170300000, 'count': 100000, 'timezone': ('Europe/Samara', )},
{'start': 9170400000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9170500000, 'count': 300000, 'timezone': ('Europe/Moscow', )},
{'start': 9170800000, 'count': 200000, 'timezone': ('Europe/Volgograd', )},
{'start': 9171000000, 'count': 700000, 'timezone': ('Europe/Samara', )},
{'start': 9171700000, 'count': 500000, 'timezone': ('Europe/Volgograd', )},
{'start': 9172200000, 'count': 800000, 'timezone': ('Europe/Moscow', )},
{'start': 9173000000, 'count': 400000, 'timezone': ('Europe/Volgograd', )},
{'start': 9173400000, 'count': 500000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9173900000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9174000000, 'count': 1000000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9175000000, 'count': 1400000, 'timezone': ('Europe/Moscow', )},
{'start': 9176400000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9176500000, 'count': 700000, 'timezone': ('Europe/Moscow', )},
{'start': 9177200000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9177300000, 'count': 800000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9178100000, 'count': 200000, 'timezone': ('Europe/Samara', )},
{'start': 9178300000, 'count': 200000, 'timezone': ('Europe/Volgograd', )},
{'start': 9178500000, 'count': 900000, 'timezone': ('Europe/Moscow', )},
{'start': 9179400000, 'count': 400000, 'timezone': ('Europe/Samara', )},
{'start': 9179800000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9179900000, 'count': 11200000, 'timezone': ('Europe/Moscow', )},
{'start': 9191100000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9191300000, 'count': 70000, 'timezone': ('Europe/Moscow', )},
{'start': 9191380000, 'count': 20000, 'timezone': ('Europe/Moscow', )},
{'start': 9191400000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9191600000, 'count': 1400000, 'timezone': ('Europe/Moscow', )},
{'start': 9193000000, 'count': 1100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9194100000, 'count': 300000, 'timezone': ('Europe/Moscow', )},
{'start': 9194400000, 'count': 600000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9195000000, 'count': 300000, 'timezone': ('Europe/Volgograd', )},
{'start': 9195300000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9195400000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9195500000, 'count': 700000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9196200000, 'count': 800000, 'timezone': ('Europe/Moscow', )},
{'start': 9197000000, 'count': 200000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9197200000, 'count': 700000, 'timezone': ('Europe/Moscow', )},
{'start': 9197900000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9198000000, 'count': 200000, 'timezone': ('Europe/Samara', )},
{'start': 9198200000, 'count': 200000, 'timezone': ('Europe/Volgograd', )},
{'start': 9198400000, 'count': 300000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9198700000, 'count': 300000, 'timezone': ('Europe/Moscow', )},
{'start': 9199000000, 'count': 200000, 'timezone': ('Europe/Samara', )},
{'start': 9199200000, 'count': 400000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9199600000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9199800000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9199900000, 'count': 10150000, 'timezone': ('Europe/Moscow', )},
{'start': 9210050000, 'count': 50000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9210100000, 'count': 900000, 'timezone': ('Europe/Moscow', )},
{'start': 9211000000, 'count': 100000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9211100000, 'count': 1500000, 'timezone': ('Europe/Moscow', )},
{'start': 9212600000, 'count': 100000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9212700000, 'count': 3330000, 'timezone': ('Europe/Moscow', )},
{'start': 9216030000, 'count': 10000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9216040000, 'count': 40000, 'timezone': ('Europe/Moscow', )},
{'start': 9216080000, 'count': 10000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9216090000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9216100000, 'count': 100000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9216200000, 'count': 900000, 'timezone': ('Europe/Moscow', )},
{'start': 9217100000, 'count': 30000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9217130000, 'count': 1370000, 'timezone': ('Europe/Moscow', )},
{'start': 9218500000, 'count': 50000, 'timezone': ('Europe/Kaliningrad', )},
{'start': 9218550000, 'count': 1450000, 'timezone': ('Europe/Moscow', )},
{'start': 9220000000, 'count': 800000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9220800000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9220900000, 'count': 1800000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9222700000, 'count': 100000, 'timezone': ('Europe/Moscow', )},
{'start': 9222800000, 'count': 1100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9223900000, 'count': 10000, 'timezone': ('Europe/Volgograd', )},
{'start': 9223910000, 'count': 990000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9224900000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9225000000, 'count': 300000, 'timezone': ('Europe/Samara', )},
{'start': 9225300000, 'count': 500000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9225800000, 'count': 200000, 'timezone': ('Europe/Moscow', )},
{'start': 9226000000, 'count': 600000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9226600000, 'count': 100000, 'timezone': ('Europe/Volgograd', )},
{'start': 9226700000, 'count': 100000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9226800000, 'count': 150000, 'timezone': ('Europe/Samara', )},
{'start': 9226950000, 'count': 2050000, 'timezone': ('Asia/Yekaterinburg', )},
{'start': 9229000000, 'count': 815000, 'timezone': ('Europe/Volgograd', )},
{'start': 9229815000, 'count': 5000, 'timezone': ('Europe/Moscow', )},
{'start': 9229820000, 'count': 180000, 'timezone': ('Europe/Volgograd', )},
{'start': 9230000000, 'count': 1000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9230001000, 'count': 99000, 'timezone': ('Asia/Omsk', )},
{'start': 9230100000, 'count': 200000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9230300000, 'count': 50000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9230350000, 'count': 50000, 'timezone': ('Asia/Omsk', )},
{'start': 9230400000, 'count': 10, 'timezone': ('Europe/Moscow', )},
{'start': 9230450000, 'count': 50000, 'timezone': ('Asia/Omsk', )},
{'start': 9230500000, 'count': 60000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9231000000, 'count': 600000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9231600000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9231700000, 'count': 300000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9232000000, 'count': 200000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9232200000, 'count': 400000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9232600000, 'count': 1400000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9234000000, 'count': 500000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9234500000, 'count': 50000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9234550000, 'count': 20000, 'timezone': ('Asia/Omsk', )},
{'start': 9234570000, 'count': 10000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9234580000, 'count': 10000, 'timezone': ('Asia/Omsk', )},
{'start': 9234590000, 'count': 10000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9234600000, 'count': 800000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9235400000, 'count': 200000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9235600000, 'count': 70000, 'timezone': ('Asia/Omsk', )},
{'start': 9235670000, 'count': 10000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9235680000, 'count': 20000, 'timezone': ('Asia/Omsk', )},
{'start': 9235700000, 'count': 300000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9236000000, 'count': 400000, 'timezone': ('Asia/Novokuznetsk', )},
{'start': 9236400000, 'count': 280000, 'timezone': ('Asia/Omsk', )},
{'start': 9236680000, 'count': 20000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9236700000, 'count': 300000, 'timezone': ('Asia/Omsk', )},
{'start': 9237000000, 'count': 100000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9237100000, 'count': 200000, 'timezone': ('Asia/Omsk', )},
{'start': 9237300000, 'count': 170000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9237470000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9237570000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9237600000, 'count': 100000, 'timezone': ('Asia/Omsk', )},
{'start': 9237700000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9237730000, 'count': 20000, 'timezone': ('Asia/Omsk', )},
{'start': 9237750000, 'count': 10000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9237760000, 'count': 10000, 'timezone': ('Asia/Omsk', )},
{'start': 9237770000, 'count': 8000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9237778000, 'count': 30000, 'timezone': ('Asia/Omsk', )},
{'start': 9237808000, 'count': 12000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9237820000, 'count': 30000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9237850000, 'count': 10000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9237860000, 'count': 10000, 'timezone': ('Asia/Omsk', )},
{'start': 9237870000, 'count': 1000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9237871000, 'count': 1000, 'timezone': ('Asia/Omsk', )},
{'start': 9237872000, 'count': 28000, 'timezone': ('Asia/Novosibirsk', )},
{'start': 9237900000, 'count': 140000, 'timezone': ('Asia/Omsk', )},
{'start': 9238040000, 'count': 190000, 'timezone': ('Asia/Krasnoyarsk', )},
{'start': 9238230000, 'count': 52000, 'timezone': ('Asia/Omsk', )},
{'start': 9238282000, 'count': 3000, 'timezone': ('Europe/Volgograd', )},
{'start': 9238880000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9239990000, 'count': 10000, 'timezone': ('Europe/Moscow', )},
{'start': 9240000000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9240100000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9240200000, 'count': 40000, 'timezone': ('Asia/Chita', )},
{'start': 9240240000, 'count': 10000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9240250000, 'count': 4000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9240254000, 'count': 4000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9240258000, 'count': 2000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9240260000, 'count': 7000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9240267000, 'count': 4000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9240271000, 'count': 2000, 'timezone': ('Asia/Magadan', )},
{'start': 9240273000, 'count': 2000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9240400000, 'count': 20000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9241000000, 'count': 400000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9241400000, 'count': 100000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9241500000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9241600000, 'count': 200000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9241800000, 'count': 200000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9242000000, 'count': 700000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9242700000, 'count': 100000, 'timezone': ('Asia/Chita', )},
{'start': 9242800000, 'count': 100000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9242900000, 'count': 50000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9242950000, 'count': 50000, 'timezone': ('Asia/Chita', )},
{'start': 9243000000, 'count': 400000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9243400000, 'count': 100000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9243500000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9243600000, 'count': 100000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9243700000, 'count': 200000, 'timezone': ('Asia/Chita', )},
{'start': 9243900000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9244000000, 'count': 400000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9244400000, 'count': 100000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9244500000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9244600000, 'count': 100000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9244700000, 'count': 100000, 'timezone': ('Asia/Chita', )},
{'start': 9244800000, 'count': 200000, 'timezone': ('Asia/Sakhalin', )},
{'start': 9245000000, 'count': 200000, 'timezone': ('Asia/Chita', )},
{'start': 9245200000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9245300000, 'count': 300000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9245600000, 'count': 100000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9245700000, 'count': 100000, 'timezone': ('Asia/Chita', )},
{'start': 9245800000, 'count': 50000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9245850000, 'count': 50000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9245900000, 'count': 100000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9246000000, 'count': 400000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9246400000, 'count': 100000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9246500000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9246600000, 'count': 50000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9246650000, 'count': 50000, 'timezone': ('Asia/Anadyr', )},
{'start': 9246700000, 'count': 150000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9246850000, 'count': 50000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9246900000, 'count': 50000, 'timezone': ('Asia/Magadan', )},
{'start': 9246950000, 'count': 50000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9247000000, 'count': 200000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9247200000, 'count': 240000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9247440000, 'count': 30000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9247470000, 'count': 10000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9247480000, 'count': 10000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9247490000, 'count': 10000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9247500000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9247600000, 'count': 100000, 'timezone': ('Asia/Yakutsk', )},
{'start': 9247700000, 'count': 100000, 'timezone': ('Asia/Irkutsk', )},
{'start': 9247800000, 'count': 50000, 'timezone': ('Asia/Kamchatka', )},
{'start': 9247850000, 'count': 20000, 'timezone': ('Asia/Anadyr', )},
{'start': 9247870000, 'count': 20000, 'timezone': ('Asia/Vladivostok', )},
{'start': 9247890000, 'count': 10000, 'timezone': ('Asia/Anadyr', )},