-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprologue_punch.render_stats.html
935 lines (935 loc) · 56.4 KB
/
prologue_punch.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
<!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>prologue_punch.mp3</td>
<td>2:00.000</td>
<td>-0.4</td>
<td>-0.4</td>
<td>0</td>
<td>0</td>
<td>-8.3</td>
<td>-9.3</td>
<td>-13.2</td>
<td>10.8</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:'prologue_punch.mp3',
length:120.000,
series:['Peak','RMS-M','RMS-S'],
integrated:['RMS-I',0.2257,'-13.16'],
dynrange:['RMS-RA',[0.3867,'-20.40'],[0.1467,'-9.60']],
vals:[
[[0.0016,'0:00.186'],[0.0709,'-1.28'],[0.1547,'-9.96'],[0.3275,'-17.74']],
[[0.0031,'0:00.372'],[0.0612,'-1.10'],[0.1549,'-9.97'],[0.3061,'-16.77']],
[[0.0047,'0:00.558'],[0.0582,'-1.04'],[0.1755,'-10.90'],[0.2978,'-16.40']],
[[0.0062,'0:00.744'],[0.3077,'-6.39'],[0.1998,'-11.99'],[0.2918,'-16.13']],
[[0.0078,'0:00.930'],[0.3763,'-8.20'],[0.2337,'-13.52'],[0.2864,'-15.89']],
[[0.0093,'0:01.116'],[0.3668,'-7.94'],[0.2718,'-15.23'],[0.2814,'-15.66']],
[[0.0109,'0:01.302'],[0.3545,'-7.60'],[0.2927,'-16.17'],[0.2774,'-15.48']],
[[0.0124,'0:01.488'],[0.3809,'-8.33'],[0.2996,'-16.48'],[0.2744,'-15.35']],
[[0.0140,'0:01.674'],[0.4418,'-10.13'],[0.3095,'-16.93'],[0.2714,'-15.21']],
[[0.0155,'0:01.860'],[0.4379,'-10.01'],[0.3239,'-17.58'],[0.2684,'-15.08']],
[[0.0171,'0:02.046'],[0.5165,'-12.63'],[0.3334,'-18.00'],[0.2656,'-14.95']],
[[0.0186,'0:02.232'],[0.4019,'-8.93'],[0.3280,'-17.76'],[0.2636,'-14.86']],
[[0.0202,'0:02.418'],[0.4355,'-9.93'],[0.3240,'-17.58'],[0.2617,'-14.78']],
[[0.0217,'0:02.604'],[0.5085,'-12.34'],[0.3317,'-17.93'],[0.2604,'-14.72']],
[[0.0233,'0:02.790'],[0.5564,'-14.12'],[0.3394,'-18.27'],[0.2592,'-14.66']],
[[0.0248,'0:02.976'],[0.4589,'-10.67'],[0.3282,'-17.77'],[0.2685,'-15.08']],
[[0.0264,'0:03.162'],[0.5464,'-13.73'],[0.3160,'-17.22'],[0.2783,'-15.52']],
[[0.0279,'0:03.348'],[0.3866,'-8.49'],[0.3240,'-17.58'],[0.2965,'-16.34']],
[[0.0295,'0:03.534'],[0.4311,'-9.80'],[0.3371,'-18.17'],[0.3168,'-17.26']],
[[0.0310,'0:03.720'],[0.5055,'-12.23'],[0.3423,'-18.40'],[0.3281,'-17.77']],
[[0.0326,'0:03.906'],[0.4856,'-11.55'],[0.3431,'-18.44'],[0.3346,'-18.06']],
[[0.0341,'0:04.093'],[0.4985,'-11.99'],[0.3409,'-18.34'],[0.3395,'-18.28']],
[[0.0357,'0:04.279'],[0.4279,'-9.70'],[0.3355,'-18.10'],[0.3426,'-18.42']],
[[0.0372,'0:04.465'],[0.4985,'-11.99'],[0.3308,'-17.89'],[0.3445,'-18.50']],
[[0.0388,'0:04.651'],[0.5565,'-14.13'],[0.3273,'-17.73'],[0.3444,'-18.50']],
[[0.0403,'0:04.837'],[0.5234,'-12.87'],[0.3224,'-17.51'],[0.3442,'-18.49']],
[[0.0419,'0:05.023'],[0.4532,'-10.49'],[0.3121,'-17.05'],[0.3438,'-18.47']],
[[0.0434,'0:05.209'],[0.3753,'-8.17'],[0.3029,'-16.63'],[0.3434,'-18.45']],
[[0.0450,'0:05.395'],[0.4475,'-10.31'],[0.3126,'-17.07'],[0.3420,'-18.39']],
[[0.0465,'0:05.581'],[0.5259,'-12.97'],[0.3222,'-17.50'],[0.3405,'-18.32']],
[[0.0481,'0:05.767'],[0.4703,'-11.04'],[0.3233,'-17.55'],[0.3397,'-18.29']],
[[0.0496,'0:05.953'],[0.4856,'-11.55'],[0.3235,'-17.56'],[0.3390,'-18.25']],
[[0.0512,'0:06.139'],[0.3865,'-8.49'],[0.3226,'-17.52'],[0.3399,'-18.29']],
[[0.0527,'0:06.325'],[0.4288,'-9.73'],[0.3214,'-17.46'],[0.3413,'-18.36']],
[[0.0543,'0:06.511'],[0.4173,'-9.38'],[0.3185,'-17.33'],[0.3397,'-18.29']],
[[0.0558,'0:06.697'],[0.3868,'-8.50'],[0.3146,'-17.16'],[0.3361,'-18.12']],
[[0.0574,'0:06.883'],[0.4506,'-10.40'],[0.3116,'-17.02'],[0.3340,'-18.03']],
[[0.0589,'0:07.069'],[0.4097,'-9.16'],[0.3098,'-16.94'],[0.3340,'-18.03']],
[[0.0605,'0:07.255'],[0.4061,'-9.05'],[0.3136,'-17.11'],[0.3338,'-18.02']],
[[0.0620,'0:07.441'],[0.4398,'-10.07'],[0.3309,'-17.89'],[0.3334,'-18.00']],
[[0.0636,'0:07.627'],[0.4701,'-11.03'],[0.3442,'-18.49'],[0.3331,'-17.99']],
[[0.0651,'0:07.813'],[0.5235,'-12.88'],[0.3353,'-18.09'],[0.3336,'-18.01']],
[[0.0667,'0:08.000'],[0.4749,'-11.19'],[0.3264,'-17.69'],[0.3340,'-18.03']],
[[0.0682,'0:08.186'],[0.4412,'-10.11'],[0.3279,'-17.76'],[0.3360,'-18.12']],
[[0.0698,'0:08.372'],[0.4193,'-9.44'],[0.3295,'-17.83'],[0.3380,'-18.21']],
[[0.0713,'0:08.558'],[0.4913,'-11.74'],[0.3224,'-17.51'],[0.3365,'-18.14']],
[[0.0729,'0:08.744'],[0.4345,'-9.90'],[0.3138,'-17.12'],[0.3344,'-18.05']],
[[0.0744,'0:08.930'],[0.4463,'-10.27'],[0.3092,'-16.91'],[0.3324,'-17.96']],
[[0.0760,'0:09.116'],[0.3941,'-8.70'],[0.3062,'-16.78'],[0.3304,'-17.87']],
[[0.0775,'0:09.302'],[0.4253,'-9.62'],[0.3078,'-16.85'],[0.3289,'-17.80']],
[[0.0791,'0:09.488'],[0.4464,'-10.27'],[0.3130,'-17.09'],[0.3276,'-17.74']],
[[0.0806,'0:09.674'],[0.4346,'-9.90'],[0.3111,'-17.00'],[0.3266,'-17.70']],
[[0.0822,'0:09.860'],[0.3978,'-8.81'],[0.2983,'-16.42'],[0.3261,'-17.67']],
[[0.0837,'0:10.046'],[0.3723,'-8.09'],[0.2906,'-16.08'],[0.3250,'-17.62']],
[[0.0853,'0:10.232'],[0.3710,'-8.05'],[0.2982,'-16.42'],[0.3221,'-17.49']],
[[0.0868,'0:10.418'],[0.4601,'-10.71'],[0.3046,'-16.71'],[0.3192,'-17.37']],
[[0.0884,'0:10.604'],[0.4549,'-10.54'],[0.3007,'-16.53'],[0.3164,'-17.24']],
[[0.0899,'0:10.790'],[0.3766,'-8.21'],[0.2968,'-16.36'],[0.3135,'-17.11']],
[[0.0915,'0:10.976'],[0.4058,'-9.04'],[0.2978,'-16.40'],[0.3125,'-17.06']],
[[0.0930,'0:11.162'],[0.4070,'-9.08'],[0.2990,'-16.46'],[0.3117,'-17.03']],
[[0.0946,'0:11.348'],[0.3882,'-8.53'],[0.3027,'-16.62'],[0.3110,'-16.99']],
[[0.0961,'0:11.534'],[0.4094,'-9.15'],[0.3070,'-16.82'],[0.3103,'-16.96']],
[[0.0977,'0:11.720'],[0.4507,'-10.41'],[0.3029,'-16.63'],[0.3101,'-16.95']],
[[0.0992,'0:11.906'],[0.3505,'-7.50'],[0.2942,'-16.24'],[0.3100,'-16.95']],
[[0.1008,'0:12.093'],[0.3805,'-8.32'],[0.2945,'-16.25'],[0.3099,'-16.95']],
[[0.1023,'0:12.279'],[0.3235,'-6.79'],[0.3039,'-16.67'],[0.3097,'-16.94']],
[[0.1039,'0:12.465'],[0.4159,'-9.34'],[0.3087,'-16.89'],[0.3094,'-16.92']],
[[0.1054,'0:12.651'],[0.3885,'-8.54'],[0.3053,'-16.74'],[0.3091,'-16.91']],
[[0.1070,'0:12.837'],[0.4371,'-9.98'],[0.3023,'-16.60'],[0.3090,'-16.90']],
[[0.1085,'0:13.023'],[0.3707,'-8.05'],[0.3011,'-16.55'],[0.3096,'-16.93']],
[[0.1101,'0:13.209'],[0.3629,'-7.83'],[0.3003,'-16.52'],[0.3102,'-16.96']],
[[0.1116,'0:13.395'],[0.4201,'-9.47'],[0.3076,'-16.84'],[0.3109,'-16.99']],
[[0.1132,'0:13.581'],[0.4060,'-9.05'],[0.3148,'-17.17'],[0.3116,'-17.02']],
[[0.1147,'0:13.767'],[0.4431,'-10.17'],[0.3129,'-17.08'],[0.3125,'-17.06']],
[[0.1163,'0:13.953'],[0.3994,'-8.86'],[0.3100,'-16.95'],[0.3135,'-17.11']],
[[0.1178,'0:14.139'],[0.3557,'-7.64'],[0.3142,'-17.14'],[0.3144,'-17.15']],
[[0.1194,'0:14.325'],[0.4771,'-11.26'],[0.3209,'-17.44'],[0.3154,'-17.19']],
[[0.1209,'0:14.511'],[0.4549,'-10.54'],[0.3164,'-17.24'],[0.3156,'-17.20']],
[[0.1225,'0:14.697'],[0.3732,'-8.12'],[0.3044,'-16.70'],[0.3153,'-17.19']],
[[0.1240,'0:14.883'],[0.4231,'-9.56'],[0.2982,'-16.42'],[0.3149,'-17.17']],
[[0.1256,'0:15.069'],[0.3715,'-8.07'],[0.2991,'-16.46'],[0.3146,'-17.16']],
[[0.1271,'0:15.255'],[0.4257,'-9.64'],[0.2938,'-16.22'],[0.3130,'-17.08']],
[[0.1287,'0:15.441'],[0.3810,'-8.33'],[0.2740,'-15.33'],[0.3086,'-16.89']],
[[0.1302,'0:15.627'],[0.3796,'-8.29'],[0.2572,'-14.58'],[0.3048,'-16.72']],
[[0.1318,'0:15.813'],[0.2089,'-4.07'],[0.2574,'-14.58'],[0.3049,'-16.72']],
[[0.1333,'0:16.000'],[0.2184,'-4.28'],[0.2575,'-14.59'],[0.3051,'-16.73']],
[[0.1349,'0:16.186'],[0.4768,'-11.25'],[0.3116,'-17.02'],[0.3081,'-16.87']],
[[0.1364,'0:16.372'],[0.5539,'-14.02'],[0.3656,'-19.45'],[0.3112,'-17.01']],
[[0.1380,'0:16.558'],[0.5172,'-12.65'],[0.5041,'-25.68'],[0.3167,'-17.25']],
[[0.1395,'0:16.744'],[1.0000,'-inf'],[0.6574,'-32.58'],[0.3226,'-17.52']],
[[0.1411,'0:16.930'],[1.0000,'-inf'],[1.5379,'-72.21'],[0.3291,'-17.81']],
[[0.1426,'0:17.116'],[1.0000,'-inf'],[2.7302,'-125.86'],[0.3358,'-18.11']],
[[0.1442,'0:17.302'],[1.0000,'-inf'],[3.2667,'-inf'],[0.3426,'-18.42']],
[[0.1457,'0:17.488'],[1.0000,'-inf'],[3.2667,'-inf'],[0.3494,'-18.72']],
[[0.1473,'0:17.674'],[1.0000,'-inf'],[3.2667,'-inf'],[0.3580,'-19.11']],
[[0.1488,'0:17.860'],[1.0000,'-inf'],[3.2667,'-inf'],[0.3693,'-19.62']],
[[0.1504,'0:18.046'],[1.0000,'-inf'],[3.2667,'-inf'],[0.3816,'-20.17']],
[[0.1519,'0:18.232'],[1.0000,'-inf'],[3.2667,'-inf'],[0.3970,'-20.86']],
[[0.1535,'0:18.418'],[1.0000,'-inf'],[3.2667,'-inf'],[0.4142,'-21.64']],
[[0.1550,'0:18.604'],[1.0000,'-inf'],[3.2667,'-inf'],[0.4481,'-23.16']],
[[0.1566,'0:18.790'],[1.0000,'-inf'],[3.2667,'-inf'],[0.4819,'-24.69']],
[[0.1581,'0:18.976'],[1.0000,'-inf'],[3.2667,'-inf'],[0.5564,'-28.04']],
[[0.1597,'0:19.162'],[1.0000,'-inf'],[3.2667,'-inf'],[0.6329,'-31.48']],
[[0.1612,'0:19.348'],[1.0000,'-inf'],[3.2667,'-inf'],[1.6225,'-76.01']],
[[0.1628,'0:19.534'],[1.0000,'-inf'],[3.2667,'-inf'],[2.8404,'-130.82']],
[[0.1643,'0:19.720'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1659,'0:19.906'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1674,'0:20.093'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1690,'0:20.279'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1705,'0:20.465'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1721,'0:20.651'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1736,'0:20.837'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1752,'0:21.023'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1767,'0:21.209'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1783,'0:21.395'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1798,'0:21.581'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1814,'0:21.767'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1829,'0:21.953'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1845,'0:22.139'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1860,'0:22.325'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1876,'0:22.511'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1891,'0:22.697'],[1.0000,'-inf'],[3.2667,'-inf'],[3.2667,'-inf']],
[[0.1907,'0:22.883'],[1.0000,'-inf'],[2.6635,'-122.86'],[2.7042,'-124.69']],
[[0.1922,'0:23.069'],[1.0000,'-inf'],[1.3230,'-62.54'],[1.4542,'-68.44']],
[[0.1938,'0:23.255'],[1.0000,'-inf'],[0.3556,'-19.00'],[0.5486,'-27.69']],
[[0.1953,'0:23.441'],[0.4006,'-8.89'],[0.2585,'-14.63'],[0.4466,'-23.10']],
[[0.1969,'0:23.627'],[0.3834,'-8.40'],[0.1739,'-10.83'],[0.3552,'-18.98']],
[[0.1984,'0:23.813'],[0.0522,'-0.93'],[0.1598,'-10.19'],[0.3235,'-17.56']],
[[0.2000,'0:24.000'],[0.1912,'-3.69'],[0.1458,'-9.56'],[0.2917,'-16.13']],
[[0.2016,'0:24.186'],[0.0799,'-1.45'],[0.1450,'-9.53'],[0.2769,'-15.46']],
[[0.2031,'0:24.372'],[0.1134,'-2.09'],[0.1443,'-9.49'],[0.2621,'-14.79']],
[[0.2047,'0:24.558'],[0.0684,'-1.23'],[0.1477,'-9.65'],[0.2469,'-14.11']],
[[0.2062,'0:24.744'],[0.2537,'-5.08'],[0.1519,'-9.83'],[0.2317,'-13.43']],
[[0.2078,'0:24.930'],[0.0837,'-1.52'],[0.1537,'-9.91'],[0.2199,'-12.90']],
[[0.2093,'0:25.116'],[0.1183,'-2.19'],[0.1544,'-9.95'],[0.2095,'-12.43']],
[[0.2109,'0:25.302'],[0.0971,'-1.77'],[0.1533,'-9.90'],[0.2013,'-12.06']],
[[0.2124,'0:25.488'],[0.0759,'-1.37'],[0.1506,'-9.78'],[0.1948,'-11.77']],
[[0.2140,'0:25.674'],[0.1066,'-1.96'],[0.1501,'-9.75'],[0.1878,'-11.45']],
[[0.2155,'0:25.860'],[0.1282,'-2.38'],[0.1528,'-9.88'],[0.1801,'-11.11']],
[[0.2171,'0:26.046'],[0.2225,'-4.37'],[0.1554,'-9.99'],[0.1737,'-10.82']],
[[0.2186,'0:26.232'],[0.1060,'-1.95'],[0.1576,'-10.09'],[0.1713,'-10.71']],
[[0.2202,'0:26.418'],[0.0783,'-1.42'],[0.1590,'-10.16'],[0.1691,'-10.61']],
[[0.2217,'0:26.604'],[0.0808,'-1.46'],[0.1527,'-9.87'],[0.1690,'-10.60']],
[[0.2233,'0:26.790'],[0.0890,'-1.62'],[0.1465,'-9.59'],[0.1689,'-10.60']],
[[0.2248,'0:26.976'],[0.2266,'-4.46'],[0.1413,'-9.36'],[0.1670,'-10.52']],
[[0.2264,'0:27.162'],[0.0689,'-1.24'],[0.1363,'-9.13'],[0.1651,'-10.43']],
[[0.2279,'0:27.348'],[0.0879,'-1.60'],[0.1335,'-9.01'],[0.1641,'-10.38']],
[[0.2295,'0:27.534'],[0.0376,'-0.67'],[0.1313,'-8.91'],[0.1632,'-10.35']],
[[0.2310,'0:27.720'],[0.0339,'-0.60'],[0.1404,'-9.32'],[0.1635,'-10.36']],
[[0.2326,'0:27.906'],[0.2862,'-5.86'],[0.1555,'-10.00'],[0.1644,'-10.40']],
[[0.2341,'0:28.093'],[0.1216,'-2.25'],[0.1645,'-10.40'],[0.1653,'-10.44']],
[[0.2357,'0:28.279'],[0.0825,'-1.50'],[0.1674,'-10.53'],[0.1664,'-10.49']],
[[0.2372,'0:28.465'],[0.0372,'-0.66'],[0.1676,'-10.54'],[0.1672,'-10.52']],
[[0.2388,'0:28.651'],[0.2748,'-5.58'],[0.1627,'-10.32'],[0.1676,'-10.54']],
[[0.2403,'0:28.837'],[0.1327,'-2.47'],[0.1569,'-10.06'],[0.1675,'-10.54']],
[[0.2419,'0:29.023'],[0.0898,'-1.63'],[0.1477,'-9.64'],[0.1654,'-10.45']],
[[0.2434,'0:29.209'],[0.0685,'-1.23'],[0.1389,'-9.25'],[0.1635,'-10.36']],
[[0.2450,'0:29.395'],[0.0409,'-0.73'],[0.1406,'-9.33'],[0.1631,'-10.34']],
[[0.2465,'0:29.581'],[0.0661,'-1.19'],[0.1423,'-9.40'],[0.1628,'-10.33']],
[[0.2481,'0:29.767'],[0.1897,'-3.65'],[0.1459,'-9.56'],[0.1638,'-10.37']],
[[0.2496,'0:29.953'],[0.0801,'-1.45'],[0.1497,'-9.74'],[0.1649,'-10.42']],
[[0.2512,'0:30.139'],[0.1755,'-3.35'],[0.1519,'-9.84'],[0.1654,'-10.44']],
[[0.2527,'0:30.325'],[0.0650,'-1.17'],[0.1536,'-9.91'],[0.1658,'-10.46']],
[[0.2543,'0:30.511'],[0.1111,'-2.04'],[0.1506,'-9.78'],[0.1654,'-10.44']],
[[0.2558,'0:30.697'],[0.1181,'-2.18'],[0.1445,'-9.50'],[0.1644,'-10.40']],
[[0.2574,'0:30.883'],[0.0803,'-1.45'],[0.1429,'-9.43'],[0.1635,'-10.36']],
[[0.2589,'0:31.069'],[0.1086,'-2.00'],[0.1466,'-9.60'],[0.1624,'-10.31']],
[[0.2605,'0:31.255'],[0.1176,'-2.17'],[0.1492,'-9.72'],[0.1614,'-10.26']],
[[0.2620,'0:31.441'],[0.2050,'-3.99'],[0.1491,'-9.71'],[0.1602,'-10.21']],
[[0.2636,'0:31.627'],[0.0657,'-1.18'],[0.1483,'-9.67'],[0.1590,'-10.16']],
[[0.2651,'0:31.813'],[0.2046,'-3.98'],[0.1433,'-9.45'],[0.1584,'-10.13']],
[[0.2667,'0:32.000'],[0.1261,'-2.34'],[0.1383,'-9.22'],[0.1577,'-10.10']],
[[0.2682,'0:32.186'],[0.0871,'-1.58'],[0.1459,'-9.56'],[0.1583,'-10.13']],
[[0.2698,'0:32.372'],[0.0316,'-0.56'],[0.1534,'-9.90'],[0.1590,'-10.15']],
[[0.2713,'0:32.558'],[0.2778,'-5.65'],[0.1457,'-9.56'],[0.1585,'-10.13']],
[[0.2729,'0:32.744'],[0.0853,'-1.55'],[0.1353,'-9.09'],[0.1579,'-10.11']],
[[0.2744,'0:32.930'],[0.0862,'-1.57'],[0.1350,'-9.07'],[0.1571,'-10.07']],
[[0.2760,'0:33.116'],[0.0590,'-1.06'],[0.1390,'-9.25'],[0.1561,'-10.03']],
[[0.2775,'0:33.302'],[0.1067,'-1.96'],[0.1433,'-9.45'],[0.1557,'-10.01']],
[[0.2791,'0:33.488'],[0.0634,'-1.14'],[0.1478,'-9.65'],[0.1557,'-10.00']],
[[0.2806,'0:33.674'],[0.1542,'-2.91'],[0.1473,'-9.63'],[0.1554,'-9.99']],
[[0.2822,'0:33.860'],[0.0783,'-1.42'],[0.1391,'-9.26'],[0.1550,'-9.97']],
[[0.2837,'0:34.046'],[0.0875,'-1.59'],[0.1359,'-9.11'],[0.1548,'-9.96']],
[[0.2853,'0:34.232'],[0.0865,'-1.57'],[0.1471,'-9.62'],[0.1553,'-9.99']],
[[0.2868,'0:34.418'],[0.2347,'-4.65'],[0.1566,'-10.05'],[0.1559,'-10.01']],
[[0.2884,'0:34.604'],[0.0659,'-1.19'],[0.1499,'-9.75'],[0.1559,'-10.02']],
[[0.2899,'0:34.790'],[0.1099,'-2.02'],[0.1433,'-9.45'],[0.1559,'-10.02']],
[[0.2915,'0:34.976'],[0.0630,'-1.13'],[0.1369,'-9.16'],[0.1537,'-9.92']],
[[0.2930,'0:35.162'],[0.0657,'-1.18'],[0.1306,'-8.88'],[0.1514,'-9.81']],
[[0.2946,'0:35.348'],[0.1025,'-1.88'],[0.1290,'-8.81'],[0.1506,'-9.78']],
[[0.2961,'0:35.534'],[0.0385,'-0.68'],[0.1287,'-8.79'],[0.1503,'-9.76']],
[[0.2977,'0:35.720'],[0.1887,'-3.63'],[0.1253,'-8.64'],[0.1496,'-9.73']],
[[0.2992,'0:35.906'],[0.0636,'-1.14'],[0.1204,'-8.42'],[0.1486,'-9.69']],
[[0.3008,'0:36.093'],[0.0492,'-0.88'],[0.1260,'-8.67'],[0.1487,'-9.69']],
[[0.3023,'0:36.279'],[0.0489,'-0.87'],[0.1421,'-9.40'],[0.1501,'-9.75']],
[[0.3039,'0:36.465'],[0.2311,'-4.57'],[0.1495,'-9.73'],[0.1508,'-9.78']],
[[0.3054,'0:36.651'],[0.0884,'-1.61'],[0.1405,'-9.32'],[0.1503,'-9.77']],
[[0.3070,'0:36.837'],[0.0900,'-1.64'],[0.1342,'-9.04'],[0.1498,'-9.74']],
[[0.3085,'0:37.023'],[0.0221,'-0.39'],[0.1387,'-9.24'],[0.1491,'-9.71']],
[[0.3101,'0:37.209'],[0.0615,'-1.10'],[0.1439,'-9.47'],[0.1485,'-9.68']],
[[0.3116,'0:37.395'],[0.1075,'-1.98'],[0.1637,'-10.37'],[0.1506,'-9.78']],
[[0.3132,'0:37.581'],[0.2440,'-4.86'],[0.1835,'-11.26'],[0.1528,'-9.87']],
[[0.3147,'0:37.767'],[0.3775,'-8.23'],[0.2636,'-14.86'],[0.1582,'-10.12']],
[[0.3163,'0:37.953'],[0.3737,'-8.13'],[0.3503,'-18.77'],[0.1640,'-10.38']],
[[0.3178,'0:38.139'],[0.4040,'-8.99'],[0.3746,'-19.86'],[0.1717,'-10.72']],
[[0.3194,'0:38.325'],[0.4461,'-10.26'],[0.3780,'-20.01'],[0.1800,'-11.10']],
[[0.3209,'0:38.511'],[0.4334,'-9.87'],[0.3704,'-19.67'],[0.1890,'-11.50']],
[[0.3225,'0:38.697'],[0.4748,'-11.19'],[0.3554,'-18.99'],[0.1985,'-11.93']],
[[0.3240,'0:38.883'],[0.4889,'-11.66'],[0.3108,'-16.99'],[0.2067,'-12.30']],
[[0.3256,'0:39.069'],[0.4618,'-10.76'],[0.2300,'-13.35'],[0.2134,'-12.60']],
[[0.3271,'0:39.255'],[0.2165,'-4.24'],[0.1781,'-11.01'],[0.2193,'-12.87']],
[[0.3287,'0:39.441'],[0.0774,'-1.40'],[0.1934,'-11.70'],[0.2237,'-13.07']],
[[0.3302,'0:39.627'],[0.2818,'-5.75'],[0.2189,'-12.85'],[0.2301,'-13.35']],
[[0.3318,'0:39.813'],[0.4423,'-10.14'],[0.3017,'-16.58'],[0.2479,'-14.16']],
[[0.3333,'0:40.000'],[0.4262,'-9.65'],[0.3846,'-20.31'],[0.2658,'-14.96']],
[[0.3349,'0:40.186'],[0.4009,'-8.90'],[0.3912,'-20.60'],[0.2860,'-15.87']],
[[0.3364,'0:40.372'],[0.4115,'-9.21'],[0.3978,'-20.90'],[0.3062,'-16.78']],
[[0.3380,'0:40.558'],[0.4618,'-10.76'],[0.3369,'-18.16'],[0.3051,'-16.73']],
[[0.3395,'0:40.744'],[0.4633,'-10.81'],[0.2641,'-14.88'],[0.3002,'-16.51']],
[[0.3411,'0:40.930'],[0.4731,'-11.13'],[0.2208,'-12.94'],[0.2922,'-16.15']],
[[0.3426,'0:41.116'],[0.4091,'-9.14'],[0.1902,'-11.56'],[0.2829,'-15.73']],
[[0.3442,'0:41.302'],[0.0447,'-0.80'],[0.1914,'-11.61'],[0.2785,'-15.53']],
[[0.3457,'0:41.488'],[0.2443,'-4.87'],[0.2187,'-12.84'],[0.2781,'-15.51']],
[[0.3473,'0:41.674'],[0.3378,'-7.16'],[0.2625,'-14.81'],[0.2779,'-15.51']],
[[0.3488,'0:41.860'],[0.4737,'-11.15'],[0.3312,'-17.90'],[0.2780,'-15.51']],
[[0.3504,'0:42.046'],[0.4472,'-10.30'],[0.3835,'-20.26'],[0.2824,'-15.71']],
[[0.3519,'0:42.232'],[0.4770,'-11.26'],[0.3867,'-20.40'],[0.2994,'-16.47']],
[[0.3535,'0:42.418'],[0.4821,'-11.43'],[0.3810,'-20.15'],[0.3135,'-17.11']],
[[0.3550,'0:42.604'],[0.4636,'-10.82'],[0.2957,'-16.31'],[0.3022,'-16.60']],
[[0.3566,'0:42.790'],[0.4609,'-10.73'],[0.2103,'-12.46'],[0.2909,'-16.09']],
[[0.3581,'0:42.976'],[0.5005,'-12.06'],[0.1823,'-11.20'],[0.2768,'-15.46']],
[[0.3597,'0:43.162'],[0.1263,'-2.35'],[0.1574,'-10.08'],[0.2626,'-14.82']],
[[0.3612,'0:43.348'],[0.1976,'-3.82'],[0.1633,'-10.35'],[0.2518,'-14.33']],
[[0.3628,'0:43.534'],[0.1783,'-3.41'],[0.1770,'-10.97'],[0.2418,'-13.88']],
[[0.3643,'0:43.720'],[0.2478,'-4.95'],[0.1817,'-11.18'],[0.2369,'-13.66']],
[[0.3659,'0:43.906'],[0.2057,'-4.00'],[0.1816,'-11.17'],[0.2347,'-13.56']],
[[0.3674,'0:44.093'],[0.2428,'-4.83'],[0.1832,'-11.24'],[0.2318,'-13.43']],
[[0.3690,'0:44.279'],[0.1946,'-3.76'],[0.1865,'-11.39'],[0.2282,'-13.27']],
[[0.3705,'0:44.465'],[0.2397,'-4.76'],[0.1912,'-11.60'],[0.2245,'-13.10']],
[[0.3721,'0:44.651'],[0.2519,'-5.04'],[0.1984,'-11.93'],[0.2207,'-12.93']],
[[0.3736,'0:44.837'],[0.2934,'-6.03'],[0.2080,'-12.36'],[0.2173,'-12.78']],
[[0.3752,'0:45.023'],[0.3333,'-7.04'],[0.2267,'-13.20'],[0.2151,'-12.68']],
[[0.3767,'0:45.209'],[0.3155,'-6.58'],[0.2449,'-14.02'],[0.2128,'-12.58']],
[[0.3783,'0:45.395'],[0.3463,'-7.39'],[0.2526,'-14.37'],[0.2101,'-12.45']],
[[0.3798,'0:45.581'],[0.3592,'-7.73'],[0.2604,'-14.72'],[0.2074,'-12.33']],
[[0.3814,'0:45.767'],[0.3440,'-7.32'],[0.2519,'-14.34'],[0.2068,'-12.31']],
[[0.3829,'0:45.953'],[0.3045,'-6.31'],[0.2416,'-13.87'],[0.2065,'-12.29']],
[[0.3845,'0:46.139'],[0.2884,'-5.91'],[0.2372,'-13.67'],[0.2115,'-12.52']],
[[0.3860,'0:46.325'],[0.2355,'-4.66'],[0.2347,'-13.56'],[0.2182,'-12.82']],
[[0.3876,'0:46.511'],[0.2901,'-5.95'],[0.2315,'-13.42'],[0.2228,'-13.03']],
[[0.3891,'0:46.697'],[0.2883,'-5.91'],[0.2278,'-13.25'],[0.2262,'-13.18']],
[[0.3907,'0:46.883'],[0.3097,'-6.44'],[0.2236,'-13.06'],[0.2294,'-13.32']],
[[0.3922,'0:47.069'],[0.3111,'-6.47'],[0.2188,'-12.85'],[0.2325,'-13.46']],
[[0.3938,'0:47.255'],[0.3199,'-6.70'],[0.2160,'-12.72'],[0.2352,'-13.58']],
[[0.3953,'0:47.441'],[0.2715,'-5.50'],[0.2177,'-12.80'],[0.2371,'-13.67']],
[[0.3969,'0:47.627'],[0.2935,'-6.04'],[0.2202,'-12.91'],[0.2389,'-13.75']],
[[0.3984,'0:47.813'],[0.2626,'-5.29'],[0.2276,'-13.24'],[0.2397,'-13.79']],
[[0.4000,'0:48.000'],[0.2749,'-5.58'],[0.2349,'-13.57'],[0.2404,'-13.82']],
[[0.4016,'0:48.186'],[0.3351,'-7.09'],[0.2535,'-14.41'],[0.2409,'-13.84']],
[[0.4031,'0:48.372'],[0.3916,'-8.63'],[0.2722,'-15.25'],[0.2413,'-13.86']],
[[0.4047,'0:48.558'],[0.4172,'-9.38'],[0.2802,'-15.61'],[0.2424,'-13.91']],
[[0.4062,'0:48.744'],[0.4360,'-9.95'],[0.2864,'-15.89'],[0.2435,'-13.96']],
[[0.4078,'0:48.930'],[0.4515,'-10.43'],[0.2831,'-15.74'],[0.2453,'-14.04']],
[[0.4093,'0:49.116'],[0.3984,'-8.83'],[0.2758,'-15.41'],[0.2473,'-14.13']],
[[0.4109,'0:49.302'],[0.3683,'-7.98'],[0.2711,'-15.20'],[0.2494,'-14.22']],
[[0.4124,'0:49.488'],[0.3608,'-7.77'],[0.2685,'-15.08'],[0.2516,'-14.32']],
[[0.4140,'0:49.674'],[0.4231,'-9.56'],[0.2664,'-14.99'],[0.2538,'-14.42']],
[[0.4155,'0:49.860'],[0.3862,'-8.48'],[0.2650,'-14.93'],[0.2563,'-14.54']],
[[0.4171,'0:50.046'],[0.3243,'-6.81'],[0.2648,'-14.91'],[0.2593,'-14.67']],
[[0.4186,'0:50.232'],[0.3395,'-7.21'],[0.2677,'-15.05'],[0.2636,'-14.86']],
[[0.4202,'0:50.418'],[0.3497,'-7.48'],[0.2705,'-15.17'],[0.2678,'-15.05']],
[[0.4217,'0:50.604'],[0.4175,'-9.39'],[0.2719,'-15.24'],[0.2714,'-15.22']],
[[0.4233,'0:50.790'],[0.4223,'-9.53'],[0.2733,'-15.30'],[0.2751,'-15.38']],
[[0.4248,'0:50.976'],[0.4076,'-9.09'],[0.3238,'-17.57'],[0.2812,'-15.65']],
[[0.4264,'0:51.162'],[0.5251,'-12.94'],[0.3770,'-19.96'],[0.2874,'-15.93']],
[[0.4279,'0:51.348'],[0.6260,'-17.08'],[0.4269,'-22.21'],[0.2929,'-16.18']],
[[0.4295,'0:51.534'],[0.5996,'-15.90'],[0.4760,'-24.42'],[0.2981,'-16.41']],
[[0.4310,'0:51.720'],[0.6107,'-16.39'],[0.4922,'-25.15'],[0.3037,'-16.67']],
[[0.4326,'0:51.906'],[0.6417,'-17.83'],[0.4907,'-25.08'],[0.3096,'-16.93']],
[[0.4341,'0:52.093'],[0.6069,'-16.22'],[0.4893,'-25.02'],[0.3168,'-17.26']],
[[0.4357,'0:52.279'],[0.6242,'-17.00'],[0.4878,'-24.95'],[0.3255,'-17.65']],
[[0.4372,'0:52.465'],[0.6131,'-16.50'],[0.4888,'-25.00'],[0.3353,'-18.09']],
[[0.4388,'0:52.651'],[0.6541,'-18.44'],[0.4944,'-25.25'],[0.3471,'-18.62']],
[[0.4403,'0:52.837'],[0.6927,'-20.50'],[0.4967,'-25.35'],[0.3599,'-19.20']],
[[0.4419,'0:53.023'],[0.6354,'-17.53'],[0.4864,'-24.89'],[0.3769,'-19.96']],
[[0.4434,'0:53.209'],[0.5859,'-15.32'],[0.4770,'-24.46'],[0.3943,'-20.74']],
[[0.4450,'0:53.395'],[0.6254,'-17.06'],[0.4828,'-24.72'],[0.4168,'-21.75']],
[[0.4465,'0:53.581'],[0.6289,'-17.22'],[0.4885,'-24.98'],[0.4393,'-22.77']],
[[0.4481,'0:53.767'],[0.6386,'-17.68'],[0.4910,'-25.10'],[0.4662,'-23.98']],
[[0.4496,'0:53.953'],[0.6281,'-17.18'],[0.4932,'-25.19'],[0.4936,'-25.21']],
[[0.4512,'0:54.139'],[0.6618,'-18.83'],[0.4755,'-24.40'],[0.4974,'-25.38']],
[[0.4527,'0:54.325'],[0.6146,'-16.56'],[0.4512,'-23.30'],[0.4932,'-25.19']],
[[0.4543,'0:54.511'],[0.6658,'-19.04'],[0.4275,'-22.24'],[0.4868,'-24.90']],
[[0.4558,'0:54.697'],[0.6319,'-17.36'],[0.4043,'-21.19'],[0.4789,'-24.55']],
[[0.4574,'0:54.883'],[0.5353,'-13.31'],[0.3956,'-20.80'],[0.4721,'-24.25']],
[[0.4589,'0:55.069'],[0.5846,'-15.26'],[0.4047,'-21.21'],[0.4668,'-24.01']],
[[0.4605,'0:55.255'],[0.5738,'-14.82'],[0.4134,'-21.60'],[0.4621,'-23.80']],
[[0.4620,'0:55.441'],[0.5741,'-14.83'],[0.4215,'-21.97'],[0.4591,'-23.66']],
[[0.4636,'0:55.627'],[0.5984,'-15.85'],[0.4299,'-22.35'],[0.4563,'-23.53']],
[[0.4651,'0:55.813'],[0.6250,'-17.04'],[0.4400,'-22.80'],[0.4551,'-23.48']],
[[0.4667,'0:56.000'],[0.5995,'-15.90'],[0.4501,'-23.26'],[0.4538,'-23.42']],
[[0.4682,'0:56.186'],[0.6210,'-16.86'],[0.4363,'-22.63'],[0.4492,'-23.21']],
[[0.4698,'0:56.372'],[0.6075,'-16.25'],[0.4224,'-22.01'],[0.4445,'-23.00']],
[[0.4713,'0:56.558'],[0.6440,'-17.94'],[0.4118,'-21.53'],[0.4394,'-22.78']],
[[0.4729,'0:56.744'],[0.5919,'-15.57'],[0.4018,'-21.08'],[0.4343,'-22.54']],
[[0.4744,'0:56.930'],[0.5669,'-14.54'],[0.4036,'-21.16'],[0.4310,'-22.40']],
[[0.4760,'0:57.116'],[0.5741,'-14.83'],[0.4104,'-21.47'],[0.4285,'-22.28']],
[[0.4775,'0:57.302'],[0.5747,'-14.85'],[0.4191,'-21.86'],[0.4272,'-22.22']],
[[0.4791,'0:57.488'],[0.6102,'-16.37'],[0.4294,'-22.32'],[0.4269,'-22.21']],
[[0.4806,'0:57.674'],[0.6187,'-16.75'],[0.4375,'-22.69'],[0.4283,'-22.27']],
[[0.4822,'0:57.860'],[0.6235,'-16.97'],[0.4422,'-22.90'],[0.4321,'-22.45']],
[[0.4837,'0:58.046'],[0.5746,'-14.85'],[0.4407,'-22.83'],[0.4346,'-22.56']],
[[0.4853,'0:58.232'],[0.5597,'-14.25'],[0.4202,'-21.91'],[0.4331,'-22.49']],
[[0.4868,'0:58.418'],[0.6130,'-16.49'],[0.4004,'-21.02'],[0.4313,'-22.41']],
[[0.4884,'0:58.604'],[0.6247,'-17.02'],[0.3875,'-20.44'],[0.4264,'-22.19']],
[[0.4899,'0:58.790'],[0.5047,'-12.20'],[0.3747,'-19.86'],[0.4215,'-21.97']],
[[0.4915,'0:58.976'],[0.5124,'-12.48'],[0.3741,'-19.83'],[0.4164,'-21.74']],
[[0.4930,'0:59.162'],[0.5314,'-13.17'],[0.3742,'-19.84'],[0.4113,'-21.51']],
[[0.4946,'0:59.348'],[0.5585,'-14.20'],[0.3766,'-19.95'],[0.4093,'-21.42']],
[[0.4961,'0:59.534'],[0.5213,'-12.80'],[0.3797,'-20.08'],[0.4080,'-21.36']],
[[0.4977,'0:59.720'],[0.5593,'-14.23'],[0.3799,'-20.10'],[0.4059,'-21.27']],
[[0.4992,'0:59.906'],[0.4678,'-10.96'],[0.3787,'-20.04'],[0.4033,'-21.15']],
[[0.5008,'1:00.093'],[0.5501,'-13.88'],[0.3784,'-20.03'],[0.4006,'-21.03']],
[[0.5023,'1:00.279'],[0.5308,'-13.14'],[0.3790,'-20.06'],[0.3977,'-20.90']],
[[0.5039,'1:00.465'],[0.5267,'-13.00'],[0.3798,'-20.09'],[0.3948,'-20.76']],
[[0.5054,'1:00.651'],[0.4967,'-11.93'],[0.3810,'-20.15'],[0.3918,'-20.63']],
[[0.5070,'1:00.837'],[0.5480,'-13.79'],[0.3820,'-20.19'],[0.3888,'-20.50']],
[[0.5085,'1:01.023'],[0.5528,'-13.98'],[0.3820,'-20.19'],[0.3859,'-20.37']],
[[0.5101,'1:01.209'],[0.5440,'-13.64'],[0.3822,'-20.20'],[0.3832,'-20.24']],
[[0.5116,'1:01.395'],[0.5556,'-14.09'],[0.3856,'-20.35'],[0.3838,'-20.27']],
[[0.5132,'1:01.581'],[0.5650,'-14.46'],[0.3889,'-20.50'],[0.3843,'-20.29']],
[[0.5147,'1:01.767'],[0.5534,'-14.00'],[0.3940,'-20.73'],[0.3854,'-20.34']],
[[0.5163,'1:01.953'],[0.5504,'-13.89'],[0.3992,'-20.96'],[0.3866,'-20.40']],
[[0.5178,'1:02.139'],[0.5310,'-13.15'],[0.3764,'-19.94'],[0.3857,'-20.36']],
[[0.5194,'1:02.325'],[0.5221,'-12.82'],[0.3444,'-18.50'],[0.3841,'-20.28']],
[[0.5209,'1:02.511'],[0.5156,'-12.59'],[0.3209,'-17.44'],[0.3784,'-20.03']],
[[0.5225,'1:02.697'],[0.4647,'-10.86'],[0.3031,'-16.64'],[0.3700,'-19.65']],
[[0.5240,'1:02.883'],[0.5097,'-12.38'],[0.2931,'-16.19'],[0.3637,'-19.37']],
[[0.5256,'1:03.069'],[0.4569,'-10.61'],[0.2924,'-16.16'],[0.3602,'-19.21']],
[[0.5271,'1:03.255'],[0.4600,'-10.70'],[0.2980,'-16.41'],[0.3573,'-19.08']],
[[0.5287,'1:03.441'],[0.4657,'-10.89'],[0.3180,'-17.31'],[0.3559,'-19.02']],
[[0.5302,'1:03.627'],[0.5192,'-12.72'],[0.3364,'-18.14'],[0.3545,'-18.95']],
[[0.5318,'1:03.813'],[0.4869,'-11.59'],[0.3456,'-18.55'],[0.3532,'-18.89']],
[[0.5333,'1:04.000'],[0.5081,'-12.32'],[0.3548,'-18.96'],[0.3519,'-18.84']],
[[0.5349,'1:04.186'],[0.5282,'-13.05'],[0.3492,'-18.71'],[0.3491,'-18.71']],
[[0.5364,'1:04.372'],[0.4643,'-10.84'],[0.3436,'-18.46'],[0.3463,'-18.58']],
[[0.5380,'1:04.558'],[0.5276,'-13.03'],[0.3409,'-18.34'],[0.3433,'-18.45']],
[[0.5395,'1:04.744'],[0.5194,'-12.73'],[0.3386,'-18.24'],[0.3404,'-18.32']],
[[0.5411,'1:04.930'],[0.5245,'-12.92'],[0.3408,'-18.34'],[0.3386,'-18.24']],
[[0.5426,'1:05.116'],[0.4703,'-11.04'],[0.3449,'-18.52'],[0.3373,'-18.18']],
[[0.5442,'1:05.302'],[0.5407,'-13.51'],[0.3528,'-18.88'],[0.3373,'-18.18']],
[[0.5457,'1:05.488'],[0.5217,'-12.81'],[0.3637,'-19.37'],[0.3386,'-18.24']],
[[0.5473,'1:05.674'],[0.5502,'-13.88'],[0.3564,'-19.04'],[0.3410,'-18.34']],
[[0.5488,'1:05.860'],[0.5442,'-13.65'],[0.3218,'-17.48'],[0.3451,'-18.53']],
[[0.5504,'1:06.046'],[0.5281,'-13.04'],[0.2851,'-15.83'],[0.3445,'-18.50']],
[[0.5519,'1:06.232'],[0.5667,'-14.53'],[0.2422,'-13.90'],[0.3297,'-17.84']],
[[0.5535,'1:06.418'],[0.2325,'-4.60'],[0.2034,'-12.16'],[0.3150,'-17.18']],
[[0.5550,'1:06.604'],[0.2388,'-4.74'],[0.2020,'-12.09'],[0.3015,'-16.57']],
[[0.5566,'1:06.790'],[0.3804,'-8.32'],[0.2006,'-12.03'],[0.2880,'-15.96']],
[[0.5581,'1:06.976'],[0.2735,'-5.55'],[0.2014,'-12.06'],[0.2777,'-15.49']],
[[0.5597,'1:07.162'],[0.2950,'-6.07'],[0.2023,'-12.10'],[0.2675,'-15.04']],
[[0.5612,'1:07.348'],[0.3291,'-6.93'],[0.2001,'-12.01'],[0.2622,'-14.80']],
[[0.5628,'1:07.534'],[0.3423,'-7.28'],[0.1972,'-11.87'],[0.2581,'-14.61']],
[[0.5643,'1:07.720'],[0.3060,'-6.35'],[0.2196,'-12.88'],[0.2573,'-14.58']],
[[0.5659,'1:07.906'],[0.3231,'-6.78'],[0.2556,'-14.50'],[0.2582,'-14.62']],
[[0.5674,'1:08.093'],[0.5037,'-12.17'],[0.3065,'-16.79'],[0.2592,'-14.67']],
[[0.5690,'1:08.279'],[0.5941,'-15.66'],[0.3722,'-19.75'],[0.2603,'-14.71']],
[[0.5705,'1:08.465'],[0.5309,'-13.15'],[0.4147,'-21.66'],[0.2612,'-14.75']],
[[0.5721,'1:08.651'],[0.5988,'-15.87'],[0.4138,'-21.62'],[0.2618,'-14.78']],
[[0.5736,'1:08.837'],[0.4889,'-11.66'],[0.4050,'-21.23'],[0.2622,'-14.80']],
[[0.5752,'1:09.023'],[0.5208,'-12.78'],[0.3647,'-19.41'],[0.2620,'-14.79']],
[[0.5767,'1:09.209'],[0.5929,'-15.61'],[0.3250,'-17.62'],[0.2622,'-14.80']],
[[0.5783,'1:09.395'],[0.4317,'-9.82'],[0.2959,'-16.32'],[0.2689,'-15.10']],
[[0.5798,'1:09.581'],[0.3424,'-7.28'],[0.2668,'-15.01'],[0.2755,'-15.40']],
[[0.5814,'1:09.767'],[0.3866,'-8.49'],[0.2471,'-14.12'],[0.2819,'-15.68']],
[[0.5829,'1:09.953'],[0.2683,'-5.43'],[0.2285,'-13.28'],[0.2882,'-15.97']],
[[0.5845,'1:10.139'],[0.3950,'-8.73'],[0.2209,'-12.94'],[0.2915,'-16.12']],
[[0.5860,'1:10.325'],[0.2865,'-5.86'],[0.2171,'-12.77'],[0.2938,'-16.22']],
[[0.5876,'1:10.511'],[0.3057,'-6.34'],[0.2124,'-12.56'],[0.2884,'-15.98']],
[[0.5891,'1:10.697'],[0.3078,'-6.39'],[0.2071,'-12.32'],[0.2779,'-15.50']],
[[0.5907,'1:10.883'],[0.2501,'-5.00'],[0.2045,'-12.20'],[0.2680,'-15.06']],
[[0.5922,'1:11.069'],[0.2908,'-5.97'],[0.2051,'-12.23'],[0.2590,'-14.66']],
[[0.5938,'1:11.255'],[0.3352,'-7.09'],[0.2066,'-12.29'],[0.2525,'-14.36']],
[[0.5953,'1:11.441'],[0.3715,'-8.07'],[0.2097,'-12.44'],[0.2518,'-14.33']],
[[0.5969,'1:11.627'],[0.3406,'-7.23'],[0.2147,'-12.66'],[0.2504,'-14.27']],
[[0.5984,'1:11.813'],[0.3627,'-7.83'],[0.2302,'-13.36'],[0.2456,'-14.05']],
[[0.6000,'1:12.000'],[0.5406,'-13.51'],[0.2457,'-14.06'],[0.2408,'-13.84']],
[[0.6016,'1:12.186'],[0.6035,'-16.07'],[0.2327,'-13.47'],[0.2378,'-13.70']],
[[0.6031,'1:12.372'],[0.2535,'-5.08'],[0.2197,'-12.89'],[0.2349,'-13.57']],
[[0.6047,'1:12.558'],[0.3095,'-6.43'],[0.2154,'-12.69'],[0.2320,'-13.44']],
[[0.6062,'1:12.744'],[0.3119,'-6.49'],[0.2126,'-12.57'],[0.2290,'-13.31']],
[[0.6078,'1:12.930'],[0.3537,'-7.58'],[0.2118,'-12.53'],[0.2283,'-13.28']],
[[0.6093,'1:13.116'],[0.2974,'-6.13'],[0.2118,'-12.53'],[0.2286,'-13.29']],
[[0.6109,'1:13.302'],[0.2792,'-5.69'],[0.2177,'-12.79'],[0.2293,'-13.32']],
[[0.6124,'1:13.488'],[0.3311,'-6.99'],[0.2284,'-13.28'],[0.2305,'-13.37']],
[[0.6140,'1:13.674'],[0.3708,'-8.05'],[0.2343,'-13.54'],[0.2343,'-13.54']],
[[0.6155,'1:13.860'],[0.3670,'-7.94'],[0.2329,'-13.48'],[0.2420,'-13.89']],
[[0.6171,'1:14.046'],[0.5421,'-13.57'],[0.2293,'-13.32'],[0.2473,'-14.13']],
[[0.6186,'1:14.232'],[0.2941,'-6.05'],[0.2191,'-12.86'],[0.2449,'-14.02']],
[[0.6202,'1:14.418'],[0.3181,'-6.65'],[0.2095,'-12.43'],[0.2422,'-13.90']],
[[0.6217,'1:14.604'],[0.3548,'-7.61'],[0.2067,'-12.30'],[0.2364,'-13.64']],
[[0.6233,'1:14.790'],[0.2974,'-6.13'],[0.2038,'-12.17'],[0.2307,'-13.38']],
[[0.6248,'1:14.976'],[0.3320,'-7.01'],[0.2043,'-12.19'],[0.2296,'-13.33']],
[[0.6264,'1:15.162'],[0.3523,'-7.55'],[0.2049,'-12.22'],[0.2287,'-13.29']],
[[0.6279,'1:15.348'],[0.3609,'-7.78'],[0.2134,'-12.61'],[0.2301,'-13.35']],
[[0.6295,'1:15.534'],[0.3780,'-8.25'],[0.2240,'-13.08'],[0.2320,'-13.44']],
[[0.6310,'1:15.720'],[0.3419,'-7.27'],[0.2866,'-15.90'],[0.2371,'-13.67']],
[[0.6326,'1:15.906'],[0.5686,'-14.60'],[0.3772,'-19.97'],[0.2440,'-13.98']],
[[0.6341,'1:16.093'],[0.5495,'-13.85'],[0.4241,'-22.09'],[0.2513,'-14.31']],
[[0.6357,'1:16.279'],[0.5118,'-12.46'],[0.4275,'-22.24'],[0.2589,'-14.65']],
[[0.6372,'1:16.465'],[0.5711,'-14.71'],[0.4294,'-22.32'],[0.2648,'-14.91']],
[[0.6388,'1:16.651'],[0.5389,'-13.45'],[0.4288,'-22.30'],[0.2674,'-15.03']],
[[0.6403,'1:16.837'],[0.5497,'-13.86'],[0.4102,'-21.46'],[0.2703,'-15.16']],
[[0.6419,'1:17.023'],[0.5535,'-14.01'],[0.3197,'-17.39'],[0.2743,'-15.34']],
[[0.6434,'1:17.209'],[0.5691,'-14.63'],[0.2335,'-13.51'],[0.2781,'-15.51']],
[[0.6450,'1:17.395'],[0.3766,'-8.21'],[0.2297,'-13.34'],[0.2795,'-15.58']],
[[0.6465,'1:17.581'],[0.2636,'-5.32'],[0.2258,'-13.16'],[0.2809,'-15.64']],
[[0.6481,'1:17.767'],[0.3154,'-6.58'],[0.2185,'-12.83'],[0.2829,'-15.73']],
[[0.6496,'1:17.953'],[0.3162,'-6.60'],[0.2107,'-12.48'],[0.2850,'-15.82']],
[[0.6512,'1:18.139'],[0.2307,'-4.56'],[0.2074,'-12.33'],[0.2803,'-15.61']],
[[0.6527,'1:18.325'],[0.2517,'-5.04'],[0.2057,'-12.26'],[0.2734,'-15.30']],
[[0.6543,'1:18.511'],[0.2747,'-5.58'],[0.2061,'-12.27'],[0.2656,'-14.95']],
[[0.6558,'1:18.697'],[0.2990,'-6.17'],[0.2079,'-12.35'],[0.2572,'-14.57']],
[[0.6574,'1:18.883'],[0.2869,'-5.87'],[0.2106,'-12.48'],[0.2510,'-14.29']],
[[0.6589,'1:19.069'],[0.3705,'-8.04'],[0.2145,'-12.65'],[0.2475,'-14.14']],
[[0.6605,'1:19.255'],[0.3368,'-7.13'],[0.2268,'-13.20'],[0.2442,'-13.99']],
[[0.6620,'1:19.441'],[0.3010,'-6.22'],[0.2586,'-14.64'],[0.2413,'-13.86']],
[[0.6636,'1:19.627'],[0.3257,'-6.85'],[0.2796,'-15.58'],[0.2381,'-13.71']],
[[0.6651,'1:19.813'],[0.5656,'-14.49'],[0.2394,'-13.77'],[0.2326,'-13.47']],
[[0.6667,'1:20.000'],[0.2589,'-5.21'],[0.1993,'-11.97'],[0.2272,'-13.22']],
[[0.6682,'1:20.186'],[0.2720,'-5.51'],[0.1912,'-11.61'],[0.2237,'-13.07']],
[[0.6698,'1:20.372'],[0.2592,'-5.21'],[0.1832,'-11.25'],[0.2202,'-12.91']],
[[0.6713,'1:20.558'],[0.2572,'-5.17'],[0.1800,'-11.10'],[0.2179,'-12.81']],
[[0.6729,'1:20.744'],[0.1834,'-3.52'],[0.1776,'-10.99'],[0.2158,'-12.71']],
[[0.6744,'1:20.930'],[0.2118,'-4.13'],[0.1806,'-11.13'],[0.2150,'-12.68']],
[[0.6760,'1:21.116'],[0.1769,'-3.38'],[0.1859,'-11.36'],[0.2149,'-12.67']],
[[0.6775,'1:21.302'],[0.1646,'-3.12'],[0.1870,'-11.42'],[0.2153,'-12.69']],
[[0.6791,'1:21.488'],[0.1888,'-3.63'],[0.1849,'-11.32'],[0.2161,'-12.73']],
[[0.6806,'1:21.674'],[0.4520,'-10.45'],[0.1799,'-11.10'],[0.2166,'-12.75']],
[[0.6822,'1:21.860'],[0.2857,'-5.84'],[0.1707,'-10.68'],[0.2164,'-12.74']],
[[0.6837,'1:22.046'],[0.0659,'-1.18'],[0.1745,'-10.85'],[0.2166,'-12.75']],
[[0.6853,'1:22.232'],[0.2283,'-4.50'],[0.2174,'-12.78'],[0.2177,'-12.80']],
[[0.6868,'1:22.418'],[0.1999,'-3.87'],[0.2627,'-14.82'],[0.2187,'-12.84']],
[[0.6884,'1:22.604'],[0.5028,'-12.14'],[0.3298,'-17.84'],[0.2187,'-12.84']],
[[0.6899,'1:22.790'],[0.4305,'-9.78'],[0.3968,'-20.86'],[0.2187,'-12.84']],
[[0.6915,'1:22.976'],[0.4817,'-11.42'],[0.3995,'-20.98'],[0.2252,'-13.13']],
[[0.6930,'1:23.162'],[0.5265,'-12.99'],[0.3989,'-20.95'],[0.2320,'-13.44']],
[[0.6946,'1:23.348'],[0.5295,'-13.10'],[0.3230,'-17.54'],[0.2409,'-13.84']],
[[0.6961,'1:23.534'],[0.4782,'-11.30'],[0.2283,'-13.27'],[0.2503,'-14.26']],
[[0.6977,'1:23.720'],[0.3861,'-8.48'],[0.1874,'-11.43'],[0.2537,'-14.42']],
[[0.6992,'1:23.906'],[0.1009,'-1.85'],[0.1755,'-10.90'],[0.2538,'-14.42']],
[[0.7008,'1:24.093'],[0.2074,'-4.04'],[0.1903,'-11.57'],[0.2558,'-14.51']],
[[0.7023,'1:24.279'],[0.1769,'-3.38'],[0.2319,'-13.44'],[0.2599,'-14.70']],
[[0.7039,'1:24.465'],[0.2791,'-5.68'],[0.2784,'-15.53'],[0.2657,'-14.96']],
[[0.7054,'1:24.651'],[0.4618,'-10.76'],[0.3341,'-18.04'],[0.2747,'-15.36']],
[[0.7070,'1:24.837'],[0.4851,'-11.53'],[0.3785,'-20.03'],[0.2845,'-15.80']],
[[0.7085,'1:25.023'],[0.5287,'-13.07'],[0.3772,'-19.98'],[0.2976,'-16.39']],
[[0.7101,'1:25.209'],[0.4872,'-11.60'],[0.3720,'-19.74'],[0.3094,'-16.92']],
[[0.7116,'1:25.395'],[0.4118,'-9.22'],[0.2900,'-16.05'],[0.2954,'-16.29']],
[[0.7132,'1:25.581'],[0.3689,'-8.00'],[0.2080,'-12.36'],[0.2815,'-15.67']],
[[0.7147,'1:25.767'],[0.5053,'-12.23'],[0.1963,'-11.83'],[0.2765,'-15.44']],
[[0.7163,'1:25.953'],[0.1438,'-2.70'],[0.1923,'-11.66'],[0.2724,'-15.26']],
[[0.7178,'1:26.139'],[0.3029,'-6.27'],[0.2299,'-13.35'],[0.2711,'-15.20']],
[[0.7194,'1:26.325'],[0.2850,'-5.83'],[0.2813,'-15.66'],[0.2706,'-15.18']],
[[0.7209,'1:26.511'],[0.4203,'-9.47'],[0.3235,'-17.56'],[0.2744,'-15.35']],
[[0.7225,'1:26.697'],[0.4598,'-10.70'],[0.3595,'-19.18'],[0.2810,'-15.65']],
[[0.7240,'1:26.883'],[0.4464,'-10.27'],[0.3623,'-19.30'],[0.2898,'-16.04']],
[[0.7256,'1:27.069'],[0.5106,'-12.41'],[0.3246,'-17.61'],[0.3014,'-16.56']],
[[0.7271,'1:27.255'],[0.4667,'-10.92'],[0.2800,'-15.60'],[0.3047,'-16.71']],
[[0.7287,'1:27.441'],[0.4900,'-11.70'],[0.2197,'-12.88'],[0.2884,'-15.98']],
[[0.7302,'1:27.627'],[0.4338,'-9.88'],[0.1700,'-10.65'],[0.2744,'-15.35']],
[[0.7318,'1:27.813'],[0.0756,'-1.37'],[0.1812,'-11.15'],[0.2730,'-15.29']],
[[0.7333,'1:28.000'],[0.2515,'-5.03'],[0.1923,'-11.66'],[0.2717,'-15.22']],
[[0.7349,'1:28.186'],[0.2370,'-4.70'],[0.2687,'-15.09'],[0.2715,'-15.22']],
[[0.7364,'1:28.372'],[0.4379,'-10.01'],[0.3450,'-18.53'],[0.2714,'-15.21']],
[[0.7380,'1:28.558'],[0.4362,'-9.96'],[0.3581,'-19.11'],[0.2775,'-15.49']],
[[0.7395,'1:28.744'],[0.4439,'-10.19'],[0.3600,'-19.20'],[0.2847,'-15.81']],
[[0.7411,'1:28.930'],[0.4970,'-11.94'],[0.3151,'-17.18'],[0.2861,'-15.87']],
[[0.7426,'1:29.116'],[0.4884,'-11.64'],[0.2501,'-14.26'],[0.2849,'-15.82']],
[[0.7442,'1:29.302'],[0.4772,'-11.27'],[0.2025,'-12.11'],[0.2770,'-15.47']],
[[0.7457,'1:29.488'],[0.4692,'-11.00'],[0.1691,'-10.61'],[0.2637,'-14.87']],
[[0.7473,'1:29.674'],[0.0614,'-1.10'],[0.1559,'-10.01'],[0.2555,'-14.50']],
[[0.7488,'1:29.860'],[0.0904,'-1.65'],[0.1729,'-10.78'],[0.2547,'-14.46']],
[[0.7504,'1:30.046'],[0.1950,'-3.77'],[0.2053,'-12.24'],[0.2541,'-14.44']],
[[0.7519,'1:30.232'],[0.2794,'-5.69'],[0.2839,'-15.78'],[0.2539,'-14.43']],
[[0.7535,'1:30.418'],[0.4377,'-10.00'],[0.3559,'-19.01'],[0.2549,'-14.47']],
[[0.7550,'1:30.604'],[0.4715,'-11.08'],[0.3684,'-19.58'],[0.2667,'-15.00']],
[[0.7566,'1:30.790'],[0.4461,'-10.26'],[0.3809,'-20.14'],[0.2784,'-15.53']],
[[0.7581,'1:30.976'],[0.5110,'-12.43'],[0.3010,'-16.54'],[0.2738,'-15.32']],
[[0.7597,'1:31.162'],[0.3978,'-8.81'],[0.2162,'-12.73'],[0.2683,'-15.07']],
[[0.7612,'1:31.348'],[0.5050,'-12.22'],[0.1806,'-11.13'],[0.2587,'-14.64']],
[[0.7628,'1:31.534'],[0.4742,'-11.17'],[0.1573,'-10.08'],[0.2481,'-14.16']],
[[0.7643,'1:31.720'],[0.0904,'-1.65'],[0.1621,'-10.30'],[0.2442,'-13.99']],
[[0.7659,'1:31.906'],[0.2170,'-4.25'],[0.1820,'-11.19'],[0.2440,'-13.98']],
[[0.7674,'1:32.093'],[0.1477,'-2.78'],[0.2279,'-13.25'],[0.2437,'-13.97']],
[[0.7690,'1:32.279'],[0.4646,'-10.85'],[0.2997,'-16.49'],[0.2433,'-13.95']],
[[0.7705,'1:32.465'],[0.4149,'-9.31'],[0.3499,'-18.74'],[0.2484,'-14.18']],
[[0.7721,'1:32.651'],[0.4424,'-10.15'],[0.3599,'-19.20'],[0.2635,'-14.86']],
[[0.7736,'1:32.837'],[0.4421,'-10.14'],[0.3515,'-18.82'],[0.2742,'-15.34']],
[[0.7752,'1:33.023'],[0.4874,'-11.61'],[0.2694,'-15.12'],[0.2673,'-15.03']],
[[0.7767,'1:33.209'],[0.4244,'-9.59'],[0.1906,'-11.58'],[0.2603,'-14.71']],
[[0.7783,'1:33.395'],[0.3804,'-8.31'],[0.1771,'-10.97'],[0.2497,'-14.23']],
[[0.7798,'1:33.581'],[0.0848,'-1.54'],[0.1637,'-10.36'],[0.2390,'-13.76']],
[[0.7814,'1:33.767'],[0.2701,'-5.47'],[0.1683,'-10.57'],[0.2297,'-13.34']],
[[0.7829,'1:33.953'],[0.2188,'-4.29'],[0.1749,'-10.87'],[0.2205,'-12.92']],
[[0.7845,'1:34.139'],[0.1620,'-3.07'],[0.1766,'-10.95'],[0.2183,'-12.82']],
[[0.7860,'1:34.325'],[0.1264,'-2.35'],[0.1766,'-10.95'],[0.2183,'-12.83']],
[[0.7876,'1:34.511'],[0.1823,'-3.50'],[0.1782,'-11.02'],[0.2178,'-12.80']],
[[0.7891,'1:34.697'],[0.2329,'-4.61'],[0.1808,'-11.14'],[0.2168,'-12.76']],
[[0.7907,'1:34.883'],[0.1813,'-3.47'],[0.1762,'-10.93'],[0.2128,'-12.58']],
[[0.7922,'1:35.069'],[0.2238,'-4.40'],[0.1627,'-10.32'],[0.2050,'-12.23']],
[[0.7938,'1:35.255'],[0.0796,'-1.44'],[0.1566,'-10.05'],[0.1996,'-11.98']],
[[0.7953,'1:35.441'],[0.2112,'-4.12'],[0.1673,'-10.53'],[0.1995,'-11.98']],
[[0.7969,'1:35.627'],[0.0863,'-1.57'],[0.1925,'-11.66'],[0.1994,'-11.98']],
[[0.7984,'1:35.813'],[0.1865,'-3.59'],[0.2997,'-16.49'],[0.1997,'-11.99']],
[[0.8000,'1:36.000'],[0.4825,'-11.44'],[0.4069,'-21.31'],[0.2000,'-12.00']],
[[0.8016,'1:36.186'],[0.5824,'-15.17'],[0.4095,'-21.43'],[0.2040,'-12.18']],
[[0.8031,'1:36.372'],[0.5532,'-14.00'],[0.4120,'-21.54'],[0.2080,'-12.36']],
[[0.8047,'1:36.558'],[0.5428,'-13.59'],[0.4100,'-21.45'],[0.2152,'-12.68']],
[[0.8062,'1:36.744'],[0.4584,'-10.65'],[0.4071,'-21.32'],[0.2228,'-13.03']],
[[0.8078,'1:36.930'],[0.5089,'-12.35'],[0.3238,'-17.57'],[0.2284,'-13.28']],
[[0.8093,'1:37.116'],[0.5257,'-12.96'],[0.2061,'-12.27'],[0.2332,'-13.49']],
[[0.8109,'1:37.302'],[0.4831,'-11.46'],[0.1505,'-9.77'],[0.2337,'-13.52']],
[[0.8124,'1:37.488'],[0.0631,'-1.13'],[0.1459,'-9.56'],[0.2308,'-13.38']],
[[0.8140,'1:37.674'],[0.1863,'-3.58'],[0.1489,'-9.70'],[0.2289,'-13.30']],
[[0.8155,'1:37.860'],[0.0661,'-1.19'],[0.1636,'-10.36'],[0.2288,'-13.29']],
[[0.8171,'1:38.046'],[0.2057,'-4.00'],[0.1715,'-10.72'],[0.2275,'-13.24']],
[[0.8186,'1:38.232'],[0.1424,'-2.67'],[0.1590,'-10.15'],[0.2227,'-13.02']],
[[0.8202,'1:38.418'],[0.1587,'-3.00'],[0.1482,'-9.67'],[0.2176,'-12.79']],
[[0.8217,'1:38.604'],[0.0762,'-1.38'],[0.1523,'-9.86'],[0.2083,'-12.37']],
[[0.8233,'1:38.790'],[0.1659,'-3.15'],[0.1565,'-10.04'],[0.1990,'-11.95']],
[[0.8248,'1:38.976'],[0.1246,'-2.31'],[0.1553,'-9.99'],[0.1917,'-11.63']],
[[0.8264,'1:39.162'],[0.1258,'-2.34'],[0.1537,'-9.92'],[0.1845,'-11.30']],
[[0.8279,'1:39.348'],[0.1174,'-2.17'],[0.1514,'-9.81'],[0.1775,'-10.99']],
[[0.8295,'1:39.534'],[0.1559,'-2.95'],[0.1489,'-9.70'],[0.1705,'-10.67']],
[[0.8310,'1:39.720'],[0.1293,'-2.41'],[0.1454,'-9.54'],[0.1657,'-10.46']],
[[0.8326,'1:39.906'],[0.1241,'-2.30'],[0.1414,'-9.36'],[0.1621,'-10.30']],
[[0.8341,'1:40.093'],[0.1001,'-1.83'],[0.1380,'-9.21'],[0.1594,'-10.17']],
[[0.8357,'1:40.279'],[0.1880,'-3.62'],[0.1353,'-9.09'],[0.1576,'-10.09']],
[[0.8372,'1:40.465'],[0.0852,'-1.55'],[0.1318,'-8.93'],[0.1553,'-9.99']],
[[0.8388,'1:40.651'],[0.0946,'-1.73'],[0.1266,'-8.70'],[0.1522,'-9.85']],
[[0.8403,'1:40.837'],[0.0997,'-1.82'],[0.1237,'-8.57'],[0.1497,'-9.74']],
[[0.8419,'1:41.023'],[0.0833,'-1.51'],[0.1303,'-8.86'],[0.1496,'-9.73']],
[[0.8434,'1:41.209'],[0.1710,'-3.26'],[0.1368,'-9.16'],[0.1494,'-9.72']],
[[0.8450,'1:41.395'],[0.1171,'-2.16'],[0.1417,'-9.38'],[0.1497,'-9.74']],
[[0.8465,'1:41.581'],[0.2119,'-4.14'],[0.1466,'-9.60'],[0.1499,'-9.75']],
[[0.8481,'1:41.767'],[0.0865,'-1.57'],[0.1541,'-9.93'],[0.1503,'-9.76']],
[[0.8496,'1:41.953'],[0.1216,'-2.25'],[0.1619,'-10.29'],[0.1507,'-9.78']],
[[0.8512,'1:42.139'],[0.0858,'-1.56'],[0.1568,'-10.06'],[0.1502,'-9.76']],
[[0.8527,'1:42.325'],[0.1195,'-2.21'],[0.1474,'-9.63'],[0.1496,'-9.73']],
[[0.8543,'1:42.511'],[0.1409,'-2.64'],[0.1472,'-9.63'],[0.1495,'-9.73']],
[[0.8558,'1:42.697'],[0.0960,'-1.75'],[0.1533,'-9.90'],[0.1498,'-9.74']],
[[0.8574,'1:42.883'],[0.1957,'-3.78'],[0.1576,'-10.09'],[0.1506,'-9.78']],
[[0.8589,'1:43.069'],[0.1073,'-1.97'],[0.1598,'-10.19'],[0.1522,'-9.85']],
[[0.8605,'1:43.255'],[0.1254,'-2.33'],[0.1588,'-10.15'],[0.1538,'-9.92']],
[[0.8620,'1:43.441'],[0.1854,'-3.56'],[0.1505,'-9.77'],[0.1551,'-9.98']],
[[0.8636,'1:43.627'],[0.0785,'-1.42'],[0.1439,'-9.47'],[0.1565,'-10.04']],
[[0.8651,'1:43.813'],[0.1419,'-2.66'],[0.1472,'-9.62'],[0.1580,'-10.11']],
[[0.8667,'1:44.000'],[0.0833,'-1.51'],[0.1505,'-9.77'],[0.1594,'-10.17']],
[[0.8682,'1:44.186'],[0.1582,'-2.99'],[0.1472,'-9.63'],[0.1589,'-10.15']],
[[0.8698,'1:44.372'],[0.1157,'-2.14'],[0.1440,'-9.48'],[0.1585,'-10.13']],
[[0.8713,'1:44.558'],[0.1510,'-2.84'],[0.1436,'-9.46'],[0.1570,'-10.07']],
[[0.8729,'1:44.744'],[0.1096,'-2.02'],[0.1438,'-9.47'],[0.1553,'-9.99']],
[[0.8744,'1:44.930'],[0.1084,'-1.99'],[0.1426,'-9.42'],[0.1547,'-9.96']],
[[0.8760,'1:45.116'],[0.0542,'-0.97'],[0.1410,'-9.34'],[0.1544,'-9.95']],
[[0.8775,'1:45.302'],[0.1167,'-2.16'],[0.1395,'-9.28'],[0.1538,'-9.92']],
[[0.8791,'1:45.488'],[0.1216,'-2.25'],[0.1382,'-9.22'],[0.1528,'-9.87']],
[[0.8806,'1:45.674'],[0.0837,'-1.52'],[0.1382,'-9.22'],[0.1518,'-9.83']],
[[0.8822,'1:45.860'],[0.0816,'-1.48'],[0.1402,'-9.31'],[0.1508,'-9.79']],
[[0.8837,'1:46.046'],[0.1532,'-2.89'],[0.1414,'-9.36'],[0.1499,'-9.75']],
[[0.8853,'1:46.232'],[0.0811,'-1.47'],[0.1403,'-9.31'],[0.1493,'-9.72']],
[[0.8868,'1:46.418'],[0.2123,'-4.14'],[0.1386,'-9.24'],[0.1485,'-9.68']],
[[0.8884,'1:46.604'],[0.0859,'-1.56'],[0.1310,'-8.89'],[0.1466,'-9.60']],
[[0.8899,'1:46.790'],[0.0976,'-1.78'],[0.1234,'-8.55'],[0.1447,'-9.51']],
[[0.8915,'1:46.976'],[0.1730,'-3.30'],[0.1231,'-8.54'],[0.1435,'-9.46']],
[[0.8930,'1:47.162'],[0.1173,'-2.17'],[0.1231,'-8.54'],[0.1423,'-9.40']],
[[0.8946,'1:47.348'],[0.1066,'-1.96'],[0.1265,'-8.69'],[0.1417,'-9.38']],
[[0.8961,'1:47.534'],[0.0865,'-1.57'],[0.1307,'-8.88'],[0.1412,'-9.36']],
[[0.8977,'1:47.720'],[0.0875,'-1.59'],[0.1364,'-9.14'],[0.1413,'-9.36']],
[[0.8992,'1:47.906'],[0.1434,'-2.69'],[0.1429,'-9.43'],[0.1417,'-9.37']],
[[0.9008,'1:48.093'],[0.0995,'-1.82'],[0.1454,'-9.54'],[0.1419,'-9.39']],
[[0.9023,'1:48.279'],[0.1636,'-3.10'],[0.1440,'-9.48'],[0.1421,'-9.39']],
[[0.9039,'1:48.465'],[0.0791,'-1.43'],[0.1437,'-9.46'],[0.1424,'-9.41']],
[[0.9054,'1:48.651'],[0.1892,'-3.64'],[0.1455,'-9.55'],[0.1431,'-9.44']],
[[0.9070,'1:48.837'],[0.1184,'-2.19'],[0.1466,'-9.60'],[0.1437,'-9.47']],
[[0.9085,'1:49.023'],[0.1068,'-1.96'],[0.1449,'-9.52'],[0.1436,'-9.46']],
[[0.9101,'1:49.209'],[0.1847,'-3.55'],[0.1434,'-9.45'],[0.1436,'-9.46']],
[[0.9116,'1:49.395'],[0.1366,'-2.55'],[0.1446,'-9.51'],[0.1441,'-9.49']],
[[0.9132,'1:49.581'],[0.1399,'-2.62'],[0.1458,'-9.56'],[0.1447,'-9.51']],
[[0.9147,'1:49.767'],[0.1177,'-2.17'],[0.1468,'-9.61'],[0.1462,'-9.58']],
[[0.9163,'1:49.953'],[0.2135,'-4.17'],[0.1478,'-9.65'],[0.1479,'-9.66']],
[[0.9178,'1:50.139'],[0.1393,'-2.61'],[0.1419,'-9.39'],[0.1486,'-9.69']],
[[0.9194,'1:50.325'],[0.1007,'-1.84'],[0.1337,'-9.02'],[0.1490,'-9.71']],
[[0.9209,'1:50.511'],[0.1055,'-1.94'],[0.1308,'-8.89'],[0.1491,'-9.71']],
[[0.9225,'1:50.697'],[0.0607,'-1.09'],[0.1316,'-8.92'],[0.1489,'-9.70']],
[[0.9240,'1:50.883'],[0.0950,'-1.73'],[0.1325,'-8.96'],[0.1485,'-9.68']],
[[0.9256,'1:51.069'],[0.1181,'-2.18'],[0.1336,'-9.01'],[0.1479,'-9.66']],
[[0.9271,'1:51.255'],[0.0998,'-1.83'],[0.1328,'-8.98'],[0.1471,'-9.62']],
[[0.9287,'1:51.441'],[0.1532,'-2.89'],[0.1274,'-8.73'],[0.1460,'-9.57']],
[[0.9302,'1:51.627'],[0.0989,'-1.81'],[0.1238,'-8.57'],[0.1449,'-9.52']],
[[0.9318,'1:51.813'],[0.0938,'-1.71'],[0.1300,'-8.85'],[0.1447,'-9.51']],
[[0.9333,'1:52.000'],[0.1210,'-2.24'],[0.1362,'-9.13'],[0.1444,'-9.50']],
[[0.9349,'1:52.186'],[0.1174,'-2.17'],[0.1385,'-9.23'],[0.1440,'-9.48']],
[[0.9364,'1:52.372'],[0.1267,'-2.35'],[0.1407,'-9.33'],[0.1436,'-9.46']],
[[0.9380,'1:52.558'],[0.1823,'-3.50'],[0.1400,'-9.30'],[0.1432,'-9.45']],
[[0.9395,'1:52.744'],[0.1274,'-2.37'],[0.1387,'-9.24'],[0.1429,'-9.43']],
[[0.9411,'1:52.930'],[0.1120,'-2.06'],[0.1450,'-9.52'],[0.1434,'-9.45']],
[[0.9426,'1:53.116'],[0.0679,'-1.22'],[0.1545,'-9.95'],[0.1442,'-9.49']],
[[0.9442,'1:53.302'],[0.1076,'-1.98'],[0.1507,'-9.78'],[0.1448,'-9.52']],
[[0.9457,'1:53.488'],[0.0843,'-1.53'],[0.1360,'-9.12'],[0.1451,'-9.53']],
[[0.9473,'1:53.674'],[0.0654,'-1.17'],[0.1272,'-8.72'],[0.1450,'-9.52']],
[[0.9488,'1:53.860'],[0.0825,'-1.50'],[0.1272,'-8.72'],[0.1441,'-9.49']],
[[0.9504,'1:54.046'],[0.1172,'-2.17'],[0.1269,'-8.71'],[0.1434,'-9.45']],
[[0.9519,'1:54.232'],[0.0757,'-1.37'],[0.1254,'-8.64'],[0.1433,'-9.45']],
[[0.9535,'1:54.418'],[0.0854,'-1.55'],[0.1245,'-8.60'],[0.1432,'-9.44']],
[[0.9550,'1:54.604'],[0.1200,'-2.22'],[0.1286,'-8.79'],[0.1435,'-9.46']],
[[0.9566,'1:54.790'],[0.0857,'-1.56'],[0.1328,'-8.97'],[0.1438,'-9.47']],
[[0.9581,'1:54.976'],[0.1969,'-3.81'],[0.1343,'-9.05'],[0.1435,'-9.46']],
[[0.9597,'1:55.162'],[0.1045,'-1.92'],[0.1358,'-9.11'],[0.1432,'-9.44']],
[[0.9612,'1:55.348'],[0.1137,'-2.10'],[0.1371,'-9.17'],[0.1430,'-9.44']],
[[0.9628,'1:55.534'],[0.0595,'-1.07'],[0.1384,'-9.23'],[0.1429,'-9.43']],
[[0.9643,'1:55.720'],[0.1211,'-2.24'],[0.1409,'-9.34'],[0.1426,'-9.42']],
[[0.9659,'1:55.906'],[0.1098,'-2.02'],[0.1441,'-9.48'],[0.1423,'-9.40']],
[[0.9674,'1:56.093'],[0.1384,'-2.59'],[0.1445,'-9.50'],[0.1417,'-9.37']],
[[0.9690,'1:56.279'],[0.1034,'-1.90'],[0.1422,'-9.40'],[0.1408,'-9.34']],
[[0.9705,'1:56.465'],[0.1437,'-2.70'],[0.1419,'-9.39'],[0.1406,'-9.33']],
[[0.9721,'1:56.651'],[0.0798,'-1.44'],[0.1454,'-9.54'],[0.1416,'-9.37']],
[[0.9736,'1:56.837'],[0.0741,'-1.34'],[0.1478,'-9.65'],[0.1426,'-9.42']],
[[0.9752,'1:57.023'],[0.1269,'-2.36'],[0.1464,'-9.59'],[0.1433,'-9.45']],
[[0.9767,'1:57.209'],[0.1352,'-2.52'],[0.1448,'-9.52'],[0.1441,'-9.49']],
[[0.9783,'1:57.395'],[0.1439,'-2.70'],[0.1420,'-9.39'],[0.1456,'-9.55']],
[[0.9798,'1:57.581'],[0.0556,'-0.99'],[0.1393,'-9.27'],[0.1471,'-9.62']],
[[0.9814,'1:57.767'],[0.0852,'-1.55'],[0.1408,'-9.34'],[0.1478,'-9.65']],
[[0.9829,'1:57.953'],[0.0707,'-1.27'],[0.1428,'-9.43'],[0.1485,'-9.68']],
[[0.9845,'1:58.139'],[0.0879,'-1.60'],[0.1381,'-9.21'],[0.1483,'-9.67']],
[[0.9860,'1:58.325'],[0.1142,'-2.11'],[0.1311,'-8.90'],[0.1478,'-9.65']],
[[0.9876,'1:58.511'],[0.0691,'-1.24'],[0.1312,'-8.90'],[0.1475,'-9.64']],
[[0.9891,'1:58.697'],[0.1507,'-2.84'],[0.1359,'-9.12'],[0.1473,'-9.63']],
[[0.9907,'1:58.883'],[0.1374,'-2.57'],[0.1373,'-9.18'],[0.1469,'-9.61']],
[[0.9922,'1:59.069'],[0.0859,'-1.56'],[0.1346,'-9.06'],[0.1463,'-9.58']],
[[0.9938,'1:59.255'],[0.0566,'-1.01'],[0.1339,'-9.03'],[0.1458,'-9.56']],
[[0.9953,'1:59.441'],[0.1030,'-1.89'],[0.1380,'-9.21'],[0.1456,'-9.55']],
[[0.9969,'1:59.627'],[0.1516,'-2.86'],[0.1415,'-9.37'],[0.1455,'-9.55']],
[[0.9984,'1:59.813'],[0.0923,'-1.68'],[0.1415,'-9.37'],[0.1455,'-9.55']],
[[1.0000,'2:00.000'],[0.0424,'-0.75'],[0.1415,'-9.37'],[0.1455,'-9.55']],
],
xmaj:[
[0.0000,'0:00'],
[0.0833,'0:10'],
[0.1667,'0:20'],
[0.2500,'0:30'],
[0.3333,'0:40'],
[0.4167,'0:50'],
[0.5000,'1:00'],
[0.5833,'1:10'],
[0.6667,'1:20'],
[0.7500,'1:30'],
[0.8333,'1:40'],
[0.9167,'1:50'],
[1.0000,'2:00'],
],
xmin:[
0.0417,
0.1250,
0.2083,
0.2917,
0.3750,
0.4583,
0.5417,
0.6250,
0.7083,
0.7917,
0.8750,
0.9583,
],
yrange:[
-48.00,
-3.00,
],
ymaj:[
[0.0667,'-6'],
[0.2000,'-12'],
[0.3333,'-18'],
[0.4667,'-24'],
[0.6000,'-30'],
[0.7333,'-36'],
[0.8667,'-42'],
[1.0000,'-48'],
],
ymin:[
0.0000,
0.1333,
0.2667,
0.4000,
0.5333,
0.6667,
0.8000,
0.9333,
],
};
var canv_0=document.getElementById('chart_0');
draw_chart(canv_0, data_0, -1, -1);
canv_0.addEventListener('mousemove', function (evt) { draw_chart(canv_0, data_0, evt.offsetX, evt.offsetY); }, false);
canv_0.addEventListener('mouseleave', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
window.addEventListener('resize', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
document.getElementById('regions').addEventListener('change', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
document.getElementById('markers').addEventListener('change', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
</script>
</body>
</html>