-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGrandPrixReleaseCondition.yaml
2736 lines (2736 loc) · 72.1 KB
/
GrandPrixReleaseCondition.yaml
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
- Id: 7031011010
ReleaseGrandPrixId: 703101101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031011020
ReleaseGrandPrixId: 703101102
ConditionsType: 1
ConditionsValue: 703101101
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031011030
ReleaseGrandPrixId: 703101103
ConditionsType: 1
ConditionsValue: 703101102
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031011040
ReleaseGrandPrixId: 703101104
ConditionsType: 1
ConditionsValue: 703101103
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031012010
ReleaseGrandPrixId: 703101201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031012020
ReleaseGrandPrixId: 703101202
ConditionsType: 1
ConditionsValue: 703101201
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031012030
ReleaseGrandPrixId: 703101203
ConditionsType: 1
ConditionsValue: 703101202
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031012040
ReleaseGrandPrixId: 703101204
ConditionsType: 1
ConditionsValue: 703101203
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031013010
ReleaseGrandPrixId: 703101301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031013020
ReleaseGrandPrixId: 703101302
ConditionsType: 1
ConditionsValue: 703101301
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031013030
ReleaseGrandPrixId: 703101303
ConditionsType: 1
ConditionsValue: 703101302
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031013040
ReleaseGrandPrixId: 703101304
ConditionsType: 1
ConditionsValue: 703101303
StartTime: 2023-06-21T01:00:00Z
EndTime: 2023-06-26T18:59:59Z
- Id: 7031021010
ReleaseGrandPrixId: 703102101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031021020
ReleaseGrandPrixId: 703102102
ConditionsType: 1
ConditionsValue: 703102101
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031021030
ReleaseGrandPrixId: 703102103
ConditionsType: 1
ConditionsValue: 703102102
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031021040
ReleaseGrandPrixId: 703102104
ConditionsType: 1
ConditionsValue: 703102103
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031022010
ReleaseGrandPrixId: 703102201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031022020
ReleaseGrandPrixId: 703102202
ConditionsType: 1
ConditionsValue: 703102201
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031022030
ReleaseGrandPrixId: 703102203
ConditionsType: 1
ConditionsValue: 703102202
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031022040
ReleaseGrandPrixId: 703102204
ConditionsType: 1
ConditionsValue: 703102203
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031023010
ReleaseGrandPrixId: 703102301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031023020
ReleaseGrandPrixId: 703102302
ConditionsType: 1
ConditionsValue: 703102301
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031023030
ReleaseGrandPrixId: 703102303
ConditionsType: 1
ConditionsValue: 703102302
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031023040
ReleaseGrandPrixId: 703102304
ConditionsType: 1
ConditionsValue: 703102303
StartTime: 2023-07-22T01:00:00Z
EndTime: 2023-07-28T18:59:59Z
- Id: 7031031010
ReleaseGrandPrixId: 703103101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031031020
ReleaseGrandPrixId: 703103102
ConditionsType: 1
ConditionsValue: 703103101
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031031030
ReleaseGrandPrixId: 703103103
ConditionsType: 1
ConditionsValue: 703103102
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031031040
ReleaseGrandPrixId: 703103104
ConditionsType: 1
ConditionsValue: 703103103
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031032010
ReleaseGrandPrixId: 703103201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031032020
ReleaseGrandPrixId: 703103202
ConditionsType: 1
ConditionsValue: 703103201
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031032030
ReleaseGrandPrixId: 703103203
ConditionsType: 1
ConditionsValue: 703103202
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031032040
ReleaseGrandPrixId: 703103204
ConditionsType: 1
ConditionsValue: 703103203
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031033010
ReleaseGrandPrixId: 703103301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031033020
ReleaseGrandPrixId: 703103302
ConditionsType: 1
ConditionsValue: 703103301
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031033030
ReleaseGrandPrixId: 703103303
ConditionsType: 1
ConditionsValue: 703103302
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031033040
ReleaseGrandPrixId: 703103304
ConditionsType: 1
ConditionsValue: 703103303
StartTime: 2023-08-22T01:00:00Z
EndTime: 2023-08-27T18:59:59Z
- Id: 7031041010
ReleaseGrandPrixId: 703104101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031041020
ReleaseGrandPrixId: 703104102
ConditionsType: 1
ConditionsValue: 703104101
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031041030
ReleaseGrandPrixId: 703104103
ConditionsType: 1
ConditionsValue: 703104102
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031041040
ReleaseGrandPrixId: 703104104
ConditionsType: 1
ConditionsValue: 703104103
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031042010
ReleaseGrandPrixId: 703104201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031042020
ReleaseGrandPrixId: 703104202
ConditionsType: 1
ConditionsValue: 703104201
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031042030
ReleaseGrandPrixId: 703104203
ConditionsType: 1
ConditionsValue: 703104202
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031042040
ReleaseGrandPrixId: 703104204
ConditionsType: 1
ConditionsValue: 703104203
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031043010
ReleaseGrandPrixId: 703104301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031043020
ReleaseGrandPrixId: 703104302
ConditionsType: 1
ConditionsValue: 703104301
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031043030
ReleaseGrandPrixId: 703104303
ConditionsType: 1
ConditionsValue: 703104302
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031043040
ReleaseGrandPrixId: 703104304
ConditionsType: 1
ConditionsValue: 703104303
StartTime: 2023-09-20T01:00:00Z
EndTime: 2023-09-25T18:59:59Z
- Id: 7031051010
ReleaseGrandPrixId: 703105101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031051020
ReleaseGrandPrixId: 703105102
ConditionsType: 1
ConditionsValue: 703105101
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031051030
ReleaseGrandPrixId: 703105103
ConditionsType: 1
ConditionsValue: 703105102
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031051040
ReleaseGrandPrixId: 703105104
ConditionsType: 1
ConditionsValue: 703105103
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031052010
ReleaseGrandPrixId: 703105201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031052020
ReleaseGrandPrixId: 703105202
ConditionsType: 1
ConditionsValue: 703105201
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031052030
ReleaseGrandPrixId: 703105203
ConditionsType: 1
ConditionsValue: 703105202
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031052040
ReleaseGrandPrixId: 703105204
ConditionsType: 1
ConditionsValue: 703105203
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031053010
ReleaseGrandPrixId: 703105301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031053020
ReleaseGrandPrixId: 703105302
ConditionsType: 1
ConditionsValue: 703105301
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031053030
ReleaseGrandPrixId: 703105303
ConditionsType: 1
ConditionsValue: 703105302
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031053040
ReleaseGrandPrixId: 703105304
ConditionsType: 1
ConditionsValue: 703105303
StartTime: 2023-10-21T01:00:00Z
EndTime: 2023-10-27T18:59:59Z
- Id: 7031061010
ReleaseGrandPrixId: 703106101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031061020
ReleaseGrandPrixId: 703106102
ConditionsType: 1
ConditionsValue: 703106101
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031061030
ReleaseGrandPrixId: 703106103
ConditionsType: 1
ConditionsValue: 703106102
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031061040
ReleaseGrandPrixId: 703106104
ConditionsType: 1
ConditionsValue: 703106103
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031062010
ReleaseGrandPrixId: 703106201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031062020
ReleaseGrandPrixId: 703106202
ConditionsType: 1
ConditionsValue: 703106201
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031062030
ReleaseGrandPrixId: 703106203
ConditionsType: 1
ConditionsValue: 703106202
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031062040
ReleaseGrandPrixId: 703106204
ConditionsType: 1
ConditionsValue: 703106203
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031063010
ReleaseGrandPrixId: 703106301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031063020
ReleaseGrandPrixId: 703106302
ConditionsType: 1
ConditionsValue: 703106301
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031063030
ReleaseGrandPrixId: 703106303
ConditionsType: 1
ConditionsValue: 703106302
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031063040
ReleaseGrandPrixId: 703106304
ConditionsType: 1
ConditionsValue: 703106303
StartTime: 2023-11-20T01:00:00Z
EndTime: 2023-11-26T18:59:59Z
- Id: 7031071010
ReleaseGrandPrixId: 703107101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031071020
ReleaseGrandPrixId: 703107102
ConditionsType: 1
ConditionsValue: 703107101
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031071030
ReleaseGrandPrixId: 703107103
ConditionsType: 1
ConditionsValue: 703107102
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031071040
ReleaseGrandPrixId: 703107104
ConditionsType: 1
ConditionsValue: 703107103
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031072010
ReleaseGrandPrixId: 703107201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031072020
ReleaseGrandPrixId: 703107202
ConditionsType: 1
ConditionsValue: 703107201
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031072030
ReleaseGrandPrixId: 703107203
ConditionsType: 1
ConditionsValue: 703107202
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031072040
ReleaseGrandPrixId: 703107204
ConditionsType: 1
ConditionsValue: 703107203
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031073010
ReleaseGrandPrixId: 703107301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031073020
ReleaseGrandPrixId: 703107302
ConditionsType: 1
ConditionsValue: 703107301
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031073030
ReleaseGrandPrixId: 703107303
ConditionsType: 1
ConditionsValue: 703107302
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031073040
ReleaseGrandPrixId: 703107304
ConditionsType: 1
ConditionsValue: 703107303
StartTime: 2023-12-20T01:00:00Z
EndTime: 2023-12-25T18:59:59Z
- Id: 7031081010
ReleaseGrandPrixId: 703108101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031081020
ReleaseGrandPrixId: 703108102
ConditionsType: 1
ConditionsValue: 703108101
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031081030
ReleaseGrandPrixId: 703108103
ConditionsType: 1
ConditionsValue: 703108102
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031081040
ReleaseGrandPrixId: 703108104
ConditionsType: 1
ConditionsValue: 703108103
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031082010
ReleaseGrandPrixId: 703108201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031082020
ReleaseGrandPrixId: 703108202
ConditionsType: 1
ConditionsValue: 703108201
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031082030
ReleaseGrandPrixId: 703108203
ConditionsType: 1
ConditionsValue: 703108202
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031082040
ReleaseGrandPrixId: 703108204
ConditionsType: 1
ConditionsValue: 703108203
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031083010
ReleaseGrandPrixId: 703108301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031083020
ReleaseGrandPrixId: 703108302
ConditionsType: 1
ConditionsValue: 703108301
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031083030
ReleaseGrandPrixId: 703108303
ConditionsType: 1
ConditionsValue: 703108302
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031083040
ReleaseGrandPrixId: 703108304
ConditionsType: 1
ConditionsValue: 703108303
StartTime: 2024-01-24T01:00:00Z
EndTime: 2024-01-30T18:59:59Z
- Id: 7031091010
ReleaseGrandPrixId: 703109101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031091020
ReleaseGrandPrixId: 703109102
ConditionsType: 1
ConditionsValue: 703109101
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031091030
ReleaseGrandPrixId: 703109103
ConditionsType: 1
ConditionsValue: 703109102
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031091040
ReleaseGrandPrixId: 703109104
ConditionsType: 1
ConditionsValue: 703109103
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031092010
ReleaseGrandPrixId: 703109201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031092020
ReleaseGrandPrixId: 703109202
ConditionsType: 1
ConditionsValue: 703109201
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031092030
ReleaseGrandPrixId: 703109203
ConditionsType: 1
ConditionsValue: 703109202
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031092040
ReleaseGrandPrixId: 703109204
ConditionsType: 1
ConditionsValue: 703109203
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031093010
ReleaseGrandPrixId: 703109301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031093020
ReleaseGrandPrixId: 703109302
ConditionsType: 1
ConditionsValue: 703109301
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031093030
ReleaseGrandPrixId: 703109303
ConditionsType: 1
ConditionsValue: 703109302
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031093040
ReleaseGrandPrixId: 703109304
ConditionsType: 1
ConditionsValue: 703109303
StartTime: 2024-02-20T01:00:00Z
EndTime: 2024-02-26T18:59:59Z
- Id: 7031101010
ReleaseGrandPrixId: 703110101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7031101020
ReleaseGrandPrixId: 703110102
ConditionsType: 1
ConditionsValue: 703110101
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7031101030
ReleaseGrandPrixId: 703110103
ConditionsType: 1
ConditionsValue: 703110102
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7031101040
ReleaseGrandPrixId: 703110104
ConditionsType: 1
ConditionsValue: 703110103
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7031102010
ReleaseGrandPrixId: 703110201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7031102020
ReleaseGrandPrixId: 703110202
ConditionsType: 1
ConditionsValue: 703110201
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7031102030
ReleaseGrandPrixId: 703110203
ConditionsType: 1
ConditionsValue: 703110202
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7031102040
ReleaseGrandPrixId: 703110204
ConditionsType: 1
ConditionsValue: 703110203
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7031103010
ReleaseGrandPrixId: 703110301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7031103020
ReleaseGrandPrixId: 703110302
ConditionsType: 1
ConditionsValue: 703110301
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7031103030
ReleaseGrandPrixId: 703110303
ConditionsType: 1
ConditionsValue: 703110302
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7031103040
ReleaseGrandPrixId: 703110304
ConditionsType: 1
ConditionsValue: 703110303
StartTime: 2024-03-20T01:00:00Z
EndTime: 2024-03-25T18:59:59Z
- Id: 7041011010
ReleaseGrandPrixId: 704101101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041011020
ReleaseGrandPrixId: 704101102
ConditionsType: 1
ConditionsValue: 704101101
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041011030
ReleaseGrandPrixId: 704101103
ConditionsType: 1
ConditionsValue: 704101102
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041011040
ReleaseGrandPrixId: 704101104
ConditionsType: 1
ConditionsValue: 704101103
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041012010
ReleaseGrandPrixId: 704101201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041012020
ReleaseGrandPrixId: 704101202
ConditionsType: 1
ConditionsValue: 704101201
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041012030
ReleaseGrandPrixId: 704101203
ConditionsType: 1
ConditionsValue: 704101202
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041012040
ReleaseGrandPrixId: 704101204
ConditionsType: 1
ConditionsValue: 704101203
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041013010
ReleaseGrandPrixId: 704101301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041013020
ReleaseGrandPrixId: 704101302
ConditionsType: 1
ConditionsValue: 704101301
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041013030
ReleaseGrandPrixId: 704101303
ConditionsType: 1
ConditionsValue: 704101302
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041013040
ReleaseGrandPrixId: 704101304
ConditionsType: 1
ConditionsValue: 704101303
StartTime: 2024-04-21T03:00:00Z
EndTime: 2024-04-26T18:59:59Z
- Id: 7041021010
ReleaseGrandPrixId: 704102101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041021020
ReleaseGrandPrixId: 704102102
ConditionsType: 1
ConditionsValue: 704102101
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041021030
ReleaseGrandPrixId: 704102103
ConditionsType: 1
ConditionsValue: 704102102
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041021040
ReleaseGrandPrixId: 704102104
ConditionsType: 1
ConditionsValue: 704102103
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041022010
ReleaseGrandPrixId: 704102201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041022020
ReleaseGrandPrixId: 704102202
ConditionsType: 1
ConditionsValue: 704102201
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041022030
ReleaseGrandPrixId: 704102203
ConditionsType: 1
ConditionsValue: 704102202
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041022040
ReleaseGrandPrixId: 704102204
ConditionsType: 1
ConditionsValue: 704102203
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041023010
ReleaseGrandPrixId: 704102301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041023020
ReleaseGrandPrixId: 704102302
ConditionsType: 1
ConditionsValue: 704102301
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041023030
ReleaseGrandPrixId: 704102303
ConditionsType: 1
ConditionsValue: 704102302
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041023040
ReleaseGrandPrixId: 704102304
ConditionsType: 1
ConditionsValue: 704102303
StartTime: 2024-05-23T03:00:00Z
EndTime: 2024-05-28T18:59:59Z
- Id: 7041031010
ReleaseGrandPrixId: 704103101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041031020
ReleaseGrandPrixId: 704103102
ConditionsType: 1
ConditionsValue: 704103101
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041031030
ReleaseGrandPrixId: 704103103
ConditionsType: 1
ConditionsValue: 704103102
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041031040
ReleaseGrandPrixId: 704103104
ConditionsType: 1
ConditionsValue: 704103103
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041032010
ReleaseGrandPrixId: 704103201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041032020
ReleaseGrandPrixId: 704103202
ConditionsType: 1
ConditionsValue: 704103201
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041032030
ReleaseGrandPrixId: 704103203
ConditionsType: 1
ConditionsValue: 704103202
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041032040
ReleaseGrandPrixId: 704103204
ConditionsType: 1
ConditionsValue: 704103203
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041033010
ReleaseGrandPrixId: 704103301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041033020
ReleaseGrandPrixId: 704103302
ConditionsType: 1
ConditionsValue: 704103301
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041033030
ReleaseGrandPrixId: 704103303
ConditionsType: 1
ConditionsValue: 704103302
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041033040
ReleaseGrandPrixId: 704103304
ConditionsType: 1
ConditionsValue: 704103303
StartTime: 2024-06-22T03:00:00Z
EndTime: 2024-06-27T18:59:59Z
- Id: 7041041010
ReleaseGrandPrixId: 704104101
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-07-21T03:00:00Z
EndTime: 2024-07-25T18:59:59Z
- Id: 7041041020
ReleaseGrandPrixId: 704104102
ConditionsType: 1
ConditionsValue: 704104101
StartTime: 2024-07-21T03:00:00Z
EndTime: 2024-07-25T18:59:59Z
- Id: 7041041030
ReleaseGrandPrixId: 704104103
ConditionsType: 1
ConditionsValue: 704104102
StartTime: 2024-07-21T03:00:00Z
EndTime: 2024-07-25T18:59:59Z
- Id: 7041041040
ReleaseGrandPrixId: 704104104
ConditionsType: 1
ConditionsValue: 704104103
StartTime: 2024-07-21T03:00:00Z
EndTime: 2024-07-25T18:59:59Z
- Id: 7041042010
ReleaseGrandPrixId: 704104201
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-07-21T03:00:00Z
EndTime: 2024-07-25T18:59:59Z
- Id: 7041042020
ReleaseGrandPrixId: 704104202
ConditionsType: 1
ConditionsValue: 704104201
StartTime: 2024-07-21T03:00:00Z
EndTime: 2024-07-25T18:59:59Z
- Id: 7041042030
ReleaseGrandPrixId: 704104203
ConditionsType: 1
ConditionsValue: 704104202
StartTime: 2024-07-21T03:00:00Z
EndTime: 2024-07-25T18:59:59Z
- Id: 7041042040
ReleaseGrandPrixId: 704104204
ConditionsType: 1
ConditionsValue: 704104203
StartTime: 2024-07-21T03:00:00Z
EndTime: 2024-07-25T18:59:59Z
- Id: 7041043010
ReleaseGrandPrixId: 704104301
ConditionsType: 0
ConditionsValue: 0
StartTime: 2024-07-21T03:00:00Z
EndTime: 2024-07-25T18:59:59Z
- Id: 7041043020
ReleaseGrandPrixId: 704104302
ConditionsType: 1
ConditionsValue: 704104301
StartTime: 2024-07-21T03:00:00Z
EndTime: 2024-07-25T18:59:59Z
- Id: 7041043030
ReleaseGrandPrixId: 704104303
ConditionsType: 1
ConditionsValue: 704104302