-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsirens_punch_2.render_stats.html
1261 lines (1261 loc) · 80.8 KB
/
sirens_punch_2.render_stats.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>REAPER Render: prologue</title>
<style>
body { font-family: monospace; }
table { border-collapse: collapse; }
table th { border: 1px solid black; padding: 12px; text-align: right; }
table td { border: 1px solid black; padding: 12px; text-align: right; }
table th:nth-child(1), td:nth-child(1) { text-align: left; }
</style>
</head>
<body>
<p>REAPER Render</p>
<p>
MP3 (lame_enc) 44100Hz 2ch 320kbps CBR q=0<br>
Project: prologue<br>
</p>
<br>
<table>
<thead>
<tr>
<th><br>File</th>
<th><br>Length</th>
<th><br>Peak</th>
<th>True<br>Peak</th>
<th><br>Clips</th>
<th>TP<br>Clips</th>
<th>max<br>RMS-M</th>
<th>max<br>RMS-S</th>
<th><br>RMS-I</th>
<th><br>RMS-RA</th>
</tr>
</thead>
<tbody>
<tr>
<td>sirens_punch_2.mp3</td>
<td>1:30.967</td>
<td>-0.3</td>
<td>-0.3</td>
<td>0</td>
<td>0</td>
<td>-8.5</td>
<td>-9.3</td>
<td>-11.8</td>
<td>8.6</td>
</tr>
</tbody>
</table>
<br><br>
<input type='checkbox' id='regions' name='regions' value='yes'>
<label for='regions'> Display project regions</label><br>
<input type='checkbox' id='markers' name='markers'>
<label for='markers'> Display project markers</label><br>
<script type='text/javascript'>
var w=1024, h=768, xa=64, xb=w-24, ya=32, yb=112, yc=160, yd=h-24;
const colors=['#808080', '#3366CC', '#FF9900', '#F0F8F0', '#80E080'];
function stroke(ctx, c, l) { ctx.strokeStyle=c; ctx.lineWidth=l; ctx.stroke(); }
function strokerect(ctx, c, l, x, y, w, h) { ctx.strokeStyle=c; ctx.lineWidth=l; ctx.strokeRect(x, y, w, h); }
function fill(ctx, c) { ctx.fillStyle=c; ctx.fill(); }
function fillrect(ctx, c, x, y, w, h) { ctx.fillStyle=c; ctx.fillRect(x, y, w, h); }
function text(ctx, c, a, b, t, x, y) { ctx.fillStyle=c; ctx.textAlign=a; ctx.textBaseline=b; ctx.fillText(t, x, y); }
function clip(ctx, x, y, w, h) { ctx.save(); ctx.beginPath(); ctx.rect(x, y, w, h); ctx.clip(); }
function to_x(x) { return xa+(xb-xa)*x; }
function to_y(y, i) { return !i ? ya+(yb-ya)*y : yc+(yd-yc)*y; }
function from_x(x) { return (x-xa)/(xb-xa); }
function draw_chart(canv, data, tipx, tipy) {
w=canv.width=Math.max(window.innerWidth-64, 800);
xb=w-24;
let reg = 'regions' in data && document.getElementById('regions').checked;
let mrk = 'markers' in data && document.getElementById('markers').checked;
yc=160+40*(reg+mrk);
let ctx=canv.getContext('2d');
ctx.clearRect(0, 0, w, h);
ctx.font='1em monospace';
let x=xa;
text(ctx, '#000000', 'left', 'top', 'File: '+data.name, x, 0);
x += ctx.measureText('File: '+data.name).width+48;
for (let i=1; i < data.series.length; ++i) {
fillrect(ctx, colors[i], x, 6, 40, 3);
text(ctx, '#000000', 'left', 'top', data.series[i], x+48, 0);
x += ctx.measureText(data.series[i]).width+96;
}
fillrect(ctx, colors[4], x, 6, 40, 3);
text(ctx, '#000000', 'left', 'top', data.integrated[0], x+48, 0);
x += ctx.measureText(data.integrated[0]).width+96;
if ('dynrange' in data) {
fillrect(ctx, colors[3], x, 0, 40, 16);
text(ctx, '#000000', 'left', 'top', data.dynrange[0], x+48, 0);
let ylo=to_y(data.dynrange[1][0], 1), yhi=to_y(data.dynrange[2][0], 1);
fillrect(ctx, colors[3], xa, yhi, xb-xa, ylo-yhi);
}
let y=to_y(data.integrated[1], 1);
fillrect(ctx, colors[4], xa, y-1, xb-xa, 2);
ctx.beginPath();
for (let i=0; i < data.xmaj.length; ++i) {
let x=Math.floor(to_x(data.xmaj[i][0]))+0.5;
ctx.moveTo(x, ya);
ctx.lineTo(x, yb+8);
ctx.moveTo(x, yc-8);
ctx.lineTo(x+0.5, h);
text(ctx, '#000000', 'center', 'middle', data.xmaj[i][1], x, yc-24);
}
for (let i=0; i < data.ymaj.length; ++i) {
let y=Math.floor(to_y(data.ymaj[i][0], 1))+0.5;
ctx.moveTo(xa-8, y);
ctx.lineTo(w, y);
text(ctx, '#000000', 'right', 'middle', data.ymaj[i][1], xa-24, y);
}
stroke(ctx, '#E0E0E0', 1);
ctx.beginPath();
for (let i=0; i < data.xmin.length; ++i) {
let x=Math.floor(to_x(data.xmin[i]))+0.5;
ctx.moveTo(x, ya);
ctx.lineTo(x, yb);
ctx.moveTo(x, yc);
ctx.lineTo(x, h);
}
for (let i=0; i < data.ymin.length; ++i) {
let y=Math.floor(to_y(data.ymin[i], 1))+0.5;
ctx.moveTo(xa, y);
ctx.lineTo(w-8, y);
}
stroke(ctx, '#F4F4F4', 1);
strokerect(ctx, '#000000', 1, xa+0.5, ya+0.5, xb-xa, yb-ya);
for (let i=0; i < data.series.length; ++i) {
ctx.beginPath();
for (let j=0; j < data.vals.length; ++j) {
ctx.lineTo(to_x(data.vals[j][0][0]), to_y(data.vals[j][i+1][0], i));
}
if (!i) {
ctx.lineTo(xb, yb);
ctx.lineTo(xa, yb);
fill(ctx, colors[0]);
}
else {
stroke(ctx, colors[i], 2);
}
}
let sx=-1, ex=-1;
for (let i=0; i <= data.vals.length; ++i) {
if (i < data.vals.length && data.vals[i][1][1].startsWith('+')) {
ex=to_x(data.vals[i][0][0]);
if (sx < 0) sx=ex;
}
else if (sx >= 0 && ex >= 0) {
fillrect(ctx, '#FF0000', sx, ya, ex-sx, yb-ya);
sx=ex=-1;
}
}
if (reg) {
let lastx=w;
for (let i=data.regions.length-1; i >= 0; --i) {
let tx=Math.floor(to_x(data.regions[i][0]));
let ty=yb+10+0.5;
let tw=Math.floor(to_x(data.regions[i][2]))-tx;
let ex=tx+tw;
if (tx+tw > lastx) tw=lastx-tx;
lastx=tx-1;
fillrect(ctx, data.regions[i][5], tx, ty, tw, 20);
clip(ctx, tx, ty, tw, 20);
text(ctx, data.regions[i][6], 'left', 'middle', data.regions[i][4], tx+8, ty+10);
ctx.restore();
fillrect(ctx, data.regions[i][5], tx, ya-6, 2, yc-ya-32);
fillrect(ctx, data.regions[i][5], tx, yc-12, 2, h-yc+12);
fillrect(ctx, data.regions[i][5], ex, ya-6, 2, yc-ya-32);
fillrect(ctx, data.regions[i][5], ex, yc-12, 2, h-yc+12);
}
}
if (mrk) {
let lastx=w;
for (let i=data.markers.length-1; i >= 0; --i) {
let tx=Math.floor(to_x(data.markers[i][0]));
let ty=yb+40*reg+10+0.5;
let tw=ctx.measureText(data.markers[i][2]).width+16;
if (tx+tw > lastx) tw=lastx-tx;
lastx=tx-1;
fillrect(ctx, data.markers[i][3], tx, ty, tw, 20);
clip(ctx, tx, ty, tw, 20);
text(ctx, data.markers[i][4], 'left', 'middle', data.markers[i][2], tx+8, ty+10);
ctx.restore();
fillrect(ctx, data.markers[i][3], tx, ya-6, 2, yc-ya-32);
fillrect(ctx, data.markers[i][3], tx, yc-12, 2, h-yc+12);
}
}
if (tipx >= 0 && tipy >= 0) {
let tx=from_x(tipx);
let j=0;
for (; j < data.vals.length-1; ++j) {
if (data.vals[j][0][0] > tx) break;
}
if (j < data.vals.length-1 && data.vals[j+1][0][0]-tx < tx-data.vals[j][0][0]) ++j;
let str=[data.vals[j][0][1], '', '', ''];
for (let i=0; i < data.series.length; ++i) {
ctx.beginPath();
ctx.arc(to_x(data.vals[j][0][0]), to_y(data.vals[j][i+1][0], i), 4, 0, 2*Math.PI, false);
fill(ctx, !i ? '#000000' : colors[i]);
str[i+1]=data.series[i]+' '+data.vals[j][i+1][1];
}
let tipw=160, tiph=24*(data.series.length+1)+12;
if (tipx < tipw/2+1) tipx=tipw/2+1;
else if (tipx > w-tipw/2-1) tipx=w-tipw/2-1;
tipy += 96;
if (tipy > h-tiph/2-1) tipy=h-tiph/2-1;
strokerect(ctx, '#000000', 1, tipx-tipw/2, tipy-tiph/2, tipw, tiph);
fillrect(ctx, '#FFFFFF', tipx-tipw/2, tipy-tiph/2, tipw, tiph);
tipy -= 24*data.series.length/2;
for (let i=0; str[i]; ++i) {
text(ctx, !i ? '#000000' : colors[i-1], 'center', 'middle', str[i], tipx, tipy);
tipy += 24;
}
}
}
</script>
<br><br>
<canvas id='chart_0' width='1024' height='768'></canvas>
<script type='text/javascript'>
const data_0={
name:'sirens_punch_2.mp3',
length:90.968,
series:['Peak','RMS-M','RMS-S'],
integrated:['RMS-I',0.2255,'-11.79'],
dynrange:['RMS-RA',[0.3872,'-18.10'],[0.1667,'-9.50']],
vals:[
[[0.0010,'0:00.092'],[0.3736,'-8.13'],[0.3986,'-18.54'],[0.6229,'-27.29']],
[[0.0020,'0:00.185'],[0.4170,'-9.37'],[0.3709,'-17.47'],[0.5953,'-26.22']],
[[0.0031,'0:00.278'],[0.4358,'-9.94'],[0.3224,'-15.57'],[0.5384,'-24.00']],
[[0.0041,'0:00.371'],[0.4687,'-10.99'],[0.2700,'-13.53'],[0.4760,'-21.57']],
[[0.0051,'0:00.464'],[0.5700,'-14.66'],[0.2392,'-12.33'],[0.4413,'-20.21']],
[[0.0061,'0:00.557'],[0.1025,'-1.88'],[0.2182,'-11.51'],[0.4190,'-19.34']],
[[0.0072,'0:00.650'],[0.1798,'-3.44'],[0.2035,'-10.94'],[0.3998,'-18.59']],
[[0.0082,'0:00.743'],[0.2426,'-4.83'],[0.1945,'-10.58'],[0.3832,'-17.94']],
[[0.0092,'0:00.836'],[0.2720,'-5.51'],[0.1943,'-10.58'],[0.3686,'-17.37']],
[[0.0102,'0:00.929'],[0.1662,'-3.16'],[0.2090,'-11.15'],[0.3573,'-16.94']],
[[0.0112,'0:01.022'],[0.2506,'-5.01'],[0.2196,'-11.57'],[0.3461,'-16.50']],
[[0.0123,'0:01.115'],[0.2994,'-6.18'],[0.2155,'-11.40'],[0.3346,'-16.05']],
[[0.0133,'0:01.207'],[0.1016,'-1.86'],[0.2115,'-11.25'],[0.3234,'-15.61']],
[[0.0143,'0:01.300'],[0.1154,'-2.13'],[0.2109,'-11.22'],[0.3152,'-15.29']],
[[0.0153,'0:01.393'],[0.2960,'-6.10'],[0.2102,'-11.20'],[0.3070,'-14.97']],
[[0.0163,'0:01.486'],[0.2420,'-4.81'],[0.2131,'-11.31'],[0.2997,'-14.69']],
[[0.0174,'0:01.579'],[0.3205,'-6.71'],[0.2164,'-11.44'],[0.2925,'-14.41']],
[[0.0184,'0:01.672'],[0.3141,'-6.55'],[0.2167,'-11.45'],[0.2859,'-14.15']],
[[0.0194,'0:01.765'],[0.3244,'-6.81'],[0.2161,'-11.43'],[0.2796,'-13.91']],
[[0.0204,'0:01.858'],[0.3200,'-6.70'],[0.2158,'-11.42'],[0.2740,'-13.68']],
[[0.0215,'0:01.951'],[0.2836,'-5.79'],[0.2158,'-11.42'],[0.2687,'-13.48']],
[[0.0225,'0:02.044'],[0.3255,'-6.84'],[0.2170,'-11.46'],[0.2639,'-13.29']],
[[0.0235,'0:02.137'],[0.3206,'-6.71'],[0.2196,'-11.57'],[0.2597,'-13.13']],
[[0.0245,'0:02.230'],[0.2722,'-5.52'],[0.2227,'-11.68'],[0.2555,'-12.97']],
[[0.0255,'0:02.322'],[0.3186,'-6.66'],[0.2267,'-11.84'],[0.2513,'-12.80']],
[[0.0266,'0:02.415'],[0.3020,'-6.25'],[0.2300,'-11.97'],[0.2472,'-12.64']],
[[0.0276,'0:02.508'],[0.2474,'-4.94'],[0.2287,'-11.92'],[0.2431,'-12.48']],
[[0.0286,'0:02.601'],[0.3087,'-6.41'],[0.2274,'-11.87'],[0.2390,'-12.32']],
[[0.0296,'0:02.694'],[0.3277,'-6.90'],[0.2274,'-11.87'],[0.2356,'-12.19']],
[[0.0306,'0:02.787'],[0.1209,'-2.24'],[0.2275,'-11.87'],[0.2322,'-12.06']],
[[0.0317,'0:02.880'],[0.2356,'-4.67'],[0.2288,'-11.92'],[0.2300,'-11.97']],
[[0.0327,'0:02.973'],[0.2313,'-4.57'],[0.2304,'-11.98'],[0.2281,'-11.90']],
[[0.0337,'0:03.066'],[0.3744,'-8.15'],[0.2339,'-12.12'],[0.2261,'-11.82']],
[[0.0347,'0:03.159'],[0.1650,'-3.13'],[0.2385,'-12.30'],[0.2241,'-11.74']],
[[0.0358,'0:03.252'],[0.2022,'-3.93'],[0.2412,'-12.41'],[0.2228,'-11.69']],
[[0.0368,'0:03.345'],[0.3443,'-7.33'],[0.2422,'-12.44'],[0.2221,'-11.66']],
[[0.0378,'0:03.438'],[0.2610,'-5.25'],[0.2443,'-12.53'],[0.2227,'-11.69']],
[[0.0388,'0:03.530'],[0.3455,'-7.36'],[0.2489,'-12.71'],[0.2257,'-11.80']],
[[0.0398,'0:03.623'],[0.3365,'-7.13'],[0.2537,'-12.89'],[0.2283,'-11.90']],
[[0.0409,'0:03.716'],[0.2849,'-5.83'],[0.2594,'-13.12'],[0.2295,'-11.95']],
[[0.0419,'0:03.809'],[0.3575,'-7.68'],[0.2651,'-13.34'],[0.2308,'-12.00']],
[[0.0429,'0:03.902'],[0.2754,'-5.59'],[0.2692,'-13.50'],[0.2325,'-12.07']],
[[0.0439,'0:03.995'],[0.2659,'-5.37'],[0.2732,'-13.66'],[0.2341,'-12.13']],
[[0.0449,'0:04.088'],[0.3390,'-7.19'],[0.2743,'-13.70'],[0.2369,'-12.24']],
[[0.0460,'0:04.181'],[0.2302,'-4.55'],[0.2750,'-13.72'],[0.2399,'-12.35']],
[[0.0470,'0:04.274'],[0.3792,'-8.28'],[0.2609,'-13.18'],[0.2406,'-12.38']],
[[0.0480,'0:04.367'],[0.1517,'-2.86'],[0.2410,'-12.40'],[0.2405,'-12.38']],
[[0.0490,'0:04.460'],[0.1180,'-2.18'],[0.2226,'-11.68'],[0.2403,'-12.37']],
[[0.0501,'0:04.553'],[0.2197,'-4.31'],[0.2056,'-11.02'],[0.2399,'-12.36']],
[[0.0511,'0:04.645'],[0.2239,'-4.40'],[0.1981,'-10.73'],[0.2397,'-12.35']],
[[0.0521,'0:04.738'],[0.1401,'-2.62'],[0.2047,'-10.99'],[0.2398,'-12.35']],
[[0.0531,'0:04.831'],[0.2258,'-4.45'],[0.2106,'-11.21'],[0.2400,'-12.36']],
[[0.0541,'0:04.924'],[0.2582,'-5.19'],[0.2140,'-11.35'],[0.2402,'-12.37']],
[[0.0552,'0:05.017'],[0.3074,'-6.38'],[0.2176,'-11.49'],[0.2404,'-12.38']],
[[0.0562,'0:05.110'],[0.1594,'-3.02'],[0.2228,'-11.69'],[0.2406,'-12.38']],
[[0.0572,'0:05.203'],[0.3159,'-6.59'],[0.2279,'-11.89'],[0.2407,'-12.39']],
[[0.0582,'0:05.296'],[0.3145,'-6.56'],[0.2272,'-11.86'],[0.2407,'-12.39']],
[[0.0592,'0:05.389'],[0.2638,'-5.32'],[0.2261,'-11.82'],[0.2407,'-12.39']],
[[0.0603,'0:05.482'],[0.2398,'-4.76'],[0.2279,'-11.89'],[0.2406,'-12.38']],
[[0.0613,'0:05.575'],[0.2911,'-5.98'],[0.2305,'-11.99'],[0.2404,'-12.38']],
[[0.0623,'0:05.668'],[0.2868,'-5.87'],[0.2316,'-12.03'],[0.2406,'-12.38']],
[[0.0633,'0:05.760'],[0.3360,'-7.11'],[0.2318,'-12.04'],[0.2411,'-12.40']],
[[0.0644,'0:05.853'],[0.2518,'-5.04'],[0.2331,'-12.09'],[0.2413,'-12.41']],
[[0.0654,'0:05.946'],[0.2568,'-5.16'],[0.2358,'-12.19'],[0.2412,'-12.41']],
[[0.0664,'0:06.039'],[0.3187,'-6.67'],[0.2354,'-12.18'],[0.2407,'-12.39']],
[[0.0674,'0:06.132'],[0.2235,'-4.40'],[0.2283,'-11.90'],[0.2395,'-12.34']],
[[0.0684,'0:06.225'],[0.2907,'-5.97'],[0.2214,'-11.63'],[0.2384,'-12.30']],
[[0.0695,'0:06.318'],[0.1431,'-2.68'],[0.2155,'-11.41'],[0.2373,'-12.25']],
[[0.0705,'0:06.411'],[0.1805,'-3.46'],[0.2097,'-11.18'],[0.2362,'-12.21']],
[[0.0715,'0:06.504'],[0.2742,'-5.57'],[0.2037,'-10.95'],[0.2343,'-12.14']],
[[0.0725,'0:06.597'],[0.3077,'-6.39'],[0.1977,'-10.71'],[0.2325,'-12.07']],
[[0.0735,'0:06.690'],[0.1409,'-2.64'],[0.2039,'-10.95'],[0.2317,'-12.04']],
[[0.0746,'0:06.783'],[0.2267,'-4.47'],[0.2124,'-11.28'],[0.2310,'-12.01']],
[[0.0756,'0:06.876'],[0.2512,'-5.03'],[0.2160,'-11.42'],[0.2294,'-11.95']],
[[0.0766,'0:06.968'],[0.2835,'-5.79'],[0.2173,'-11.48'],[0.2272,'-11.86']],
[[0.0776,'0:07.061'],[0.0851,'-1.55'],[0.2195,'-11.56'],[0.2253,'-11.79']],
[[0.0787,'0:07.154'],[0.1790,'-3.43'],[0.2224,'-11.67'],[0.2237,'-11.72']],
[[0.0797,'0:07.247'],[0.2586,'-5.20'],[0.2257,'-11.80'],[0.2232,'-11.70']],
[[0.0807,'0:07.340'],[0.2456,'-4.90'],[0.2295,'-11.95'],[0.2247,'-11.76']],
[[0.0817,'0:07.433'],[0.2802,'-5.71'],[0.2332,'-12.10'],[0.2260,'-11.82']],
[[0.0827,'0:07.526'],[0.2881,'-5.90'],[0.2365,'-12.22'],[0.2267,'-11.84']],
[[0.0838,'0:07.619'],[0.2149,'-4.20'],[0.2397,'-12.35'],[0.2274,'-11.87']],
[[0.0848,'0:07.712'],[0.3090,'-6.42'],[0.2411,'-12.40'],[0.2287,'-11.92']],
[[0.0858,'0:07.805'],[0.2124,'-4.15'],[0.2426,'-12.46'],[0.2300,'-11.97']],
[[0.0868,'0:07.898'],[0.2703,'-5.47'],[0.2471,'-12.64'],[0.2308,'-12.00']],
[[0.0878,'0:07.991'],[0.2988,'-6.17'],[0.2519,'-12.83'],[0.2316,'-12.03']],
[[0.0889,'0:08.083'],[0.3270,'-6.88'],[0.2502,'-12.76'],[0.2322,'-12.06']],
[[0.0899,'0:08.176'],[0.4987,'-12.00'],[0.2462,'-12.60'],[0.2329,'-12.08']],
[[0.0909,'0:08.269'],[0.0692,'-1.25'],[0.2345,'-12.14'],[0.2331,'-12.09']],
[[0.0919,'0:08.362'],[0.1048,'-1.92'],[0.2172,'-11.47'],[0.2330,'-12.09']],
[[0.0930,'0:08.455'],[0.2079,'-4.05'],[0.2066,'-11.06'],[0.2330,'-12.09']],
[[0.0940,'0:08.548'],[0.2749,'-5.58'],[0.2048,'-10.99'],[0.2331,'-12.09']],
[[0.0950,'0:08.641'],[0.1646,'-3.12'],[0.2078,'-11.11'],[0.2333,'-12.10']],
[[0.0960,'0:08.734'],[0.3088,'-6.42'],[0.2236,'-11.72'],[0.2335,'-12.11']],
[[0.0970,'0:08.827'],[0.3095,'-6.43'],[0.2377,'-12.27'],[0.2337,'-12.12']],
[[0.0981,'0:08.920'],[0.3640,'-7.86'],[0.2404,'-12.37'],[0.2338,'-12.12']],
[[0.0991,'0:09.013'],[0.1410,'-2.64'],[0.2430,'-12.48'],[0.2339,'-12.12']],
[[0.1001,'0:09.106'],[0.2976,'-6.14'],[0.2451,'-12.56'],[0.2340,'-12.13']],
[[0.1011,'0:09.198'],[0.2605,'-5.24'],[0.2471,'-12.64'],[0.2341,'-12.13']],
[[0.1021,'0:09.291'],[0.2524,'-5.05'],[0.2544,'-12.92'],[0.2363,'-12.21']],
[[0.1032,'0:09.384'],[0.3127,'-6.51'],[0.2630,'-13.26'],[0.2390,'-12.32']],
[[0.1042,'0:09.477'],[0.3090,'-6.42'],[0.2651,'-13.34'],[0.2409,'-12.39']],
[[0.1052,'0:09.570'],[0.3002,'-6.20'],[0.2639,'-13.29'],[0.2423,'-12.45']],
[[0.1062,'0:09.663'],[0.3229,'-6.77'],[0.2617,'-13.21'],[0.2437,'-12.51']],
[[0.1073,'0:09.756'],[0.2563,'-5.14'],[0.2587,'-13.09'],[0.2451,'-12.56']],
[[0.1083,'0:09.849'],[0.3070,'-6.37'],[0.2565,'-13.00'],[0.2465,'-12.61']],
[[0.1093,'0:09.942'],[0.2671,'-5.40'],[0.2560,'-12.98'],[0.2476,'-12.66']],
[[0.1103,'0:10.035'],[0.3245,'-6.82'],[0.2561,'-12.99'],[0.2487,'-12.70']],
[[0.1113,'0:10.128'],[0.3948,'-8.72'],[0.2585,'-13.08'],[0.2497,'-12.74']],
[[0.1124,'0:10.221'],[0.2142,'-4.19'],[0.2607,'-13.17'],[0.2507,'-12.78']],
[[0.1134,'0:10.314'],[0.3459,'-7.37'],[0.2550,'-12.94'],[0.2511,'-12.79']],
[[0.1144,'0:10.406'],[0.3656,'-7.91'],[0.2492,'-12.72'],[0.2515,'-12.81']],
[[0.1154,'0:10.499'],[0.3324,'-7.02'],[0.2489,'-12.71'],[0.2519,'-12.82']],
[[0.1164,'0:10.592'],[0.1507,'-2.84'],[0.2495,'-12.73'],[0.2522,'-12.84']],
[[0.1175,'0:10.685'],[0.2547,'-5.11'],[0.2478,'-12.66'],[0.2522,'-12.84']],
[[0.1185,'0:10.778'],[0.2862,'-5.86'],[0.2452,'-12.56'],[0.2521,'-12.83']],
[[0.1195,'0:10.871'],[0.3325,'-7.02'],[0.2473,'-12.65'],[0.2515,'-12.81']],
[[0.1205,'0:10.964'],[0.1186,'-2.19'],[0.2534,'-12.88'],[0.2504,'-12.76']],
[[0.1216,'0:11.057'],[0.3139,'-6.55'],[0.2587,'-13.09'],[0.2501,'-12.76']],
[[0.1226,'0:11.150'],[0.3600,'-7.75'],[0.2630,'-13.26'],[0.2512,'-12.80']],
[[0.1236,'0:11.243'],[0.2902,'-5.95'],[0.2703,'-13.54'],[0.2529,'-12.86']],
[[0.1246,'0:11.336'],[0.3484,'-7.44'],[0.2870,'-14.19'],[0.2567,'-13.01']],
[[0.1256,'0:11.429'],[0.3497,'-7.48'],[0.3028,'-14.81'],[0.2603,'-13.15']],
[[0.1267,'0:11.521'],[0.3017,'-6.24'],[0.3089,'-15.05'],[0.2629,'-13.25']],
[[0.1277,'0:11.614'],[0.3507,'-7.50'],[0.3149,'-15.28'],[0.2655,'-13.35']],
[[0.1287,'0:11.707'],[0.3083,'-6.40'],[0.3176,'-15.39'],[0.2674,'-13.43']],
[[0.1297,'0:11.800'],[0.4270,'-9.67'],[0.3200,'-15.48'],[0.2692,'-13.50']],
[[0.1307,'0:11.893'],[0.3216,'-6.74'],[0.2992,'-14.67'],[0.2701,'-13.53']],
[[0.1318,'0:11.986'],[0.3442,'-7.33'],[0.2716,'-13.59'],[0.2706,'-13.55']],
[[0.1328,'0:12.079'],[0.4665,'-10.92'],[0.2511,'-12.79'],[0.2701,'-13.53']],
[[0.1338,'0:12.172'],[0.1144,'-2.11'],[0.2351,'-12.17'],[0.2690,'-13.49']],
[[0.1348,'0:12.265'],[0.2277,'-4.49'],[0.2222,'-11.66'],[0.2675,'-13.43']],
[[0.1359,'0:12.358'],[0.2572,'-5.16'],[0.2129,'-11.30'],[0.2657,'-13.36']],
[[0.1369,'0:12.451'],[0.2960,'-6.10'],[0.2096,'-11.18'],[0.2642,'-13.31']],
[[0.1379,'0:12.544'],[0.1396,'-2.61'],[0.2200,'-11.58'],[0.2638,'-13.29']],
[[0.1389,'0:12.636'],[0.2717,'-5.51'],[0.2282,'-11.90'],[0.2633,'-13.27']],
[[0.1399,'0:12.729'],[0.2921,'-6.00'],[0.2232,'-11.70'],[0.2617,'-13.21']],
[[0.1410,'0:12.822'],[0.3009,'-6.22'],[0.2182,'-11.51'],[0.2601,'-13.14']],
[[0.1420,'0:12.915'],[0.0831,'-1.51'],[0.2246,'-11.76'],[0.2600,'-13.14']],
[[0.1430,'0:13.008'],[0.3249,'-6.83'],[0.2312,'-12.02'],[0.2600,'-13.14']],
[[0.1440,'0:13.101'],[0.3482,'-7.44'],[0.2387,'-12.31'],[0.2602,'-13.15']],
[[0.1450,'0:13.194'],[0.3286,'-6.92'],[0.2464,'-12.61'],[0.2605,'-13.16']],
[[0.1461,'0:13.287'],[0.3016,'-6.24'],[0.2565,'-13.00'],[0.2607,'-13.17']],
[[0.1471,'0:13.380'],[0.3174,'-6.63'],[0.2678,'-13.44'],[0.2609,'-13.17']],
[[0.1481,'0:13.473'],[0.3296,'-6.95'],[0.2736,'-13.67'],[0.2617,'-13.21']],
[[0.1491,'0:13.566'],[0.2899,'-5.95'],[0.2746,'-13.71'],[0.2632,'-13.26']],
[[0.1502,'0:13.659'],[0.2805,'-5.72'],[0.2760,'-13.76'],[0.2642,'-13.30']],
[[0.1512,'0:13.752'],[0.3290,'-6.93'],[0.2782,'-13.85'],[0.2644,'-13.31']],
[[0.1522,'0:13.844'],[0.2554,'-5.12'],[0.2757,'-13.75'],[0.2642,'-13.31']],
[[0.1532,'0:13.937'],[0.3242,'-6.81'],[0.2554,'-12.96'],[0.2624,'-13.23']],
[[0.1542,'0:14.030'],[0.3467,'-7.40'],[0.2356,'-12.19'],[0.2605,'-13.16']],
[[0.1553,'0:14.123'],[0.1382,'-2.58'],[0.2256,'-11.80'],[0.2582,'-13.07']],
[[0.1563,'0:14.216'],[0.2510,'-5.02'],[0.2157,'-11.41'],[0.2559,'-12.98']],
[[0.1573,'0:14.309'],[0.2661,'-5.37'],[0.2124,'-11.29'],[0.2535,'-12.89']],
[[0.1583,'0:14.402'],[0.1029,'-1.89'],[0.2100,'-11.19'],[0.2512,'-12.80']],
[[0.1593,'0:14.495'],[0.1314,'-2.45'],[0.2134,'-11.32'],[0.2484,'-12.69']],
[[0.1604,'0:14.588'],[0.2685,'-5.43'],[0.2189,'-11.54'],[0.2454,'-12.57']],
[[0.1614,'0:14.681'],[0.2935,'-6.04'],[0.2220,'-11.66'],[0.2431,'-12.48']],
[[0.1624,'0:14.774'],[0.0868,'-1.58'],[0.2234,'-11.71'],[0.2413,'-12.41']],
[[0.1634,'0:14.867'],[0.1224,'-2.27'],[0.2248,'-11.77'],[0.2399,'-12.36']],
[[0.1645,'0:14.959'],[0.2704,'-5.48'],[0.2262,'-11.82'],[0.2392,'-12.33']],
[[0.1655,'0:15.052'],[0.2189,'-4.29'],[0.2301,'-11.97'],[0.2393,'-12.33']],
[[0.1665,'0:15.145'],[0.2734,'-5.55'],[0.2404,'-12.38'],[0.2414,'-12.41']],
[[0.1675,'0:15.238'],[0.2494,'-4.98'],[0.2495,'-12.73'],[0.2432,'-12.49']],
[[0.1685,'0:15.331'],[0.2450,'-4.88'],[0.2486,'-12.69'],[0.2434,'-12.49']],
[[0.1696,'0:15.424'],[0.2420,'-4.81'],[0.2477,'-12.66'],[0.2436,'-12.50']],
[[0.1706,'0:15.517'],[0.2712,'-5.50'],[0.2483,'-12.68'],[0.2447,'-12.54']],
[[0.1716,'0:15.610'],[0.2373,'-4.71'],[0.2489,'-12.71'],[0.2458,'-12.59']],
[[0.1726,'0:15.703'],[0.2810,'-5.73'],[0.2516,'-12.81'],[0.2473,'-12.65']],
[[0.1736,'0:15.796'],[0.2223,'-4.37'],[0.2547,'-12.93'],[0.2488,'-12.70']],
[[0.1747,'0:15.889'],[0.3102,'-6.45'],[0.2434,'-12.49'],[0.2473,'-12.65']],
[[0.1757,'0:15.982'],[0.4060,'-9.05'],[0.2241,'-11.74'],[0.2442,'-12.52']],
[[0.1767,'0:16.074'],[0.0796,'-1.44'],[0.2092,'-11.16'],[0.2419,'-12.44']],
[[0.1777,'0:16.167'],[0.2260,'-4.45'],[0.1987,'-10.75'],[0.2407,'-12.39']],
[[0.1788,'0:16.260'],[0.2362,'-4.68'],[0.1953,'-10.62'],[0.2393,'-12.33']],
[[0.1798,'0:16.353'],[0.1362,'-2.54'],[0.2060,'-11.04'],[0.2374,'-12.26']],
[[0.1808,'0:16.446'],[0.1426,'-2.67'],[0.2150,'-11.38'],[0.2356,'-12.19']],
[[0.1818,'0:16.539'],[0.1413,'-2.65'],[0.2154,'-11.40'],[0.2337,'-12.11']],
[[0.1828,'0:16.632'],[0.2836,'-5.79'],[0.2156,'-11.41'],[0.2318,'-12.04']],
[[0.1839,'0:16.725'],[0.1596,'-3.02'],[0.2033,'-10.93'],[0.2278,'-11.89']],
[[0.1849,'0:16.818'],[0.1355,'-2.53'],[0.1910,'-10.45'],[0.2239,'-11.73']],
[[0.1859,'0:16.911'],[0.2134,'-4.17'],[0.1866,'-10.28'],[0.2238,'-11.73']],
[[0.1869,'0:17.004'],[0.1335,'-2.49'],[0.1834,'-10.15'],[0.2244,'-11.75']],
[[0.1879,'0:17.097'],[0.1838,'-3.53'],[0.1851,'-10.22'],[0.2242,'-11.74']],
[[0.1890,'0:17.190'],[0.1652,'-3.14'],[0.1890,'-10.37'],[0.2238,'-11.73']],
[[0.1900,'0:17.282'],[0.2257,'-4.44'],[0.1946,'-10.59'],[0.2230,'-11.70']],
[[0.1910,'0:17.375'],[0.2207,'-4.33'],[0.2017,'-10.87'],[0.2218,'-11.65']],
[[0.1920,'0:17.468'],[0.1154,'-2.13'],[0.2041,'-10.96'],[0.2207,'-11.61']],
[[0.1931,'0:17.561'],[0.1942,'-3.75'],[0.1993,'-10.77'],[0.2195,'-11.56']],
[[0.1941,'0:17.654'],[0.2084,'-4.06'],[0.1947,'-10.59'],[0.2183,'-11.51']],
[[0.1951,'0:17.747'],[0.1644,'-3.12'],[0.1907,'-10.44'],[0.2170,'-11.46']],
[[0.1961,'0:17.840'],[0.1225,'-2.27'],[0.1872,'-10.30'],[0.2157,'-11.41']],
[[0.1971,'0:17.933'],[0.1421,'-2.66'],[0.1892,'-10.38'],[0.2151,'-11.39']],
[[0.1982,'0:18.026'],[0.1545,'-2.92'],[0.1912,'-10.46'],[0.2145,'-11.37']],
[[0.1992,'0:18.119'],[0.2659,'-5.37'],[0.1987,'-10.75'],[0.2135,'-11.33']],
[[0.2002,'0:18.212'],[0.2596,'-5.22'],[0.2067,'-11.06'],[0.2124,'-11.29']],
[[0.2012,'0:18.305'],[0.2498,'-4.99'],[0.2056,'-11.02'],[0.2112,'-11.24']],
[[0.2022,'0:18.397'],[0.1789,'-3.42'],[0.2018,'-10.87'],[0.2099,'-11.19']],
[[0.2033,'0:18.490'],[0.0972,'-1.78'],[0.1979,'-10.72'],[0.2082,'-11.12']],
[[0.2043,'0:18.583'],[0.2443,'-4.87'],[0.1938,'-10.56'],[0.2063,'-11.05']],
[[0.2053,'0:18.676'],[0.1059,'-1.94'],[0.1926,'-10.51'],[0.2045,'-10.97']],
[[0.2063,'0:18.769'],[0.1217,'-2.26'],[0.1947,'-10.59'],[0.2027,'-10.91']],
[[0.2074,'0:18.862'],[0.2495,'-4.99'],[0.1958,'-10.64'],[0.2019,'-10.87']],
[[0.2084,'0:18.955'],[0.1306,'-2.43'],[0.1944,'-10.58'],[0.2032,'-10.92']],
[[0.2094,'0:19.048'],[0.1041,'-1.91'],[0.1935,'-10.54'],[0.2041,'-10.96']],
[[0.2104,'0:19.141'],[0.1676,'-3.19'],[0.1959,'-10.64'],[0.2029,'-10.91']],
[[0.2114,'0:19.234'],[0.2575,'-5.17'],[0.1983,'-10.73'],[0.2016,'-10.86']],
[[0.2125,'0:19.327'],[0.2127,'-4.15'],[0.1989,'-10.76'],[0.2017,'-10.86']],
[[0.2135,'0:19.420'],[0.1061,'-1.95'],[0.1996,'-10.78'],[0.2017,'-10.87']],
[[0.2145,'0:19.512'],[0.2312,'-4.57'],[0.2022,'-10.89'],[0.2016,'-10.86']],
[[0.2155,'0:19.605'],[0.1556,'-2.94'],[0.2052,'-11.00'],[0.2016,'-10.86']],
[[0.2165,'0:19.698'],[0.1869,'-3.60'],[0.2069,'-11.07'],[0.2019,'-10.87']],
[[0.2176,'0:19.791'],[0.2597,'-5.22'],[0.2079,'-11.11'],[0.2025,'-10.90']],
[[0.2186,'0:19.884'],[0.0734,'-1.32'],[0.2084,'-11.13'],[0.2032,'-10.92']],
[[0.2196,'0:19.977'],[0.1969,'-3.81'],[0.2084,'-11.13'],[0.2041,'-10.96']],
[[0.2206,'0:20.070'],[0.2498,'-4.99'],[0.2074,'-11.09'],[0.2045,'-10.97']],
[[0.2217,'0:20.163'],[0.3142,'-6.55'],[0.2043,'-10.97'],[0.2039,'-10.95']],
[[0.2227,'0:20.256'],[0.1062,'-1.95'],[0.2012,'-10.85'],[0.2036,'-10.94']],
[[0.2237,'0:20.349'],[0.1792,'-3.43'],[0.1975,'-10.70'],[0.2041,'-10.96']],
[[0.2247,'0:20.442'],[0.0941,'-1.72'],[0.1940,'-10.56'],[0.2046,'-10.98']],
[[0.2257,'0:20.535'],[0.2594,'-5.22'],[0.1937,'-10.55'],[0.2046,'-10.98']],
[[0.2268,'0:20.628'],[0.1436,'-2.69'],[0.1934,'-10.54'],[0.2046,'-10.98']],
[[0.2278,'0:20.720'],[0.2713,'-5.50'],[0.1934,'-10.54'],[0.2045,'-10.97']],
[[0.2288,'0:20.813'],[0.2549,'-5.11'],[0.1935,'-10.55'],[0.2043,'-10.97']],
[[0.2298,'0:20.906'],[0.1649,'-3.13'],[0.1975,'-10.70'],[0.2051,'-11.00']],
[[0.2308,'0:20.999'],[0.1570,'-2.97'],[0.2030,'-10.92'],[0.2063,'-11.05']],
[[0.2319,'0:21.092'],[0.2590,'-5.21'],[0.2075,'-11.09'],[0.2066,'-11.06']],
[[0.2329,'0:21.185'],[0.1915,'-3.69'],[0.2114,'-11.24'],[0.2061,'-11.04']],
[[0.2339,'0:21.278'],[0.2195,'-4.30'],[0.2119,'-11.26'],[0.2060,'-11.04']],
[[0.2349,'0:21.371'],[0.1166,'-2.15'],[0.2078,'-11.11'],[0.2066,'-11.06']],
[[0.2360,'0:21.464'],[0.2098,'-4.09'],[0.2045,'-10.97'],[0.2071,'-11.08']],
[[0.2370,'0:21.557'],[0.1675,'-3.19'],[0.2029,'-10.91'],[0.2071,'-11.08']],
[[0.2380,'0:21.650'],[0.2517,'-5.04'],[0.2015,'-10.86'],[0.2071,'-11.08']],
[[0.2390,'0:21.743'],[0.2840,'-5.80'],[0.2003,'-10.81'],[0.2071,'-11.08']],
[[0.2400,'0:21.835'],[0.0660,'-1.19'],[0.1991,'-10.77'],[0.2072,'-11.08']],
[[0.2411,'0:21.928'],[0.2217,'-4.35'],[0.2014,'-10.86'],[0.2078,'-11.11']],
[[0.2421,'0:22.021'],[0.2467,'-4.92'],[0.2039,'-10.95'],[0.2086,'-11.13']],
[[0.2431,'0:22.114'],[0.2541,'-5.09'],[0.2036,'-10.94'],[0.2079,'-11.11']],
[[0.2441,'0:22.207'],[0.1303,'-2.42'],[0.2026,'-10.90'],[0.2069,'-11.07']],
[[0.2451,'0:22.300'],[0.0870,'-1.58'],[0.2026,'-10.90'],[0.2074,'-11.09']],
[[0.2462,'0:22.393'],[0.2173,'-4.26'],[0.2031,'-10.92'],[0.2087,'-11.14']],
[[0.2472,'0:22.486'],[0.2746,'-5.58'],[0.2035,'-10.94'],[0.2089,'-11.15']],
[[0.2482,'0:22.579'],[0.1611,'-3.05'],[0.2039,'-10.95'],[0.2080,'-11.11']],
[[0.2492,'0:22.672'],[0.2633,'-5.31'],[0.2057,'-11.02'],[0.2076,'-11.09']],
[[0.2503,'0:22.765'],[0.1072,'-1.97'],[0.2106,'-11.21'],[0.2080,'-11.11']],
[[0.2513,'0:22.858'],[0.1347,'-2.51'],[0.2151,'-11.39'],[0.2086,'-11.14']],
[[0.2523,'0:22.951'],[0.1204,'-2.23'],[0.2176,'-11.49'],[0.2097,'-11.18']],
[[0.2533,'0:23.043'],[0.2826,'-5.77'],[0.2202,'-11.59'],[0.2108,'-11.22']],
[[0.2543,'0:23.136'],[0.2078,'-4.05'],[0.2225,'-11.68'],[0.2106,'-11.21']],
[[0.2554,'0:23.229'],[0.3031,'-6.27'],[0.2249,'-11.77'],[0.2105,'-11.21']],
[[0.2564,'0:23.322'],[0.1295,'-2.41'],[0.2234,'-11.71'],[0.2117,'-11.26']],
[[0.2574,'0:23.415'],[0.2954,'-6.08'],[0.2212,'-11.63'],[0.2132,'-11.32']],
[[0.2584,'0:23.508'],[0.1994,'-3.86'],[0.2172,'-11.47'],[0.2138,'-11.34']],
[[0.2594,'0:23.601'],[0.2689,'-5.44'],[0.2125,'-11.29'],[0.2139,'-11.34']],
[[0.2605,'0:23.694'],[0.2592,'-5.21'],[0.2104,'-11.21'],[0.2146,'-11.37']],
[[0.2615,'0:23.787'],[0.1108,'-2.04'],[0.2104,'-11.21'],[0.2158,'-11.42']],
[[0.2625,'0:23.880'],[0.2045,'-3.98'],[0.2126,'-11.29'],[0.2167,'-11.45']],
[[0.2635,'0:23.973'],[0.3006,'-6.21'],[0.2181,'-11.51'],[0.2173,'-11.47']],
[[0.2646,'0:24.066'],[0.2736,'-5.55'],[0.2222,'-11.67'],[0.2175,'-11.48']],
[[0.2656,'0:24.158'],[0.1984,'-3.84'],[0.2219,'-11.65'],[0.2163,'-11.44']],
[[0.2666,'0:24.251'],[0.0914,'-1.67'],[0.2210,'-11.62'],[0.2154,'-11.40']],
[[0.2676,'0:24.344'],[0.2407,'-4.78'],[0.2137,'-11.33'],[0.2165,'-11.44']],
[[0.2686,'0:24.437'],[0.2461,'-4.91'],[0.2063,'-11.05'],[0.2176,'-11.49']],
[[0.2697,'0:24.530'],[0.1175,'-2.17'],[0.2073,'-11.08'],[0.2174,'-11.48']],
[[0.2707,'0:24.623'],[0.2600,'-5.23'],[0.2090,'-11.15'],[0.2172,'-11.47']],
[[0.2717,'0:24.716'],[0.1378,'-2.58'],[0.2101,'-11.19'],[0.2183,'-11.51']],
[[0.2727,'0:24.809'],[0.2401,'-4.77'],[0.2111,'-11.23'],[0.2198,'-11.57']],
[[0.2737,'0:24.902'],[0.1510,'-2.84'],[0.2160,'-11.42'],[0.2204,'-11.59']],
[[0.2748,'0:24.995'],[0.2343,'-4.64'],[0.2233,'-11.71'],[0.2203,'-11.59']],
[[0.2758,'0:25.088'],[0.2692,'-5.45'],[0.2273,'-11.86'],[0.2203,'-11.59']],
[[0.2768,'0:25.181'],[0.2375,'-4.71'],[0.2272,'-11.86'],[0.2205,'-11.60']],
[[0.2778,'0:25.273'],[0.1622,'-3.07'],[0.2243,'-11.75'],[0.2209,'-11.62']],
[[0.2789,'0:25.366'],[0.1959,'-3.79'],[0.2148,'-11.38'],[0.2217,'-11.65']],
[[0.2799,'0:25.459'],[0.1502,'-2.83'],[0.2061,'-11.04'],[0.2222,'-11.67']],
[[0.2809,'0:25.552'],[0.2371,'-4.70'],[0.2024,'-10.89'],[0.2213,'-11.63']],
[[0.2819,'0:25.645'],[0.2167,'-4.24'],[0.1987,'-10.75'],[0.2203,'-11.59']],
[[0.2829,'0:25.738'],[0.1127,'-2.08'],[0.2004,'-10.82'],[0.2208,'-11.61']],
[[0.2840,'0:25.831'],[0.2788,'-5.68'],[0.2023,'-10.89'],[0.2213,'-11.63']],
[[0.2850,'0:25.924'],[0.2965,'-6.11'],[0.2101,'-11.20'],[0.2206,'-11.60']],
[[0.2860,'0:26.017'],[0.3092,'-6.43'],[0.2193,'-11.55'],[0.2197,'-11.57']],
[[0.2870,'0:26.110'],[0.2329,'-4.61'],[0.2193,'-11.55'],[0.2196,'-11.57']],
[[0.2880,'0:26.203'],[0.1538,'-2.90'],[0.2147,'-11.37'],[0.2201,'-11.58']],
[[0.2891,'0:26.296'],[0.2711,'-5.49'],[0.2112,'-11.24'],[0.2200,'-11.58']],
[[0.2901,'0:26.389'],[0.2650,'-5.35'],[0.2087,'-11.14'],[0.2196,'-11.56']],
[[0.2911,'0:26.481'],[0.1635,'-3.10'],[0.2076,'-11.10'],[0.2191,'-11.54']],
[[0.2921,'0:26.574'],[0.2194,'-4.30'],[0.2090,'-11.15'],[0.2186,'-11.52']],
[[0.2932,'0:26.667'],[0.1198,'-2.22'],[0.2106,'-11.21'],[0.2183,'-11.51']],
[[0.2942,'0:26.760'],[0.2328,'-4.60'],[0.2130,'-11.31'],[0.2191,'-11.54']],
[[0.2952,'0:26.853'],[0.1329,'-2.48'],[0.2152,'-11.39'],[0.2198,'-11.57']],
[[0.2962,'0:26.946'],[0.2970,'-6.12'],[0.2131,'-11.31'],[0.2181,'-11.51']],
[[0.2972,'0:27.039'],[0.2490,'-4.97'],[0.2109,'-11.23'],[0.2165,'-11.44']],
[[0.2983,'0:27.132'],[0.0756,'-1.37'],[0.2062,'-11.04'],[0.2165,'-11.44']],
[[0.2993,'0:27.225'],[0.2107,'-4.11'],[0.2011,'-10.84'],[0.2167,'-11.45']],
[[0.3003,'0:27.318'],[0.1913,'-3.69'],[0.1979,'-10.72'],[0.2164,'-11.44']],
[[0.3013,'0:27.411'],[0.1540,'-2.91'],[0.1953,'-10.62'],[0.2159,'-11.42']],
[[0.3023,'0:27.504'],[0.2210,'-4.34'],[0.1941,'-10.57'],[0.2153,'-11.40']],
[[0.3034,'0:27.596'],[0.1520,'-2.86'],[0.1939,'-10.56'],[0.2145,'-11.37']],
[[0.3044,'0:27.689'],[0.0957,'-1.75'],[0.1960,'-10.64'],[0.2144,'-11.36']],
[[0.3054,'0:27.782'],[0.2411,'-4.79'],[0.2014,'-10.85'],[0.2151,'-11.39']],
[[0.3064,'0:27.875'],[0.2773,'-5.64'],[0.2088,'-11.14'],[0.2155,'-11.40']],
[[0.3075,'0:27.968'],[0.3201,'-6.70'],[0.2220,'-11.66'],[0.2148,'-11.38']],
[[0.3085,'0:28.061'],[0.2234,'-4.39'],[0.2335,'-12.11'],[0.2143,'-11.36']],
[[0.3095,'0:28.154'],[0.1910,'-3.68'],[0.2295,'-11.95'],[0.2148,'-11.38']],
[[0.3105,'0:28.247'],[0.2772,'-5.64'],[0.2255,'-11.79'],[0.2154,'-11.40']],
[[0.3115,'0:28.340'],[0.1344,'-2.51'],[0.2179,'-11.50'],[0.2152,'-11.39']],
[[0.3126,'0:28.433'],[0.2360,'-4.68'],[0.2101,'-11.19'],[0.2151,'-11.39']],
[[0.3136,'0:28.526'],[0.2457,'-4.90'],[0.2085,'-11.13'],[0.2153,'-11.40']],
[[0.3146,'0:28.619'],[0.1101,'-2.03'],[0.2084,'-11.13'],[0.2156,'-11.41']],
[[0.3156,'0:28.711'],[0.1402,'-2.62'],[0.2096,'-11.18'],[0.2160,'-11.42']],
[[0.3166,'0:28.804'],[0.1706,'-3.25'],[0.2116,'-11.25'],[0.2166,'-11.45']],
[[0.3177,'0:28.897'],[0.2975,'-6.13'],[0.2132,'-11.31'],[0.2164,'-11.44']],
[[0.3187,'0:28.990'],[0.2970,'-6.12'],[0.2144,'-11.36'],[0.2156,'-11.41']],
[[0.3197,'0:29.083'],[0.1216,'-2.25'],[0.2134,'-11.32'],[0.2151,'-11.39']],
[[0.3207,'0:29.176'],[0.2472,'-4.93'],[0.2076,'-11.10'],[0.2153,'-11.40']],
[[0.3218,'0:29.269'],[0.2161,'-4.23'],[0.2020,'-10.88'],[0.2152,'-11.39']],
[[0.3228,'0:29.362'],[0.1471,'-2.76'],[0.1972,'-10.69'],[0.2140,'-11.35']],
[[0.3238,'0:29.455'],[0.2482,'-4.95'],[0.1925,'-10.51'],[0.2128,'-11.30']],
[[0.3248,'0:29.548'],[0.0596,'-1.07'],[0.1950,'-10.60'],[0.2134,'-11.32']],
[[0.3258,'0:29.641'],[0.1073,'-1.97'],[0.1974,'-10.70'],[0.2140,'-11.35']],
[[0.3269,'0:29.734'],[0.2854,'-5.84'],[0.2043,'-10.97'],[0.2145,'-11.36']],
[[0.3279,'0:29.827'],[0.3164,'-6.61'],[0.2120,'-11.27'],[0.2149,'-11.38']],
[[0.3289,'0:29.919'],[0.1725,'-3.29'],[0.2138,'-11.34'],[0.2139,'-11.34']],
[[0.3299,'0:30.012'],[0.2664,'-5.38'],[0.2130,'-11.31'],[0.2124,'-11.28']],
[[0.3309,'0:30.105'],[0.0898,'-1.63'],[0.2109,'-11.22'],[0.2125,'-11.29']],
[[0.3320,'0:30.198'],[0.2854,'-5.84'],[0.2076,'-11.10'],[0.2141,'-11.35']],
[[0.3330,'0:30.291'],[0.1797,'-3.44'],[0.2069,'-11.07'],[0.2150,'-11.38']],
[[0.3340,'0:30.384'],[0.2864,'-5.86'],[0.2101,'-11.19'],[0.2149,'-11.38']],
[[0.3350,'0:30.477'],[0.2592,'-5.21'],[0.2093,'-11.16'],[0.2146,'-11.37']],
[[0.3361,'0:30.570'],[0.1296,'-2.41'],[0.1951,'-10.61'],[0.2138,'-11.34']],
[[0.3371,'0:30.663'],[0.0469,'-0.83'],[0.1815,'-10.08'],[0.2130,'-11.31']],
[[0.3381,'0:30.756'],[0.1776,'-3.40'],[0.1757,'-9.85'],[0.2107,'-11.22']],
[[0.3391,'0:30.849'],[0.2062,'-4.01'],[0.1699,'-9.63'],[0.2084,'-11.13']],
[[0.3401,'0:30.942'],[0.0771,'-1.39'],[0.1686,'-9.58'],[0.2067,'-11.06']],
[[0.3412,'0:31.034'],[0.0762,'-1.38'],[0.1678,'-9.54'],[0.2050,'-10.99']],
[[0.3422,'0:31.127'],[0.1905,'-3.67'],[0.1672,'-9.52'],[0.2033,'-10.93']],
[[0.3432,'0:31.220'],[0.1707,'-3.25'],[0.1667,'-9.50'],[0.2017,'-10.86']],
[[0.3442,'0:31.313'],[0.1118,'-2.06'],[0.1660,'-9.47'],[0.1998,'-10.79']],
[[0.3453,'0:31.406'],[0.1933,'-3.73'],[0.1651,'-9.44'],[0.1979,'-10.72']],
[[0.3463,'0:31.499'],[0.0636,'-1.14'],[0.1642,'-9.41'],[0.1962,'-10.65']],
[[0.3473,'0:31.592'],[0.1378,'-2.57'],[0.1634,'-9.37'],[0.1950,'-10.61']],
[[0.3483,'0:31.685'],[0.1139,'-2.10'],[0.1630,'-9.36'],[0.1935,'-10.55']],
[[0.3493,'0:31.778'],[0.1305,'-2.43'],[0.1637,'-9.39'],[0.1912,'-10.46']],
[[0.3504,'0:31.871'],[0.1298,'-2.42'],[0.1647,'-9.42'],[0.1893,'-10.38']],
[[0.3514,'0:31.964'],[0.1601,'-3.03'],[0.1670,'-9.51'],[0.1891,'-10.38']],
[[0.3524,'0:32.057'],[0.0882,'-1.60'],[0.1693,'-9.60'],[0.1890,'-10.37']],
[[0.3534,'0:32.149'],[0.1908,'-3.68'],[0.1707,'-9.66'],[0.1881,'-10.34']],
[[0.3544,'0:32.242'],[0.1037,'-1.90'],[0.1722,'-9.71'],[0.1872,'-10.30']],
[[0.3555,'0:32.335'],[0.1932,'-3.73'],[0.1758,'-9.86'],[0.1867,'-10.28']],
[[0.3565,'0:32.428'],[0.1915,'-3.69'],[0.1799,'-10.02'],[0.1863,'-10.27']],
[[0.3575,'0:32.521'],[0.0965,'-1.76'],[0.1831,'-10.14'],[0.1859,'-10.25']],
[[0.3585,'0:32.614'],[0.1534,'-2.89'],[0.1859,'-10.25'],[0.1855,'-10.23']],
[[0.3596,'0:32.707'],[0.1674,'-3.18'],[0.1884,'-10.35'],[0.1848,'-10.21']],
[[0.3606,'0:32.800'],[0.2025,'-3.93'],[0.1908,'-10.44'],[0.1840,'-10.17']],
[[0.3616,'0:32.893'],[0.1631,'-3.09'],[0.1936,'-10.55'],[0.1836,'-10.16']],
[[0.3626,'0:32.986'],[0.1201,'-2.22'],[0.1971,'-10.69'],[0.1843,'-10.19']],
[[0.3636,'0:33.079'],[0.1834,'-3.52'],[0.1997,'-10.79'],[0.1846,'-10.20']],
[[0.3647,'0:33.172'],[0.2189,'-4.29'],[0.1985,'-10.74'],[0.1834,'-10.15']],
[[0.3657,'0:33.265'],[0.1831,'-3.51'],[0.1970,'-10.68'],[0.1822,'-10.11']],
[[0.3667,'0:33.357'],[0.1503,'-2.83'],[0.1846,'-10.20'],[0.1807,'-10.05']],
[[0.3677,'0:33.450'],[0.0347,'-0.61'],[0.1723,'-9.72'],[0.1793,'-9.99']],
[[0.3687,'0:33.543'],[0.1552,'-2.93'],[0.1711,'-9.67'],[0.1796,'-10.00']],
[[0.3698,'0:33.636'],[0.1821,'-3.49'],[0.1714,'-9.68'],[0.1800,'-10.02']],
[[0.3708,'0:33.729'],[0.1486,'-2.79'],[0.1731,'-9.75'],[0.1799,'-10.02']],
[[0.3718,'0:33.822'],[0.1750,'-3.34'],[0.1753,'-9.84'],[0.1796,'-10.01']],
[[0.3728,'0:33.915'],[0.0362,'-0.64'],[0.1755,'-9.85'],[0.1799,'-10.02']],
[[0.3739,'0:34.008'],[0.1680,'-3.20'],[0.1742,'-9.79'],[0.1805,'-10.04']],
[[0.3749,'0:34.101'],[0.2096,'-4.09'],[0.1713,'-9.68'],[0.1805,'-10.04']],
[[0.3759,'0:34.194'],[0.0857,'-1.56'],[0.1663,'-9.49'],[0.1797,'-10.01']],
[[0.3769,'0:34.287'],[0.1042,'-1.91'],[0.1625,'-9.34'],[0.1791,'-9.98']],
[[0.3779,'0:34.380'],[0.0921,'-1.68'],[0.1625,'-9.34'],[0.1791,'-9.99']],
[[0.3790,'0:34.472'],[0.1042,'-1.91'],[0.1629,'-9.35'],[0.1793,'-9.99']],
[[0.3800,'0:34.565'],[0.1228,'-2.28'],[0.1665,'-9.49'],[0.1807,'-10.05']],
[[0.3810,'0:34.658'],[0.1940,'-3.75'],[0.1702,'-9.64'],[0.1820,'-10.10']],
[[0.3820,'0:34.751'],[0.1245,'-2.31'],[0.1761,'-9.87'],[0.1822,'-10.11']],
[[0.3830,'0:34.844'],[0.1504,'-2.83'],[0.1821,'-10.10'],[0.1824,'-10.11']],
[[0.3841,'0:34.937'],[0.0823,'-1.49'],[0.1810,'-10.06'],[0.1827,'-10.13']],
[[0.3851,'0:35.030'],[0.1790,'-3.43'],[0.1780,'-9.94'],[0.1831,'-10.14']],
[[0.3861,'0:35.123'],[0.0895,'-1.63'],[0.1768,'-9.90'],[0.1833,'-10.15']],
[[0.3871,'0:35.216'],[0.1241,'-2.30'],[0.1766,'-9.89'],[0.1834,'-10.15']],
[[0.3882,'0:35.309'],[0.1704,'-3.25'],[0.1771,'-9.91'],[0.1834,'-10.15']],
[[0.3892,'0:35.402'],[0.0834,'-1.51'],[0.1784,'-9.96'],[0.1831,'-10.14']],
[[0.3902,'0:35.495'],[0.1777,'-3.40'],[0.1804,'-10.03'],[0.1831,'-10.14']],
[[0.3912,'0:35.587'],[0.1696,'-3.23'],[0.1835,'-10.16'],[0.1835,'-10.16']],
[[0.3922,'0:35.680'],[0.1758,'-3.36'],[0.1865,'-10.27'],[0.1837,'-10.16']],
[[0.3933,'0:35.773'],[0.1063,'-1.95'],[0.1884,'-10.35'],[0.1830,'-10.14']],
[[0.3943,'0:35.866'],[0.1143,'-2.11'],[0.1903,'-10.42'],[0.1823,'-10.11']],
[[0.3953,'0:35.959'],[0.1532,'-2.89'],[0.1844,'-10.19'],[0.1813,'-10.07']],
[[0.3963,'0:36.052'],[0.2361,'-4.68'],[0.1786,'-9.96'],[0.1803,'-10.03']],
[[0.3973,'0:36.145'],[0.0423,'-0.75'],[0.1740,'-9.79'],[0.1796,'-10.01']],
[[0.3984,'0:36.238'],[0.1070,'-1.97'],[0.1696,'-9.62'],[0.1790,'-9.98']],
[[0.3994,'0:36.331'],[0.1096,'-2.02'],[0.1689,'-9.59'],[0.1794,'-9.99']],
[[0.4004,'0:36.424'],[0.2074,'-4.04'],[0.1699,'-9.62'],[0.1801,'-10.02']],
[[0.4014,'0:36.517'],[0.1616,'-3.06'],[0.1722,'-9.72'],[0.1805,'-10.04']],
[[0.4025,'0:36.610'],[0.1964,'-3.80'],[0.1759,'-9.86'],[0.1806,'-10.04']],
[[0.4035,'0:36.703'],[0.1996,'-3.87'],[0.1793,'-9.99'],[0.1807,'-10.05']],
[[0.4045,'0:36.795'],[0.2205,'-4.33'],[0.1825,'-10.12'],[0.1806,'-10.04']],
[[0.4055,'0:36.888'],[0.0598,'-1.07'],[0.1849,'-10.21'],[0.1807,'-10.05']],
[[0.4065,'0:36.981'],[0.1303,'-2.42'],[0.1847,'-10.20'],[0.1814,'-10.07']],
[[0.4076,'0:37.074'],[0.0969,'-1.77'],[0.1837,'-10.17'],[0.1820,'-10.10']],
[[0.4086,'0:37.167'],[0.1527,'-2.88'],[0.1725,'-9.73'],[0.1819,'-10.09']],
[[0.4096,'0:37.260'],[0.1293,'-2.40'],[0.1613,'-9.29'],[0.1817,'-10.09']],
[[0.4106,'0:37.353'],[0.0319,'-0.56'],[0.1598,'-9.23'],[0.1817,'-10.09']],
[[0.4116,'0:37.446'],[0.1156,'-2.13'],[0.1593,'-9.21'],[0.1817,'-10.09']],
[[0.4127,'0:37.539'],[0.1385,'-2.59'],[0.1638,'-9.39'],[0.1813,'-10.07']],
[[0.4137,'0:37.632'],[0.2143,'-4.19'],[0.1699,'-9.63'],[0.1809,'-10.05']],
[[0.4147,'0:37.725'],[0.1325,'-2.47'],[0.1763,'-9.87'],[0.1808,'-10.05']],
[[0.4157,'0:37.818'],[0.0664,'-1.19'],[0.1828,'-10.13'],[0.1809,'-10.06']],
[[0.4168,'0:37.910'],[0.2394,'-4.75'],[0.1859,'-10.25'],[0.1814,'-10.08']],
[[0.4178,'0:38.003'],[0.1592,'-3.01'],[0.1845,'-10.20'],[0.1824,'-10.11']],
[[0.4188,'0:38.096'],[0.1018,'-1.86'],[0.1842,'-10.18'],[0.1830,'-10.14']],
[[0.4198,'0:38.189'],[0.1873,'-3.60'],[0.1864,'-10.27'],[0.1830,'-10.14']],
[[0.4208,'0:38.282'],[0.0658,'-1.18'],[0.1885,'-10.35'],[0.1831,'-10.14']],
[[0.4219,'0:38.375'],[0.2336,'-4.62'],[0.1901,'-10.41'],[0.1839,'-10.17']],
[[0.4229,'0:38.468'],[0.1024,'-1.88'],[0.1917,'-10.47'],[0.1846,'-10.20']],
[[0.4239,'0:38.561'],[0.1021,'-1.87'],[0.1879,'-10.33'],[0.1840,'-10.18']],
[[0.4249,'0:38.654'],[0.1092,'-2.01'],[0.1840,'-10.18'],[0.1834,'-10.15']],
[[0.4259,'0:38.747'],[0.1365,'-2.55'],[0.1845,'-10.20'],[0.1838,'-10.17']],
[[0.4270,'0:38.840'],[0.0722,'-1.30'],[0.1861,'-10.26'],[0.1845,'-10.20']],
[[0.4280,'0:38.933'],[0.1191,'-2.20'],[0.1866,'-10.28'],[0.1846,'-10.20']],
[[0.4290,'0:39.025'],[0.0925,'-1.69'],[0.1866,'-10.28'],[0.1845,'-10.20']],
[[0.4300,'0:39.118'],[0.1446,'-2.71'],[0.1834,'-10.15'],[0.1845,'-10.19']],
[[0.4311,'0:39.211'],[0.1915,'-3.69'],[0.1772,'-9.91'],[0.1845,'-10.20']],
[[0.4321,'0:39.304'],[0.0729,'-1.31'],[0.1725,'-9.73'],[0.1846,'-10.20']],
[[0.4331,'0:39.397'],[0.1596,'-3.02'],[0.1707,'-9.66'],[0.1846,'-10.20']],
[[0.4341,'0:39.490'],[0.1586,'-3.00'],[0.1699,'-9.63'],[0.1845,'-10.20']],
[[0.4351,'0:39.583'],[0.2054,'-3.99'],[0.1733,'-9.76'],[0.1842,'-10.18']],
[[0.4362,'0:39.676'],[0.0945,'-1.72'],[0.1767,'-9.89'],[0.1838,'-10.17']],
[[0.4372,'0:39.769'],[0.0838,'-1.52'],[0.1801,'-10.02'],[0.1838,'-10.17']],
[[0.4382,'0:39.862'],[0.1903,'-3.67'],[0.1835,'-10.16'],[0.1838,'-10.17']],
[[0.4392,'0:39.955'],[0.1309,'-2.44'],[0.1821,'-10.10'],[0.1836,'-10.16']],
[[0.4402,'0:40.048'],[0.0897,'-1.63'],[0.1801,'-10.02'],[0.1834,'-10.15']],
[[0.4413,'0:40.141'],[0.1982,'-3.84'],[0.1779,'-9.94'],[0.1832,'-10.15']],
[[0.4423,'0:40.233'],[0.1033,'-1.89'],[0.1757,'-9.85'],[0.1830,'-10.14']],
[[0.4433,'0:40.326'],[0.1023,'-1.87'],[0.1771,'-9.91'],[0.1841,'-10.18']],
[[0.4443,'0:40.419'],[0.2205,'-4.33'],[0.1811,'-10.06'],[0.1862,'-10.26']],
[[0.4454,'0:40.512'],[0.1730,'-3.30'],[0.1853,'-10.23'],[0.1872,'-10.30']],
[[0.4464,'0:40.605'],[0.1478,'-2.78'],[0.1896,'-10.39'],[0.1867,'-10.28']],
[[0.4474,'0:40.698'],[0.0752,'-1.36'],[0.1924,'-10.51'],[0.1865,'-10.27']],
[[0.4484,'0:40.791'],[0.2357,'-4.67'],[0.1911,'-10.45'],[0.1871,'-10.30']],
[[0.4494,'0:40.884'],[0.1226,'-2.27'],[0.1895,'-10.39'],[0.1876,'-10.32']],
[[0.4505,'0:40.977'],[0.0320,'-0.57'],[0.1851,'-10.22'],[0.1868,'-10.29']],
[[0.4515,'0:41.070'],[0.1852,'-3.56'],[0.1807,'-10.05'],[0.1861,'-10.26']],
[[0.4525,'0:41.163'],[0.0980,'-1.79'],[0.1794,'-10.00'],[0.1861,'-10.26']],
[[0.4535,'0:41.256'],[0.1056,'-1.94'],[0.1783,'-9.95'],[0.1862,'-10.26']],
[[0.4545,'0:41.348'],[0.1990,'-3.86'],[0.1828,'-10.13'],[0.1867,'-10.28']],
[[0.4556,'0:41.441'],[0.2092,'-4.08'],[0.1888,'-10.36'],[0.1872,'-10.30']],
[[0.4566,'0:41.534'],[0.2312,'-4.57'],[0.1942,'-10.57'],[0.1875,'-10.31']],
[[0.4576,'0:41.627'],[0.1507,'-2.84'],[0.1991,'-10.76'],[0.1874,'-10.31']],
[[0.4586,'0:41.720'],[0.0692,'-1.25'],[0.2010,'-10.84'],[0.1878,'-10.32']],
[[0.4597,'0:41.813'],[0.1929,'-3.72'],[0.1996,'-10.79'],[0.1885,'-10.35']],
[[0.4607,'0:41.906'],[0.0815,'-1.48'],[0.1970,'-10.68'],[0.1889,'-10.37']],
[[0.4617,'0:41.999'],[0.1101,'-2.03'],[0.1916,'-10.47'],[0.1884,'-10.35']],
[[0.4627,'0:42.092'],[0.1745,'-3.33'],[0.1866,'-10.28'],[0.1882,'-10.34']],
[[0.4637,'0:42.185'],[0.0691,'-1.24'],[0.1837,'-10.16'],[0.1889,'-10.37']],
[[0.4648,'0:42.278'],[0.0843,'-1.53'],[0.1808,'-10.05'],[0.1897,'-10.40']],
[[0.4658,'0:42.371'],[0.1768,'-3.38'],[0.1829,'-10.13'],[0.1907,'-10.44']],
[[0.4668,'0:42.463'],[0.2150,'-4.20'],[0.1851,'-10.22'],[0.1918,'-10.48']],
[[0.4678,'0:42.556'],[0.1250,'-2.32'],[0.1879,'-10.33'],[0.1917,'-10.48']],
[[0.4688,'0:42.649'],[0.0180,'-0.32'],[0.1907,'-10.44'],[0.1914,'-10.46']],
[[0.4699,'0:42.742'],[0.1827,'-3.50'],[0.1909,'-10.44'],[0.1917,'-10.48']],
[[0.4709,'0:42.835'],[0.1256,'-2.33'],[0.1898,'-10.40'],[0.1922,'-10.50']],
[[0.4719,'0:42.928'],[0.1211,'-2.24'],[0.1917,'-10.47'],[0.1928,'-10.52']],
[[0.4729,'0:43.021'],[0.2171,'-4.25'],[0.1961,'-10.65'],[0.1934,'-10.54']],
[[0.4740,'0:43.114'],[0.1201,'-2.22'],[0.1997,'-10.79'],[0.1942,'-10.57']],
[[0.4750,'0:43.207'],[0.2058,'-4.00'],[0.2017,'-10.87'],[0.1952,'-10.61']],
[[0.4760,'0:43.300'],[0.1852,'-3.56'],[0.2018,'-10.87'],[0.1958,'-10.64']],
[[0.4770,'0:43.393'],[0.1412,'-2.64'],[0.1950,'-10.60'],[0.1950,'-10.60']],
[[0.4780,'0:43.486'],[0.1644,'-3.12'],[0.1886,'-10.35'],[0.1942,'-10.58']],
[[0.4791,'0:43.579'],[0.1714,'-3.27'],[0.1880,'-10.33'],[0.1942,'-10.58']],
[[0.4801,'0:43.671'],[0.0160,'-0.28'],[0.1875,'-10.31'],[0.1942,'-10.57']],
[[0.4811,'0:43.764'],[0.1184,'-2.19'],[0.1854,'-10.23'],[0.1942,'-10.57']],
[[0.4821,'0:43.857'],[0.0778,'-1.41'],[0.1831,'-10.14'],[0.1942,'-10.57']],
[[0.4831,'0:43.950'],[0.1660,'-3.15'],[0.1836,'-10.16'],[0.1944,'-10.58']],
[[0.4842,'0:44.043'],[0.2103,'-4.10'],[0.1849,'-10.21'],[0.1946,'-10.59']],
[[0.4852,'0:44.136'],[0.0748,'-1.35'],[0.1872,'-10.30'],[0.1952,'-10.61']],
[[0.4862,'0:44.229'],[0.0568,'-1.02'],[0.1901,'-10.41'],[0.1961,'-10.65']],
[[0.4872,'0:44.322'],[0.1480,'-2.78'],[0.1927,'-10.51'],[0.1963,'-10.66']],
[[0.4883,'0:44.415'],[0.2267,'-4.47'],[0.1949,'-10.60'],[0.1958,'-10.64']],
[[0.4893,'0:44.508'],[0.2109,'-4.12'],[0.1972,'-10.69'],[0.1955,'-10.63']],
[[0.4903,'0:44.601'],[0.0720,'-1.30'],[0.2001,'-10.80'],[0.1959,'-10.64']],
[[0.4913,'0:44.694'],[0.1754,'-3.35'],[0.2020,'-10.88'],[0.1961,'-10.65']],
[[0.4923,'0:44.786'],[0.1267,'-2.35'],[0.1974,'-10.70'],[0.1959,'-10.64']],
[[0.4934,'0:44.879'],[0.0939,'-1.71'],[0.1929,'-10.52'],[0.1956,'-10.63']],
[[0.4944,'0:44.972'],[0.1415,'-2.65'],[0.1903,'-10.42'],[0.1952,'-10.61']],
[[0.4954,'0:45.065'],[0.0371,'-0.66'],[0.1877,'-10.32'],[0.1948,'-10.60']],
[[0.4964,'0:45.158'],[0.1692,'-3.22'],[0.1876,'-10.32'],[0.1955,'-10.62']],
[[0.4974,'0:45.251'],[0.1900,'-3.66'],[0.1881,'-10.33'],[0.1964,'-10.66']],
[[0.4985,'0:45.344'],[0.1946,'-3.76'],[0.1874,'-10.31'],[0.1960,'-10.64']],
[[0.4995,'0:45.437'],[0.2476,'-4.94'],[0.1863,'-10.27'],[0.1947,'-10.59']],
[[0.5005,'0:45.530'],[0.0583,'-1.04'],[0.1868,'-10.28'],[0.1947,'-10.59']],
[[0.5015,'0:45.623'],[0.1648,'-3.13'],[0.1889,'-10.37'],[0.1957,'-10.63']],
[[0.5026,'0:45.716'],[0.2166,'-4.24'],[0.1909,'-10.45'],[0.1962,'-10.65']],
[[0.5036,'0:45.809'],[0.1224,'-2.27'],[0.1925,'-10.51'],[0.1956,'-10.63']],
[[0.5046,'0:45.902'],[0.1496,'-2.81'],[0.1939,'-10.56'],[0.1950,'-10.61']],
[[0.5056,'0:45.994'],[0.0621,'-1.11'],[0.1941,'-10.57'],[0.1949,'-10.60']],
[[0.5066,'0:46.087'],[0.1248,'-2.32'],[0.1943,'-10.58'],[0.1949,'-10.60']],
[[0.5077,'0:46.180'],[0.1495,'-2.81'],[0.1944,'-10.58'],[0.1952,'-10.61']],
[[0.5087,'0:46.273'],[0.1971,'-3.81'],[0.1945,'-10.59'],[0.1956,'-10.63']],
[[0.5097,'0:46.366'],[0.0659,'-1.18'],[0.1926,'-10.51'],[0.1951,'-10.61']],
[[0.5107,'0:46.459'],[0.1439,'-2.70'],[0.1904,'-10.43'],[0.1944,'-10.58']],
[[0.5117,'0:46.552'],[0.0696,'-1.25'],[0.1868,'-10.29'],[0.1946,'-10.59']],
[[0.5128,'0:46.645'],[0.0814,'-1.47'],[0.1826,'-10.12'],[0.1950,'-10.61']],
[[0.5138,'0:46.738'],[0.0558,'-1.00'],[0.1802,'-10.03'],[0.1946,'-10.59']],
[[0.5148,'0:46.831'],[0.1110,'-2.04'],[0.1791,'-9.98'],[0.1937,'-10.55']],
[[0.5158,'0:46.924'],[0.1286,'-2.39'],[0.1790,'-9.98'],[0.1934,'-10.54']],
[[0.5169,'0:47.017'],[0.0629,'-1.13'],[0.1803,'-10.03'],[0.1942,'-10.57']],
[[0.5179,'0:47.109'],[0.2928,'-6.02'],[0.1861,'-10.26'],[0.1953,'-10.62']],
[[0.5189,'0:47.202'],[0.3649,'-7.89'],[0.2057,'-11.02'],[0.1973,'-10.70']],
[[0.5199,'0:47.295'],[0.3798,'-8.30'],[0.2269,'-11.85'],[0.1993,'-10.77']],
[[0.5209,'0:47.388'],[0.3848,'-8.44'],[0.2655,'-13.35'],[0.2012,'-10.85']],
[[0.5220,'0:47.481'],[0.3732,'-8.12'],[0.3041,'-14.86'],[0.2032,'-10.92']],
[[0.5230,'0:47.574'],[0.4138,'-9.28'],[0.3183,'-15.41'],[0.2059,'-11.03']],
[[0.5240,'0:47.667'],[0.4373,'-9.99'],[0.3309,'-15.90'],[0.2087,'-11.14']],
[[0.5250,'0:47.760'],[0.3543,'-7.60'],[0.3352,'-16.07'],[0.2114,'-11.24']],
[[0.5260,'0:47.853'],[0.4149,'-9.31'],[0.3371,'-16.15'],[0.2140,'-11.35']],
[[0.5271,'0:47.946'],[0.3801,'-8.31'],[0.3398,'-16.25'],[0.2173,'-11.48']],
[[0.5281,'0:48.039'],[0.4238,'-9.58'],[0.3430,'-16.38'],[0.2212,'-11.63']],
[[0.5291,'0:48.132'],[0.5269,'-13.00'],[0.3516,'-16.71'],[0.2249,'-11.77']],
[[0.5301,'0:48.224'],[0.4373,'-9.99'],[0.3663,'-17.28'],[0.2287,'-11.92']],
[[0.5312,'0:48.317'],[0.4540,'-10.51'],[0.3783,'-17.75'],[0.2323,'-12.06']],
[[0.5322,'0:48.410'],[0.4924,'-11.78'],[0.3845,'-18.00'],[0.2357,'-12.19']],
[[0.5332,'0:48.503'],[0.5299,'-13.11'],[0.3896,'-18.19'],[0.2395,'-12.34']],
[[0.5342,'0:48.596'],[0.5084,'-12.34'],[0.3885,'-18.15'],[0.2455,'-12.57']],
[[0.5352,'0:48.689'],[0.4100,'-9.17'],[0.3874,'-18.11'],[0.2515,'-12.81']],
[[0.5363,'0:48.782'],[0.4026,'-8.95'],[0.3815,'-17.88'],[0.2548,'-12.94']],
[[0.5373,'0:48.875'],[0.5076,'-12.31'],[0.3756,'-17.65'],[0.2581,'-13.07']],
[[0.5383,'0:48.968'],[0.5103,'-12.40'],[0.3739,'-17.58'],[0.2643,'-13.31']],
[[0.5393,'0:49.061'],[0.5498,'-13.86'],[0.3730,'-17.55'],[0.2711,'-13.57']],
[[0.5403,'0:49.154'],[0.5808,'-15.10'],[0.3866,'-18.08'],[0.2768,'-13.80']],
[[0.5414,'0:49.247'],[0.6189,'-16.76'],[0.4069,'-18.87'],[0.2821,'-14.00']],
[[0.5424,'0:49.340'],[0.5270,'-13.01'],[0.4156,'-19.21'],[0.2880,'-14.23']],
[[0.5434,'0:49.432'],[0.4632,'-10.81'],[0.4140,'-19.15'],[0.2946,'-14.49']],
[[0.5444,'0:49.525'],[0.5464,'-13.73'],[0.4060,'-18.83'],[0.3021,'-14.78']],
[[0.5455,'0:49.618'],[0.5531,'-13.99'],[0.3872,'-18.10'],[0.3108,'-15.12']],
[[0.5465,'0:49.711'],[0.3874,'-8.51'],[0.3714,'-17.49'],[0.3202,'-15.49']],
[[0.5475,'0:49.804'],[0.4556,'-10.56'],[0.3665,'-17.29'],[0.3317,'-15.94']],
[[0.5485,'0:49.897'],[0.4341,'-9.89'],[0.3620,'-17.12'],[0.3433,'-16.39']],
[[0.5495,'0:49.990'],[0.4841,'-11.50'],[0.3632,'-17.16'],[0.3560,'-16.88']],
[[0.5506,'0:50.083'],[0.5771,'-14.95'],[0.3643,'-17.21'],[0.3687,'-17.38']],
[[0.5516,'0:50.176'],[0.5022,'-12.12'],[0.3810,'-17.86'],[0.3740,'-17.59']],
[[0.5526,'0:50.269'],[0.5166,'-12.63'],[0.3994,'-18.58'],[0.3785,'-17.76']],
[[0.5536,'0:50.362'],[0.4812,'-11.40'],[0.4108,'-19.02'],[0.3824,'-17.91']],
[[0.5546,'0:50.455'],[0.5047,'-12.21'],[0.4197,'-19.37'],[0.3861,'-18.06']],
[[0.5557,'0:50.547'],[0.5140,'-12.53'],[0.4197,'-19.37'],[0.3885,'-18.15']],
[[0.5567,'0:50.640'],[0.4269,'-9.67'],[0.4136,'-19.13'],[0.3901,'-18.22']],
[[0.5577,'0:50.733'],[0.4975,'-11.96'],[0.4046,'-18.78'],[0.3924,'-18.30']],
[[0.5587,'0:50.826'],[0.5533,'-14.00'],[0.3921,'-18.29'],[0.3953,'-18.42']],
[[0.5598,'0:50.919'],[0.4945,'-11.85'],[0.3850,'-18.02'],[0.3978,'-18.52']],
[[0.5608,'0:51.012'],[0.5564,'-14.12'],[0.3921,'-18.29'],[0.3991,'-18.57']],
[[0.5618,'0:51.105'],[0.5783,'-15.00'],[0.3992,'-18.57'],[0.4004,'-18.62']],
[[0.5628,'0:51.198'],[0.5952,'-15.71'],[0.4060,'-18.84'],[0.4015,'-18.66']],
[[0.5638,'0:51.291'],[0.5218,'-12.82'],[0.4129,'-19.10'],[0.4026,'-18.70']],
[[0.5649,'0:51.384'],[0.4527,'-10.47'],[0.4001,'-18.61'],[0.4006,'-18.62']],
[[0.5659,'0:51.477'],[0.5218,'-12.82'],[0.3867,'-18.08'],[0.3985,'-18.54']],
[[0.5669,'0:51.570'],[0.4890,'-11.66'],[0.3756,'-17.65'],[0.3977,'-18.51']],
[[0.5679,'0:51.662'],[0.3754,'-8.18'],[0.3651,'-17.24'],[0.3973,'-18.50']],
[[0.5689,'0:51.755'],[0.4473,'-10.30'],[0.3576,'-16.95'],[0.3969,'-18.48']],
[[0.5700,'0:51.848'],[0.4851,'-11.53'],[0.3518,'-16.72'],[0.3965,'-18.46']],
[[0.5710,'0:51.941'],[0.5180,'-12.68'],[0.3546,'-16.83'],[0.3955,'-18.42']],
[[0.5720,'0:52.034'],[0.5379,'-13.41'],[0.3662,'-17.28'],[0.3939,'-18.36']],
[[0.5730,'0:52.127'],[0.4742,'-11.17'],[0.3751,'-17.63'],[0.3928,'-18.32']],
[[0.5741,'0:52.220'],[0.4672,'-10.94'],[0.3788,'-17.77'],[0.3928,'-18.32']],
[[0.5751,'0:52.313'],[0.4872,'-11.60'],[0.3832,'-17.94'],[0.3927,'-18.31']],
[[0.5761,'0:52.406'],[0.5649,'-14.46'],[0.3903,'-18.22'],[0.3918,'-18.28']],
[[0.5771,'0:52.499'],[0.4795,'-11.34'],[0.3969,'-18.48'],[0.3910,'-18.25']],
[[0.5781,'0:52.592'],[0.3876,'-8.52'],[0.3869,'-18.09'],[0.3919,'-18.28']],
[[0.5792,'0:52.685'],[0.4690,'-11.00'],[0.3769,'-17.70'],[0.3928,'-18.32']],
[[0.5802,'0:52.778'],[0.4266,'-9.66'],[0.3735,'-17.57'],[0.3939,'-18.36']],
[[0.5812,'0:52.870'],[0.4170,'-9.37'],[0.3710,'-17.47'],[0.3950,'-18.40']],
[[0.5822,'0:52.963'],[0.5572,'-14.15'],[0.3783,'-17.75'],[0.3951,'-18.41']],
[[0.5832,'0:53.056'],[0.5903,'-15.50'],[0.3896,'-18.19'],[0.3948,'-18.40']],
[[0.5843,'0:53.149'],[0.5024,'-12.12'],[0.3931,'-18.33'],[0.3941,'-18.37']],
[[0.5853,'0:53.242'],[0.3859,'-8.47'],[0.3903,'-18.22'],[0.3931,'-18.33']],
[[0.5863,'0:53.335'],[0.4504,'-10.40'],[0.3843,'-17.99'],[0.3912,'-18.26']],
[[0.5873,'0:53.428'],[0.5085,'-12.34'],[0.3734,'-17.56'],[0.3880,'-18.13']],
[[0.5884,'0:53.521'],[0.4088,'-9.13'],[0.3645,'-17.22'],[0.3855,'-18.03']],
[[0.5894,'0:53.614'],[0.4057,'-9.04'],[0.3618,'-17.11'],[0.3854,'-18.03']],
[[0.5904,'0:53.707'],[0.4828,'-11.45'],[0.3592,'-17.01'],[0.3853,'-18.03']],
[[0.5914,'0:53.800'],[0.4352,'-9.92'],[0.3576,'-16.95'],[0.3854,'-18.03']],
[[0.5924,'0:53.893'],[0.5445,'-13.66'],[0.3560,'-16.88'],[0.3856,'-18.04']],
[[0.5935,'0:53.985'],[0.4716,'-11.08'],[0.3740,'-17.58'],[0.3850,'-18.02']],
[[0.5945,'0:54.078'],[0.5184,'-12.69'],[0.3934,'-18.34'],[0.3844,'-17.99']],
[[0.5955,'0:54.171'],[0.5242,'-12.90'],[0.4020,'-18.68'],[0.3845,'-18.00']],
[[0.5965,'0:54.264'],[0.5299,'-13.11'],[0.4075,'-18.89'],[0.3848,'-18.01']],
[[0.5975,'0:54.357'],[0.4757,'-11.22'],[0.4098,'-18.98'],[0.3851,'-18.02']],
[[0.5986,'0:54.450'],[0.5528,'-13.98'],[0.4100,'-18.99'],[0.3853,'-18.03']],
[[0.5996,'0:54.543'],[0.4394,'-10.05'],[0.4040,'-18.76'],[0.3863,'-18.07']],
[[0.6006,'0:54.636'],[0.5411,'-13.53'],[0.3907,'-18.24'],[0.3881,'-18.14']],
[[0.6016,'0:54.729'],[0.4422,'-10.14'],[0.3807,'-17.85'],[0.3896,'-18.19']],
[[0.6027,'0:54.822'],[0.4195,'-9.45'],[0.3783,'-17.75'],[0.3902,'-18.22']],
[[0.6037,'0:54.915'],[0.4911,'-11.73'],[0.3765,'-17.68'],[0.3908,'-18.24']],
[[0.6047,'0:55.008'],[0.4961,'-11.91'],[0.3783,'-17.76'],[0.3909,'-18.25']],
[[0.6057,'0:55.100'],[0.4647,'-10.86'],[0.3802,'-17.83'],[0.3911,'-18.25']],
[[0.6067,'0:55.193'],[0.4564,'-10.59'],[0.3786,'-17.76'],[0.3895,'-18.19']],
[[0.6078,'0:55.286'],[0.4329,'-9.85'],[0.3769,'-17.70'],[0.3879,'-18.13']],
[[0.6088,'0:55.379'],[0.4464,'-10.27'],[0.3704,'-17.45'],[0.3866,'-18.08']],
[[0.6098,'0:55.472'],[0.3939,'-8.70'],[0.3630,'-17.16'],[0.3853,'-18.03']],
[[0.6108,'0:55.565'],[0.4032,'-8.97'],[0.3579,'-16.96'],[0.3843,'-17.99']],
[[0.6118,'0:55.658'],[0.4366,'-9.97'],[0.3539,'-16.80'],[0.3833,'-17.95']],
[[0.6129,'0:55.751'],[0.4241,'-9.59'],[0.3520,'-16.73'],[0.3826,'-17.92']],
[[0.6139,'0:55.844'],[0.4574,'-10.62'],[0.3522,'-16.74'],[0.3823,'-17.91']],
[[0.6149,'0:55.937'],[0.4470,'-10.29'],[0.3549,'-16.84'],[0.3815,'-17.88']],
[[0.6159,'0:56.030'],[0.4341,'-9.89'],[0.3619,'-17.11'],[0.3799,'-17.82']],
[[0.6170,'0:56.123'],[0.4415,'-10.12'],[0.3675,'-17.33'],[0.3788,'-17.77']],
[[0.6180,'0:56.216'],[0.4420,'-10.14'],[0.3683,'-17.36'],[0.3793,'-17.79']],
[[0.6190,'0:56.308'],[0.3979,'-8.81'],[0.3685,'-17.37'],[0.3797,'-17.81']],
[[0.6200,'0:56.401'],[0.4433,'-10.17'],[0.3584,'-16.98'],[0.3783,'-17.75']],
[[0.6210,'0:56.494'],[0.3705,'-8.04'],[0.3482,'-16.58'],[0.3768,'-17.69']],
[[0.6221,'0:56.587'],[0.3714,'-8.06'],[0.3414,'-16.32'],[0.3765,'-17.68']],
[[0.6231,'0:56.680'],[0.4237,'-9.57'],[0.3350,'-16.06'],[0.3764,'-17.68']],
[[0.6241,'0:56.773'],[0.4378,'-10.00'],[0.3373,'-16.16'],[0.3755,'-17.65']],
[[0.6251,'0:56.866'],[0.4632,'-10.81'],[0.3427,'-16.37'],[0.3744,'-17.60']],
[[0.6261,'0:56.959'],[0.4897,'-11.69'],[0.3487,'-16.60'],[0.3729,'-17.54']],
[[0.6272,'0:57.052'],[0.4545,'-10.53'],[0.3551,'-16.85'],[0.3712,'-17.47']],
[[0.6282,'0:57.145'],[0.3779,'-8.24'],[0.3560,'-16.88'],[0.3690,'-17.39']],
[[0.6292,'0:57.238'],[0.3918,'-8.64'],[0.3494,'-16.63'],[0.3664,'-17.29']],
[[0.6302,'0:57.331'],[0.4503,'-10.39'],[0.3444,'-16.43'],[0.3643,'-17.21']],
[[0.6313,'0:57.423'],[0.4063,'-9.06'],[0.3432,'-16.39'],[0.3634,'-17.17']],
[[0.6323,'0:57.516'],[0.4158,'-9.34'],[0.3424,'-16.35'],[0.3625,'-17.14']],
[[0.6333,'0:57.609'],[0.4067,'-9.07'],[0.3438,'-16.41'],[0.3616,'-17.10']],
[[0.6343,'0:57.702'],[0.3905,'-8.60'],[0.3452,'-16.46'],[0.3607,'-17.07']],
[[0.6353,'0:57.795'],[0.4332,'-9.86'],[0.3509,'-16.69'],[0.3601,'-17.04']],
[[0.6364,'0:57.888'],[0.4351,'-9.92'],[0.3568,'-16.91'],[0.3595,'-17.02']],
[[0.6374,'0:57.981'],[0.4103,'-9.18'],[0.3609,'-17.07'],[0.3595,'-17.02']],
[[0.6384,'0:58.074'],[0.4495,'-10.37'],[0.3646,'-17.22'],[0.3595,'-17.02']],
[[0.6394,'0:58.167'],[0.4442,'-10.20'],[0.3657,'-17.26'],[0.3590,'-17.00']],
[[0.6404,'0:58.260'],[0.4544,'-10.52'],[0.3653,'-17.25'],[0.3583,'-16.97']],
[[0.6415,'0:58.353'],[0.3800,'-8.31'],[0.3602,'-17.05'],[0.3579,'-16.96']],
[[0.6425,'0:58.446'],[0.3510,'-7.51'],[0.3502,'-16.66'],[0.3580,'-16.96']],
[[0.6435,'0:58.538'],[0.4209,'-9.49'],[0.3421,'-16.34'],[0.3579,'-16.96']],
[[0.6445,'0:58.631'],[0.3247,'-6.82'],[0.3379,'-16.18'],[0.3578,'-16.95']],
[[0.6456,'0:58.724'],[0.4236,'-9.57'],[0.3362,'-16.11'],[0.3576,'-16.95']],
[[0.6466,'0:58.817'],[0.4148,'-9.31'],[0.3457,'-16.48'],[0.3574,'-16.94']],
[[0.6476,'0:58.910'],[0.4339,'-9.88'],[0.3552,'-16.85'],[0.3571,'-16.93']],
[[0.6486,'0:59.003'],[0.4071,'-9.08'],[0.3616,'-17.10'],[0.3574,'-16.94']],
[[0.6496,'0:59.096'],[0.3891,'-8.56'],[0.3679,'-17.35'],[0.3577,'-16.95']],
[[0.6507,'0:59.189'],[0.4395,'-10.06'],[0.3674,'-17.33'],[0.3572,'-16.93']],
[[0.6517,'0:59.282'],[0.4874,'-11.61'],[0.3657,'-17.26'],[0.3565,'-16.90']],
[[0.6527,'0:59.375'],[0.3716,'-8.07'],[0.3619,'-17.11'],[0.3569,'-16.92']],
[[0.6537,'0:59.468'],[0.4422,'-10.14'],[0.3571,'-16.93'],[0.3577,'-16.95']],
[[0.6547,'0:59.561'],[0.3771,'-8.22'],[0.3526,'-16.75'],[0.3581,'-16.97']],
[[0.6558,'0:59.654'],[0.4433,'-10.17'],[0.3482,'-16.58'],[0.3584,'-16.98']],
[[0.6568,'0:59.746'],[0.4211,'-9.49'],[0.3474,'-16.55'],[0.3584,'-16.98']],
[[0.6578,'0:59.839'],[0.4390,'-10.04'],[0.3520,'-16.73'],[0.3581,'-16.97']],
[[0.6588,'0:59.932'],[0.4060,'-9.05'],[0.3563,'-16.89'],[0.3580,'-16.96']],
[[0.6599,'1:00.025'],[0.4476,'-10.31'],[0.3592,'-17.01'],[0.3583,'-16.97']],
[[0.6609,'1:00.118'],[0.4727,'-11.12'],[0.3621,'-17.12'],[0.3587,'-16.99']],
[[0.6619,'1:00.211'],[0.4437,'-10.19'],[0.3640,'-17.20'],[0.3593,'-17.01']],
[[0.6629,'1:00.304'],[0.4272,'-9.68'],[0.3660,'-17.27'],[0.3599,'-17.04']],
[[0.6639,'1:00.397'],[0.3990,'-8.84'],[0.3627,'-17.14'],[0.3606,'-17.06']],
[[0.6650,'1:00.490'],[0.4135,'-9.27'],[0.3589,'-17.00'],[0.3613,'-17.09']],
[[0.6660,'1:00.583'],[0.3558,'-7.64'],[0.3576,'-16.95'],[0.3621,'-17.12']],
[[0.6670,'1:00.676'],[0.4690,'-11.00'],[0.3570,'-16.92'],[0.3629,'-17.15']],
[[0.6680,'1:00.769'],[0.4743,'-11.17'],[0.3632,'-17.16'],[0.3637,'-17.18']],
[[0.6691,'1:00.861'],[0.5099,'-12.39'],[0.3736,'-17.57'],[0.3644,'-17.21']],
[[0.6701,'1:00.954'],[0.4535,'-10.50'],[0.3795,'-17.80'],[0.3648,'-17.23']],
[[0.6711,'1:01.047'],[0.3792,'-8.28'],[0.3802,'-17.83'],[0.3645,'-17.22']],
[[0.6721,'1:01.140'],[0.4356,'-9.94'],[0.3780,'-17.74'],[0.3642,'-17.20']],
[[0.6731,'1:01.233'],[0.4530,'-10.48'],[0.3689,'-17.39'],[0.3639,'-17.19']],
[[0.6742,'1:01.326'],[0.4240,'-9.58'],[0.3600,'-17.04'],[0.3636,'-17.18']],
[[0.6752,'1:01.419'],[0.4271,'-9.68'],[0.3523,'-16.74'],[0.3638,'-17.19']],
[[0.6762,'1:01.512'],[0.3711,'-8.06'],[0.3446,'-16.44'],[0.3640,'-17.20']],
[[0.6772,'1:01.605'],[0.4254,'-9.63'],[0.3441,'-16.42'],[0.3642,'-17.21']],
[[0.6782,'1:01.698'],[0.4548,'-10.54'],[0.3436,'-16.40'],[0.3645,'-17.22']],
[[0.6793,'1:01.791'],[0.3795,'-8.29'],[0.3445,'-16.43'],[0.3638,'-17.19']],
[[0.6803,'1:01.884'],[0.4061,'-9.05'],[0.3456,'-16.48'],[0.3630,'-17.16']],
[[0.6813,'1:01.976'],[0.3701,'-8.03'],[0.3463,'-16.50'],[0.3622,'-17.13']],
[[0.6823,'1:02.069'],[0.4021,'-8.93'],[0.3468,'-16.52'],[0.3615,'-17.10']],
[[0.6834,'1:02.162'],[0.3871,'-8.51'],[0.3359,'-16.10'],[0.3589,'-17.00']],
[[0.6844,'1:02.255'],[0.2142,'-4.19'],[0.3146,'-15.27'],[0.3546,'-16.83']],
[[0.6854,'1:02.348'],[0.2225,'-4.37'],[0.3003,'-14.71'],[0.3518,'-16.72']],
[[0.6864,'1:02.441'],[0.2451,'-4.88'],[0.2984,'-14.64'],[0.3518,'-16.72']],
[[0.6874,'1:02.534'],[0.3761,'-8.20'],[0.2995,'-14.68'],[0.3521,'-16.73']],
[[0.6885,'1:02.627'],[0.5379,'-13.41'],[0.3120,'-15.17'],[0.3536,'-16.79']],
[[0.6895,'1:02.720'],[0.5616,'-14.33'],[0.3262,'-15.72'],[0.3551,'-16.85']],
[[0.6905,'1:02.813'],[0.6056,'-16.16'],[0.3725,'-17.53'],[0.3566,'-16.91']],
[[0.6915,'1:02.906'],[0.5188,'-12.71'],[0.4189,'-19.34'],[0.3581,'-16.96']],
[[0.6925,'1:02.999'],[0.4398,'-10.07'],[0.4192,'-19.35'],[0.3594,'-17.02']],
[[0.6936,'1:03.092'],[0.5379,'-13.41'],[0.4141,'-19.15'],[0.3606,'-17.07']],
[[0.6946,'1:03.184'],[0.5316,'-13.17'],[0.4093,'-18.96'],[0.3613,'-17.09']],
[[0.6956,'1:03.277'],[0.4346,'-9.91'],[0.4046,'-18.78'],[0.3618,'-17.11']],
[[0.6966,'1:03.370'],[0.5011,'-12.08'],[0.4059,'-18.83'],[0.3633,'-17.17']],
[[0.6977,'1:03.463'],[0.5321,'-13.20'],[0.4116,'-19.05'],[0.3656,'-17.26']],
[[0.6987,'1:03.556'],[1.0000,'-inf'],[0.4310,'-19.81'],[0.3683,'-17.36']],
[[0.6997,'1:03.649'],[1.0000,'-inf'],[0.4690,'-21.29'],[0.3717,'-17.50']],
[[0.7007,'1:03.742'],[1.0000,'-inf'],[0.9045,'-38.28'],[0.3749,'-17.62']],
[[0.7017,'1:03.835'],[1.0000,'-inf'],[2.4221,'-97.46'],[0.3776,'-17.72']],
[[0.7028,'1:03.928'],[1.0000,'-inf'],[3.7692,'-inf'],[0.3804,'-17.83']],
[[0.7038,'1:04.021'],[1.0000,'-inf'],[3.7692,'-inf'],[0.3843,'-17.99']],
[[0.7048,'1:04.114'],[1.0000,'-inf'],[3.7692,'-inf'],[0.3883,'-18.14']],
[[0.7058,'1:04.207'],[1.0000,'-inf'],[3.7692,'-inf'],[0.3922,'-18.30']],
[[0.7068,'1:04.299'],[1.0000,'-inf'],[3.7692,'-inf'],[0.3962,'-18.45']],
[[0.7079,'1:04.392'],[1.0000,'-inf'],[3.7692,'-inf'],[0.4017,'-18.67']],
[[0.7089,'1:04.485'],[1.0000,'-inf'],[3.7692,'-inf'],[0.4077,'-18.90']],
[[0.7099,'1:04.578'],[1.0000,'-inf'],[3.7692,'-inf'],[0.4137,'-19.13']],
[[0.7109,'1:04.671'],[1.0000,'-inf'],[3.7692,'-inf'],[0.4197,'-19.37']],
[[0.7120,'1:04.764'],[1.0000,'-inf'],[3.7692,'-inf'],[0.4266,'-19.64']],
[[0.7130,'1:04.857'],[1.0000,'-inf'],[3.7692,'-inf'],[0.4345,'-19.95']],
[[0.7140,'1:04.950'],[1.0000,'-inf'],[3.7692,'-inf'],[0.4422,'-20.24']],
[[0.7150,'1:05.043'],[1.0000,'-inf'],[3.7692,'-inf'],[0.4491,'-20.52']],
[[0.7160,'1:05.136'],[1.0000,'-inf'],[3.7692,'-inf'],[0.4575,'-20.84']],
[[0.7171,'1:05.229'],[1.0000,'-inf'],[3.7692,'-inf'],[0.4727,'-21.44']],
[[0.7181,'1:05.322'],[1.0000,'-inf'],[3.7692,'-inf'],[0.4881,'-22.04']],
[[0.7191,'1:05.414'],[1.0000,'-inf'],[3.7692,'-inf'],[0.5142,'-23.06']],
[[0.7201,'1:05.507'],[1.0000,'-inf'],[3.7692,'-inf'],[0.5404,'-24.07']],
[[0.7211,'1:05.600'],[1.0000,'-inf'],[3.7692,'-inf'],[0.5550,'-24.64']],
[[0.7222,'1:05.693'],[1.0000,'-inf'],[3.7692,'-inf'],[0.5677,'-25.14']],
[[0.7232,'1:05.786'],[1.0000,'-inf'],[3.7692,'-inf'],[0.5802,'-25.63']],
[[0.7242,'1:05.879'],[1.0000,'-inf'],[3.7692,'-inf'],[0.5925,'-26.11']],
[[0.7252,'1:05.972'],[1.0000,'-inf'],[3.7692,'-inf'],[0.6099,'-26.79']],
[[0.7263,'1:06.065'],[1.0000,'-inf'],[3.7692,'-inf'],[0.6316,'-27.63']],
[[0.7273,'1:06.158'],[1.0000,'-inf'],[3.7692,'-inf'],[0.6623,'-28.83']],
[[0.7283,'1:06.251'],[1.0000,'-inf'],[3.7692,'-inf'],[0.7070,'-30.57']],
[[0.7293,'1:06.344'],[1.0000,'-inf'],[3.7692,'-inf'],[1.0721,'-44.81']],
[[0.7303,'1:06.437'],[1.0000,'-inf'],[3.7692,'-inf'],[2.4763,'-99.58']],
[[0.7314,'1:06.530'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7324,'1:06.622'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7334,'1:06.715'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7344,'1:06.808'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7354,'1:06.901'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7365,'1:06.994'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7375,'1:07.087'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7385,'1:07.180'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7395,'1:07.273'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7406,'1:07.366'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7416,'1:07.459'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7426,'1:07.552'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7436,'1:07.645'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7446,'1:07.737'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7457,'1:07.830'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7467,'1:07.923'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7477,'1:08.016'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7487,'1:08.109'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7497,'1:08.202'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7508,'1:08.295'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7518,'1:08.388'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7528,'1:08.481'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7538,'1:08.574'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7549,'1:08.667'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7559,'1:08.760'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7569,'1:08.853'],[1.0000,'-inf'],[3.7692,'-inf'],[3.7692,'-inf']],
[[0.7579,'1:08.945'],[1.0000,'-inf'],[3.5169,'-140.16'],[3.5380,'-140.98']],
[[0.7589,'1:09.038'],[1.0000,'-inf'],[2.2718,'-91.60'],[2.3970,'-96.48']],
[[0.7600,'1:09.131'],[1.0000,'-inf'],[1.0735,'-44.87'],[1.2978,'-53.62']],
[[0.7610,'1:09.224'],[0.8170,'-29.50'],[0.8387,'-35.71'],[1.0630,'-44.46']],
[[0.7620,'1:09.317'],[0.5902,'-15.50'],[0.6040,'-26.55'],[0.8282,'-35.30']],
[[0.7630,'1:09.410'],[0.5427,'-13.59'],[0.5424,'-24.15'],[0.7664,'-32.89']],
[[0.7640,'1:09.503'],[0.4577,'-10.63'],[0.5022,'-22.59'],[0.7261,'-31.32']],
[[0.7651,'1:09.596'],[0.5306,'-13.14'],[0.4862,'-21.96'],[0.6989,'-30.26']],
[[0.7661,'1:09.689'],[0.6008,'-15.95'],[0.4789,'-21.68'],[0.6766,'-29.39']],
[[0.7671,'1:09.782'],[0.5086,'-12.34'],[0.4757,'-21.55'],[0.6573,'-28.63']],
[[0.7681,'1:09.875'],[0.5623,'-14.35'],[0.4755,'-21.55'],[0.6401,'-27.96']],
[[0.7692,'1:09.968'],[0.5143,'-12.54'],[0.4441,'-20.32'],[0.6063,'-26.65']],
[[0.7702,'1:10.060'],[0.4832,'-11.47'],[0.3696,'-17.42'],[0.5499,'-24.44']],
[[0.7712,'1:10.153'],[0.5859,'-15.31'],[0.3014,'-14.76'],[0.4966,'-22.37']],
[[0.7722,'1:10.246'],[0.0637,'-1.14'],[0.2506,'-12.77'],[0.4522,'-20.63']],
[[0.7732,'1:10.339'],[0.1499,'-2.82'],[0.2032,'-10.93'],[0.4102,'-19.00']],
[[0.7743,'1:10.432'],[0.2110,'-4.12'],[0.1849,'-10.21'],[0.3887,'-18.16']],
[[0.7753,'1:10.525'],[0.2330,'-4.61'],[0.1666,'-9.50'],[0.3673,'-17.32']],
[[0.7763,'1:10.618'],[0.0645,'-1.16'],[0.1754,'-9.84'],[0.3545,'-16.83']],
[[0.7773,'1:10.711'],[0.2044,'-3.97'],[0.1855,'-10.23'],[0.3422,'-16.34']],
[[0.7783,'1:10.804'],[0.2340,'-4.63'],[0.1889,'-10.37'],[0.3316,'-15.93']],
[[0.7794,'1:10.897'],[0.2598,'-5.23'],[0.1906,'-10.43'],[0.3216,'-15.54']],
[[0.7804,'1:10.990'],[0.1407,'-2.63'],[0.1965,'-10.66'],[0.3133,'-15.22']],
[[0.7814,'1:11.083'],[0.1911,'-3.68'],[0.2047,'-10.98'],[0.3061,'-14.94']],
[[0.7824,'1:11.175'],[0.1916,'-3.69'],[0.2060,'-11.04'],[0.2975,'-14.60']],
[[0.7835,'1:11.268'],[0.1411,'-2.64'],[0.1999,'-10.80'],[0.2873,'-14.21']],
[[0.7845,'1:11.361'],[0.0769,'-1.39'],[0.1932,'-10.53'],[0.2782,'-13.85']],
[[0.7855,'1:11.454'],[0.1693,'-3.22'],[0.1853,'-10.23'],[0.2712,'-13.58']],
[[0.7865,'1:11.547'],[0.1658,'-3.15'],[0.1780,'-9.94'],[0.2642,'-13.30']],
[[0.7875,'1:11.640'],[0.1567,'-2.96'],[0.1737,'-9.77'],[0.2570,'-13.02']],
[[0.7886,'1:11.733'],[0.1244,'-2.31'],[0.1695,'-9.61'],[0.2498,'-12.74']],
[[0.7896,'1:11.826'],[0.1761,'-3.37'],[0.1744,'-9.80'],[0.2444,'-12.53']],
[[0.7906,'1:11.919'],[0.1256,'-2.33'],[0.1793,'-9.99'],[0.2390,'-12.32']],
[[0.7916,'1:12.012'],[0.2080,'-4.05'],[0.1807,'-10.05'],[0.2333,'-12.10']],