-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyad.render_stats.html
More file actions
903 lines (903 loc) · 53.2 KB
/
yad.render_stats.html
File metadata and controls
903 lines (903 loc) · 53.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>REAPER Render: yad</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>
FLAC 16 bit 44100Hz 2ch<br>
Project: yad<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>LUFS-M</th>
<th>max<br>LUFS-S</th>
<th><br>LUFS-I</th>
<th><br>LRA</th>
</tr>
</thead>
<tbody>
<tr>
<td>yad.flac</td>
<td>3:48.839</td>
<td>-1.0</td>
<td>-1.0</td>
<td>0</td>
<td>0</td>
<td>-6.6</td>
<td>-7.0</td>
<td>-8.3</td>
<td>2.7</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:'yad.flac',
length:228.840,
series:['Peak','LUFS-M','LUFS-S'],
integrated:['LUFS-I',0.3561,'-8.34'],
dynrange:['LRA',[0.4733,'-10.10'],[0.2933,'-7.40']],
vals:[
[[0.0016,'0:00.372'],[0.3072,'-6.38'],[1.3052,'-22.58'],[1.6508,'-27.76']],
[[0.0033,'0:00.744'],[0.4809,'-11.39'],[1.3694,'-23.54'],[1.5666,'-26.50']],
[[0.0049,'0:01.116'],[0.5022,'-12.12'],[1.3585,'-23.38'],[1.5066,'-25.60']],
[[0.0065,'0:01.488'],[0.4261,'-9.65'],[1.3343,'-23.01'],[1.4508,'-24.76']],
[[0.0081,'0:01.860'],[0.5141,'-12.54'],[1.2684,'-22.03'],[1.3900,'-23.85']],
[[0.0098,'0:02.232'],[0.5590,'-14.22'],[1.1846,'-20.77'],[1.3272,'-22.91']],
[[0.0114,'0:02.604'],[0.2966,'-6.11'],[1.1454,'-20.18'],[1.2913,'-22.37']],
[[0.0130,'0:02.976'],[0.4315,'-9.81'],[1.1428,'-20.14'],[1.2776,'-22.16']],
[[0.0146,'0:03.348'],[0.3420,'-7.27'],[1.1423,'-20.14'],[1.2598,'-21.90']],
[[0.0163,'0:03.720'],[0.3723,'-8.09'],[1.1451,'-20.18'],[1.2358,'-21.54']],
[[0.0179,'0:04.093'],[0.3769,'-8.22'],[1.1383,'-20.07'],[1.2106,'-21.16']],
[[0.0195,'0:04.465'],[0.3737,'-8.13'],[1.1023,'-19.53'],[1.1821,'-20.73']],
[[0.0211,'0:04.837'],[0.3978,'-8.81'],[1.0471,'-18.71'],[1.1443,'-20.16']],
[[0.0228,'0:05.209'],[0.3316,'-7.00'],[0.8147,'-15.22'],[1.0204,'-18.31']],
[[0.0244,'0:05.581'],[0.3662,'-7.92'],[0.5823,'-11.73'],[0.8966,'-16.45']],
[[0.0260,'0:05.953'],[0.1741,'-3.32'],[0.5621,'-11.43'],[0.8258,'-15.39']],
[[0.0276,'0:06.325'],[0.1108,'-2.04'],[0.5537,'-11.31'],[0.7579,'-14.37']],
[[0.0293,'0:06.697'],[0.1509,'-2.84'],[0.5793,'-11.69'],[0.7140,'-13.71']],
[[0.0309,'0:07.069'],[0.2206,'-4.33'],[0.6135,'-12.20'],[0.6763,'-13.14']],
[[0.0325,'0:07.441'],[0.1879,'-3.62'],[0.6233,'-12.35'],[0.6471,'-12.71']],
[[0.0341,'0:07.814'],[0.2421,'-4.82'],[0.6197,'-12.30'],[0.6227,'-12.34']],
[[0.0358,'0:08.186'],[0.2046,'-3.98'],[0.6096,'-12.14'],[0.6104,'-12.16']],
[[0.0374,'0:08.558'],[0.2190,'-4.30'],[0.5929,'-11.89'],[0.6103,'-12.16']],
[[0.0390,'0:08.930'],[0.1616,'-3.06'],[0.5790,'-11.68'],[0.6110,'-12.16']],
[[0.0407,'0:09.302'],[0.1830,'-3.51'],[0.5703,'-11.55'],[0.6129,'-12.19']],
[[0.0423,'0:09.674'],[0.2671,'-5.40'],[0.5565,'-11.35'],[0.6128,'-12.19']],
[[0.0439,'0:10.046'],[0.1878,'-3.61'],[0.5214,'-10.82'],[0.6046,'-12.07']],
[[0.0455,'0:10.418'],[0.1945,'-3.76'],[0.4858,'-10.29'],[0.5958,'-11.94']],
[[0.0472,'0:10.790'],[0.1634,'-3.10'],[0.4401,'-9.60'],[0.5752,'-11.63']],
[[0.0488,'0:11.162'],[0.0571,'-1.02'],[0.3945,'-8.92'],[0.5546,'-11.32']],
[[0.0504,'0:11.535'],[0.0572,'-1.02'],[0.4163,'-9.24'],[0.5397,'-11.10']],
[[0.0520,'0:11.907'],[0.0876,'-1.59'],[0.4460,'-9.69'],[0.5255,'-10.88']],
[[0.0537,'0:12.279'],[0.0638,'-1.14'],[0.4010,'-9.02'],[0.4938,'-10.41']],
[[0.0553,'0:12.651'],[0.0776,'-1.40'],[0.3304,'-7.96'],[0.4562,'-9.84']],
[[0.0569,'0:13.023'],[0.0565,'-1.01'],[0.3087,'-7.63'],[0.4290,'-9.43']],
[[0.0585,'0:13.395'],[0.0595,'-1.07'],[0.3202,'-7.80'],[0.4089,'-9.13']],
[[0.0602,'0:13.767'],[0.0566,'-1.01'],[0.3265,'-7.90'],[0.3907,'-8.86']],
[[0.0618,'0:14.139'],[0.0608,'-1.09'],[0.3263,'-7.89'],[0.3746,'-8.62']],
[[0.0634,'0:14.511'],[0.0594,'-1.06'],[0.3259,'-7.89'],[0.3596,'-8.39']],
[[0.0650,'0:14.883'],[0.0643,'-1.16'],[0.3248,'-7.87'],[0.3468,'-8.20']],
[[0.0667,'0:15.255'],[0.0735,'-1.33'],[0.3232,'-7.85'],[0.3361,'-8.04']],
[[0.0683,'0:15.628'],[0.0570,'-1.02'],[0.3192,'-7.79'],[0.3371,'-8.06']],
[[0.0699,'0:16.000'],[0.0568,'-1.02'],[0.3153,'-7.73'],[0.3382,'-8.07']],
[[0.0715,'0:16.372'],[0.0579,'-1.04'],[0.3276,'-7.91'],[0.3389,'-8.08']],
[[0.0732,'0:16.744'],[0.0681,'-1.23'],[0.3400,'-8.10'],[0.3397,'-8.09']],
[[0.0748,'0:17.116'],[0.0574,'-1.03'],[0.3376,'-8.06'],[0.3405,'-8.11']],
[[0.0764,'0:17.488'],[0.0570,'-1.02'],[0.3323,'-7.98'],[0.3414,'-8.12']],
[[0.0780,'0:17.860'],[0.0565,'-1.01'],[0.3246,'-7.87'],[0.3409,'-8.11']],
[[0.0797,'0:18.232'],[0.0567,'-1.01'],[0.3158,'-7.74'],[0.3397,'-8.09']],
[[0.0813,'0:18.604'],[0.0565,'-1.01'],[0.3142,'-7.71'],[0.3395,'-8.09']],
[[0.0829,'0:18.976'],[0.0566,'-1.01'],[0.3189,'-7.78'],[0.3402,'-8.10']],
[[0.0846,'0:19.349'],[0.0566,'-1.01'],[0.3265,'-7.90'],[0.3412,'-8.12']],
[[0.0862,'0:19.721'],[0.0569,'-1.02'],[0.3389,'-8.08'],[0.3428,'-8.14']],
[[0.0878,'0:20.093'],[0.0567,'-1.01'],[0.3476,'-8.21'],[0.3443,'-8.16']],
[[0.0894,'0:20.465'],[0.0641,'-1.15'],[0.3448,'-8.17'],[0.3457,'-8.19']],
[[0.0911,'0:20.837'],[0.0568,'-1.02'],[0.3418,'-8.13'],[0.3472,'-8.21']],
[[0.0927,'0:21.209'],[0.0619,'-1.11'],[0.3377,'-8.07'],[0.3497,'-8.25']],
[[0.0943,'0:21.581'],[0.0753,'-1.36'],[0.3337,'-8.01'],[0.3523,'-8.28']],
[[0.0959,'0:21.953'],[0.0568,'-1.02'],[0.3275,'-7.91'],[0.3503,'-8.25']],
[[0.0976,'0:22.325'],[0.0567,'-1.01'],[0.3211,'-7.82'],[0.3480,'-8.22']],
[[0.0992,'0:22.697'],[0.0576,'-1.03'],[0.3204,'-7.81'],[0.3456,'-8.18']],
[[0.1008,'0:23.070'],[0.0570,'-1.02'],[0.3212,'-7.82'],[0.3430,'-8.15']],
[[0.1024,'0:23.442'],[0.0570,'-1.02'],[0.3231,'-7.85'],[0.3413,'-8.12']],
[[0.1041,'0:23.814'],[0.0567,'-1.01'],[0.3256,'-7.88'],[0.3401,'-8.10']],
[[0.1057,'0:24.186'],[0.0623,'-1.12'],[0.3273,'-7.91'],[0.3395,'-8.09']],
[[0.1073,'0:24.558'],[0.0798,'-1.44'],[0.3281,'-7.92'],[0.3396,'-8.09']],
[[0.1089,'0:24.930'],[0.0742,'-1.34'],[0.3459,'-8.19'],[0.3435,'-8.15']],
[[0.1106,'0:25.302'],[0.0691,'-1.24'],[0.3968,'-8.95'],[0.3548,'-8.32']],
[[0.1122,'0:25.674'],[0.0573,'-1.03'],[0.4384,'-9.58'],[0.3668,'-8.50']],
[[0.1138,'0:26.046'],[0.0580,'-1.04'],[0.4400,'-9.60'],[0.3818,'-8.73']],
[[0.1154,'0:26.418'],[0.0723,'-1.30'],[0.4421,'-9.63'],[0.3968,'-8.95']],
[[0.1171,'0:26.791'],[0.0583,'-1.04'],[0.4538,'-9.81'],[0.4135,'-9.20']],
[[0.1187,'0:27.163'],[0.0654,'-1.18'],[0.4654,'-9.98'],[0.4302,'-9.45']],
[[0.1203,'0:27.535'],[0.0638,'-1.15'],[0.4548,'-9.82'],[0.4472,'-9.71']],
[[0.1220,'0:27.907'],[0.0565,'-1.01'],[0.4415,'-9.62'],[0.4643,'-9.96']],
[[0.1236,'0:28.279'],[0.0583,'-1.04'],[0.4471,'-9.71'],[0.4715,'-10.07']],
[[0.1252,'0:28.651'],[0.0709,'-1.28'],[0.4596,'-9.89'],[0.4753,'-10.13']],
[[0.1268,'0:29.023'],[0.0579,'-1.04'],[0.4547,'-9.82'],[0.4758,'-10.14']],
[[0.1285,'0:29.395'],[0.0568,'-1.02'],[0.4377,'-9.57'],[0.4742,'-10.11']],
[[0.1301,'0:29.767'],[0.0615,'-1.10'],[0.4291,'-9.44'],[0.4710,'-10.07']],
[[0.1317,'0:30.139'],[0.0767,'-1.39'],[0.4312,'-9.47'],[0.4661,'-9.99']],
[[0.1333,'0:30.511'],[0.0617,'-1.11'],[0.4354,'-9.53'],[0.4621,'-9.93']],
[[0.1350,'0:30.884'],[0.0819,'-1.49'],[0.4448,'-9.67'],[0.4604,'-9.91']],
[[0.1366,'0:31.256'],[0.1068,'-1.96'],[0.4523,'-9.79'],[0.4589,'-9.88']],
[[0.1382,'0:31.628'],[0.0855,'-1.55'],[0.4487,'-9.73'],[0.4587,'-9.88']],
[[0.1398,'0:32.000'],[0.0589,'-1.06'],[0.4451,'-9.68'],[0.4585,'-9.88']],
[[0.1415,'0:32.372'],[0.0655,'-1.18'],[0.4482,'-9.72'],[0.4596,'-9.89']],
[[0.1431,'0:32.744'],[0.0574,'-1.03'],[0.4515,'-9.77'],[0.4607,'-9.91']],
[[0.1447,'0:33.116'],[0.0747,'-1.35'],[0.4496,'-9.74'],[0.4604,'-9.91']],
[[0.1463,'0:33.488'],[0.0598,'-1.07'],[0.4466,'-9.70'],[0.4599,'-9.90']],
[[0.1480,'0:33.860'],[0.0618,'-1.11'],[0.4395,'-9.59'],[0.4609,'-9.91']],
[[0.1496,'0:34.232'],[0.0588,'-1.05'],[0.4305,'-9.46'],[0.4627,'-9.94']],
[[0.1512,'0:34.605'],[0.0726,'-1.31'],[0.4307,'-9.46'],[0.4627,'-9.94']],
[[0.1528,'0:34.977'],[0.0609,'-1.09'],[0.4390,'-9.59'],[0.4610,'-9.92']],
[[0.1545,'0:35.349'],[0.0948,'-1.73'],[0.4416,'-9.62'],[0.4601,'-9.90']],
[[0.1561,'0:35.721'],[0.0644,'-1.16'],[0.4351,'-9.53'],[0.4602,'-9.90']],
[[0.1577,'0:36.093'],[0.0766,'-1.38'],[0.4295,'-9.44'],[0.4592,'-9.89']],
[[0.1593,'0:36.465'],[0.0836,'-1.52'],[0.4271,'-9.41'],[0.4545,'-9.82']],
[[0.1610,'0:36.837'],[0.0743,'-1.34'],[0.4242,'-9.36'],[0.4497,'-9.75']],
[[0.1626,'0:37.209'],[0.0695,'-1.25'],[0.4165,'-9.25'],[0.4448,'-9.67']],
[[0.1642,'0:37.581'],[0.0875,'-1.59'],[0.4088,'-9.13'],[0.4399,'-9.60']],
[[0.1659,'0:37.953'],[0.0683,'-1.23'],[0.3835,'-8.75'],[0.4302,'-9.45']],
[[0.1675,'0:38.326'],[0.0565,'-1.01'],[0.3570,'-8.35'],[0.4203,'-9.30']],
[[0.1691,'0:38.698'],[0.0802,'-1.45'],[0.3654,'-8.48'],[0.4145,'-9.22']],
[[0.1707,'0:39.070'],[0.1152,'-2.13'],[0.3835,'-8.75'],[0.4099,'-9.15']],
[[0.1724,'0:39.442'],[0.0582,'-1.04'],[0.3818,'-8.73'],[0.4048,'-9.07']],
[[0.1740,'0:39.814'],[0.1007,'-1.84'],[0.3684,'-8.53'],[0.3996,'-8.99']],
[[0.1756,'0:40.186'],[0.0742,'-1.34'],[0.3577,'-8.37'],[0.3952,'-8.93']],
[[0.1772,'0:40.558'],[0.1036,'-1.90'],[0.3499,'-8.25'],[0.3917,'-8.88']],
[[0.1789,'0:40.930'],[0.0612,'-1.10'],[0.3490,'-8.24'],[0.3901,'-8.85']],
[[0.1805,'0:41.302'],[0.1415,'-2.65'],[0.3621,'-8.43'],[0.3921,'-8.88']],
[[0.1821,'0:41.674'],[0.0614,'-1.10'],[0.3709,'-8.56'],[0.3934,'-8.90']],
[[0.1837,'0:42.047'],[0.1222,'-2.26'],[0.3608,'-8.41'],[0.3915,'-8.87']],
[[0.1854,'0:42.419'],[0.0677,'-1.22'],[0.3509,'-8.26'],[0.3895,'-8.84']],
[[0.1870,'0:42.791'],[0.1137,'-2.10'],[0.3514,'-8.27'],[0.3885,'-8.83']],
[[0.1886,'0:43.163'],[0.0653,'-1.17'],[0.3518,'-8.28'],[0.3876,'-8.81']],
[[0.1902,'0:43.535'],[0.0854,'-1.55'],[0.3587,'-8.38'],[0.3889,'-8.83']],
[[0.1919,'0:43.907'],[0.0621,'-1.11'],[0.3664,'-8.50'],[0.3906,'-8.86']],
[[0.1935,'0:44.279'],[0.0655,'-1.18'],[0.3690,'-8.54'],[0.3914,'-8.87']],
[[0.1951,'0:44.651'],[0.1053,'-1.93'],[0.3698,'-8.55'],[0.3918,'-8.88']],
[[0.1967,'0:45.023'],[0.0592,'-1.06'],[0.3805,'-8.71'],[0.3936,'-8.90']],
[[0.1984,'0:45.395'],[0.1338,'-2.50'],[0.3986,'-8.98'],[0.3965,'-8.95']],
[[0.2000,'0:45.767'],[0.0593,'-1.06'],[0.3995,'-8.99'],[0.4012,'-9.02']],
[[0.2016,'0:46.140'],[0.0642,'-1.15'],[0.3778,'-8.67'],[0.4081,'-9.12']],
[[0.2033,'0:46.512'],[0.0703,'-1.27'],[0.3630,'-8.45'],[0.4128,'-9.19']],
[[0.2049,'0:46.884'],[0.0776,'-1.40'],[0.3661,'-8.49'],[0.4115,'-9.17']],
[[0.2065,'0:47.256'],[0.0670,'-1.20'],[0.3705,'-8.56'],[0.4106,'-9.16']],
[[0.2081,'0:47.628'],[0.1269,'-2.36'],[0.3829,'-8.74'],[0.4124,'-9.19']],
[[0.2098,'0:48.000'],[0.0588,'-1.05'],[0.3954,'-8.93'],[0.4141,'-9.21']],
[[0.2114,'0:48.372'],[0.1106,'-2.04'],[0.3891,'-8.84'],[0.4094,'-9.14']],
[[0.2130,'0:48.744'],[0.0617,'-1.11'],[0.3823,'-8.73'],[0.4045,'-9.07']],
[[0.2146,'0:49.116'],[0.1005,'-1.84'],[0.3875,'-8.81'],[0.4039,'-9.06']],
[[0.2163,'0:49.488'],[0.0757,'-1.37'],[0.3951,'-8.93'],[0.4042,'-9.06']],
[[0.2179,'0:49.861'],[0.0585,'-1.05'],[0.3890,'-8.83'],[0.4046,'-9.07']],
[[0.2195,'0:50.233'],[0.0645,'-1.16'],[0.3763,'-8.64'],[0.4049,'-9.07']],
[[0.2211,'0:50.605'],[0.0609,'-1.09'],[0.3778,'-8.67'],[0.4053,'-9.08']],
[[0.2228,'0:50.977'],[0.0646,'-1.16'],[0.3919,'-8.88'],[0.4058,'-9.09']],
[[0.2244,'0:51.349'],[0.0659,'-1.18'],[0.4069,'-9.10'],[0.4074,'-9.11']],
[[0.2260,'0:51.721'],[0.1325,'-2.47'],[0.4233,'-9.35'],[0.4110,'-9.17']],
[[0.2276,'0:52.093'],[0.1151,'-2.12'],[0.4391,'-9.59'],[0.4154,'-9.23']],
[[0.2293,'0:52.465'],[0.1153,'-2.13'],[0.4526,'-9.79'],[0.4220,'-9.33']],
[[0.2309,'0:52.837'],[0.1412,'-2.64'],[0.4640,'-9.96'],[0.4289,'-9.43']],
[[0.2325,'0:53.209'],[0.1788,'-3.42'],[0.4489,'-9.73'],[0.4398,'-9.60']],
[[0.2341,'0:53.582'],[0.1179,'-2.18'],[0.4338,'-9.51'],[0.4507,'-9.76']],
[[0.2358,'0:53.954'],[0.1440,'-2.70'],[0.4357,'-9.54'],[0.4607,'-9.91']],
[[0.2374,'0:54.326'],[0.1606,'-3.04'],[0.4388,'-9.58'],[0.4706,'-10.06']],
[[0.2390,'0:54.698'],[0.1120,'-2.06'],[0.4506,'-9.76'],[0.4743,'-10.11']],
[[0.2407,'0:55.070'],[0.1386,'-2.59'],[0.4648,'-9.97'],[0.4761,'-10.14']],
[[0.2423,'0:55.442'],[0.1609,'-3.05'],[0.4548,'-9.82'],[0.4745,'-10.12']],
[[0.2439,'0:55.814'],[0.1090,'-2.00'],[0.4305,'-9.46'],[0.4707,'-10.06']],
[[0.2455,'0:56.186'],[0.1706,'-3.25'],[0.4073,'-9.11'],[0.4641,'-9.96']],
[[0.2472,'0:56.558'],[0.1183,'-2.19'],[0.3852,'-8.78'],[0.4544,'-9.82']],
[[0.2488,'0:56.930'],[0.0943,'-1.72'],[0.3691,'-8.54'],[0.4437,'-9.66']],
[[0.2504,'0:57.303'],[0.1033,'-1.89'],[0.3655,'-8.48'],[0.4307,'-9.46']],
[[0.2520,'0:57.675'],[0.0596,'-1.07'],[0.3604,'-8.41'],[0.4173,'-9.26']],
[[0.2537,'0:58.047'],[0.0601,'-1.08'],[0.3480,'-8.22'],[0.4021,'-9.03']],
[[0.2553,'0:58.419'],[0.0666,'-1.20'],[0.3359,'-8.04'],[0.3871,'-8.81']],
[[0.2569,'0:58.791'],[0.0630,'-1.13'],[0.3374,'-8.06'],[0.3771,'-8.66']],
[[0.2585,'0:59.163'],[0.0576,'-1.03'],[0.3389,'-8.08'],[0.3672,'-8.51']],
[[0.2602,'0:59.535'],[0.0586,'-1.05'],[0.3461,'-8.19'],[0.3635,'-8.45']],
[[0.2618,'0:59.907'],[0.0648,'-1.16'],[0.3542,'-8.31'],[0.3607,'-8.41']],
[[0.2634,'1:00.279'],[0.0572,'-1.02'],[0.3694,'-8.54'],[0.3618,'-8.43']],
[[0.2650,'1:00.651'],[0.1432,'-2.68'],[0.3873,'-8.81'],[0.3644,'-8.47']],
[[0.2667,'1:01.023'],[0.1001,'-1.83'],[0.3913,'-8.87'],[0.3678,'-8.52']],
[[0.2683,'1:01.396'],[0.0901,'-1.64'],[0.3848,'-8.77'],[0.3719,'-8.58']],
[[0.2699,'1:01.768'],[0.1126,'-2.07'],[0.3873,'-8.81'],[0.3780,'-8.67']],
[[0.2715,'1:02.140'],[0.0847,'-1.54'],[0.4017,'-9.03'],[0.3869,'-8.80']],
[[0.2732,'1:02.512'],[0.1309,'-2.44'],[0.4029,'-9.04'],[0.3954,'-8.93']],
[[0.2748,'1:02.884'],[0.1634,'-3.10'],[0.3687,'-8.53'],[0.4030,'-9.05']],
[[0.2764,'1:03.256'],[0.0568,'-1.02'],[0.3380,'-8.07'],[0.4090,'-9.14']],
[[0.2780,'1:03.628'],[0.0945,'-1.73'],[0.3332,'-8.00'],[0.4036,'-9.05']],
[[0.2797,'1:04.000'],[0.0576,'-1.03'],[0.3283,'-7.93'],[0.3981,'-8.97']],
[[0.2813,'1:04.372'],[0.1032,'-1.89'],[0.3285,'-7.93'],[0.3864,'-8.80']],
[[0.2829,'1:04.744'],[0.0569,'-1.02'],[0.3288,'-7.93'],[0.3745,'-8.62']],
[[0.2846,'1:05.117'],[0.0565,'-1.01'],[0.3288,'-7.93'],[0.3655,'-8.48']],
[[0.2862,'1:05.489'],[0.0599,'-1.07'],[0.3288,'-7.93'],[0.3572,'-8.36']],
[[0.2878,'1:05.861'],[0.0584,'-1.04'],[0.3359,'-8.04'],[0.3535,'-8.30']],
[[0.2894,'1:06.233'],[0.0581,'-1.04'],[0.3465,'-8.20'],[0.3522,'-8.28']],
[[0.2911,'1:06.605'],[0.0579,'-1.04'],[0.3398,'-8.10'],[0.3508,'-8.26']],
[[0.2927,'1:06.977'],[0.0581,'-1.04'],[0.3173,'-7.76'],[0.3496,'-8.24']],
[[0.2943,'1:07.349'],[0.0989,'-1.81'],[0.3103,'-7.65'],[0.3489,'-8.23']],
[[0.2959,'1:07.721'],[0.0576,'-1.03'],[0.3296,'-7.94'],[0.3492,'-8.24']],
[[0.2976,'1:08.093'],[0.0575,'-1.03'],[0.3425,'-8.14'],[0.3495,'-8.24']],
[[0.2992,'1:08.465'],[0.0593,'-1.06'],[0.3329,'-7.99'],[0.3498,'-8.25']],
[[0.3008,'1:08.838'],[0.0574,'-1.03'],[0.3240,'-7.86'],[0.3499,'-8.25']],
[[0.3024,'1:09.210'],[0.0887,'-1.61'],[0.3242,'-7.86'],[0.3467,'-8.20']],
[[0.3041,'1:09.582'],[0.0613,'-1.10'],[0.3244,'-7.87'],[0.3434,'-8.15']],
[[0.3057,'1:09.954'],[0.0982,'-1.80'],[0.3362,'-8.04'],[0.3448,'-8.17']],
[[0.3073,'1:10.326'],[0.0576,'-1.03'],[0.3489,'-8.23'],[0.3465,'-8.20']],
[[0.3089,'1:10.698'],[0.0801,'-1.45'],[0.3430,'-8.14'],[0.3476,'-8.21']],
[[0.3106,'1:11.070'],[0.0571,'-1.02'],[0.3314,'-7.97'],[0.3485,'-8.23']],
[[0.3122,'1:11.442'],[0.0631,'-1.13'],[0.3247,'-7.87'],[0.3485,'-8.23']],
[[0.3138,'1:11.814'],[0.0603,'-1.08'],[0.3211,'-7.82'],[0.3478,'-8.22']],
[[0.3154,'1:12.186'],[0.0659,'-1.18'],[0.3216,'-7.82'],[0.3472,'-8.21']],
[[0.3171,'1:12.559'],[0.0576,'-1.03'],[0.3268,'-7.90'],[0.3467,'-8.20']],
[[0.3187,'1:12.931'],[0.0573,'-1.03'],[0.3300,'-7.95'],[0.3451,'-8.18']],
[[0.3203,'1:13.303'],[0.0566,'-1.01'],[0.3292,'-7.94'],[0.3415,'-8.12']],
[[0.3220,'1:13.675'],[0.1048,'-1.92'],[0.3283,'-7.92'],[0.3388,'-8.08']],
[[0.3236,'1:14.047'],[0.0582,'-1.04'],[0.3273,'-7.91'],[0.3403,'-8.10']],
[[0.3252,'1:14.419'],[0.0568,'-1.02'],[0.3263,'-7.89'],[0.3418,'-8.13']],
[[0.3268,'1:14.791'],[0.1041,'-1.91'],[0.3269,'-7.90'],[0.3441,'-8.16']],
[[0.3285,'1:15.163'],[0.0614,'-1.10'],[0.3275,'-7.91'],[0.3465,'-8.20']],
[[0.3301,'1:15.535'],[0.0567,'-1.01'],[0.3267,'-7.90'],[0.3467,'-8.20']],
[[0.3317,'1:15.907'],[0.0579,'-1.04'],[0.3257,'-7.89'],[0.3466,'-8.20']],
[[0.3333,'1:16.279'],[0.0610,'-1.09'],[0.3207,'-7.81'],[0.3442,'-8.16']],
[[0.3350,'1:16.652'],[0.0621,'-1.11'],[0.3142,'-7.71'],[0.3409,'-8.11']],
[[0.3366,'1:17.024'],[0.1153,'-2.13'],[0.3129,'-7.69'],[0.3387,'-8.08']],
[[0.3382,'1:17.396'],[0.0682,'-1.23'],[0.3156,'-7.73'],[0.3372,'-8.06']],
[[0.3398,'1:17.768'],[0.0575,'-1.03'],[0.3208,'-7.81'],[0.3364,'-8.05']],
[[0.3415,'1:18.140'],[0.0566,'-1.01'],[0.3295,'-7.94'],[0.3366,'-8.05']],
[[0.3431,'1:18.512'],[0.0565,'-1.01'],[0.3375,'-8.06'],[0.3376,'-8.06']],
[[0.3447,'1:18.884'],[0.0583,'-1.04'],[0.3434,'-8.15'],[0.3404,'-8.11']],
[[0.3463,'1:19.256'],[0.0578,'-1.03'],[0.3474,'-8.21'],[0.3435,'-8.15']],
[[0.3480,'1:19.628'],[0.0570,'-1.02'],[0.3362,'-8.04'],[0.3485,'-8.23']],
[[0.3496,'1:20.000'],[0.0781,'-1.41'],[0.3250,'-7.88'],[0.3536,'-8.30']],
[[0.3512,'1:20.373'],[0.0775,'-1.40'],[0.3290,'-7.93'],[0.3545,'-8.32']],
[[0.3528,'1:20.745'],[0.0566,'-1.01'],[0.3335,'-8.00'],[0.3554,'-8.33']],
[[0.3545,'1:21.117'],[0.0615,'-1.10'],[0.3259,'-7.89'],[0.3533,'-8.30']],
[[0.3561,'1:21.489'],[0.0569,'-1.02'],[0.3155,'-7.73'],[0.3505,'-8.26']],
[[0.3577,'1:21.861'],[0.0581,'-1.04'],[0.3135,'-7.70'],[0.3476,'-8.21']],
[[0.3593,'1:22.233'],[0.0568,'-1.02'],[0.3156,'-7.73'],[0.3447,'-8.17']],
[[0.3610,'1:22.605'],[0.1090,'-2.01'],[0.3191,'-7.79'],[0.3429,'-8.14']],
[[0.3626,'1:22.977'],[0.0597,'-1.07'],[0.3240,'-7.86'],[0.3424,'-8.14']],
[[0.3642,'1:23.349'],[0.1245,'-2.31'],[0.3257,'-7.89'],[0.3418,'-8.13']],
[[0.3659,'1:23.721'],[0.0610,'-1.09'],[0.3219,'-7.83'],[0.3412,'-8.12']],
[[0.3675,'1:24.094'],[0.0566,'-1.01'],[0.3208,'-7.81'],[0.3410,'-8.11']],
[[0.3691,'1:24.466'],[0.0573,'-1.02'],[0.3299,'-7.95'],[0.3421,'-8.13']],
[[0.3707,'1:24.838'],[0.0571,'-1.02'],[0.3382,'-8.07'],[0.3432,'-8.15']],
[[0.3724,'1:25.210'],[0.0571,'-1.02'],[0.3349,'-8.02'],[0.3448,'-8.17']],
[[0.3740,'1:25.582'],[0.0606,'-1.09'],[0.3315,'-7.97'],[0.3463,'-8.20']],
[[0.3756,'1:25.954'],[0.0565,'-1.01'],[0.3296,'-7.94'],[0.3443,'-8.16']],
[[0.3772,'1:26.326'],[0.0634,'-1.14'],[0.3279,'-7.92'],[0.3419,'-8.13']],
[[0.3789,'1:26.698'],[0.0589,'-1.05'],[0.3316,'-7.97'],[0.3416,'-8.12']],
[[0.3805,'1:27.070'],[0.0603,'-1.08'],[0.3369,'-8.05'],[0.3420,'-8.13']],
[[0.3821,'1:27.442'],[0.0591,'-1.06'],[0.3393,'-8.09'],[0.3428,'-8.14']],
[[0.3837,'1:27.815'],[0.0571,'-1.02'],[0.3398,'-8.10'],[0.3441,'-8.16']],
[[0.3854,'1:28.187'],[0.0849,'-1.54'],[0.3371,'-8.06'],[0.3444,'-8.17']],
[[0.3870,'1:28.559'],[0.0612,'-1.10'],[0.3306,'-7.96'],[0.3437,'-8.16']],
[[0.3886,'1:28.931'],[0.0570,'-1.02'],[0.3616,'-8.42'],[0.3475,'-8.21']],
[[0.3902,'1:29.303'],[0.0570,'-1.02'],[0.4752,'-10.13'],[0.3614,'-8.42']],
[[0.3919,'1:29.675'],[0.1070,'-1.97'],[0.5850,'-11.77'],[0.3784,'-8.68']],
[[0.3935,'1:30.047'],[0.1209,'-2.24'],[0.6739,'-13.11'],[0.4117,'-9.18']],
[[0.3951,'1:30.419'],[0.1170,'-2.16'],[0.7601,'-14.40'],[0.4451,'-9.68']],
[[0.3967,'1:30.791'],[0.1044,'-1.92'],[0.6007,'-12.01'],[0.4891,'-10.34']],
[[0.3984,'1:31.163'],[0.0888,'-1.61'],[0.4413,'-9.62'],[0.5330,'-10.99']],
[[0.4000,'1:31.535'],[0.1839,'-3.53'],[0.3952,'-8.93'],[0.5412,'-11.12']],
[[0.4016,'1:31.908'],[0.0600,'-1.07'],[0.3676,'-8.51'],[0.5435,'-11.15']],
[[0.4033,'1:32.280'],[0.0680,'-1.22'],[0.3662,'-8.49'],[0.5221,'-10.83']],
[[0.4049,'1:32.652'],[0.0600,'-1.07'],[0.3756,'-8.63'],[0.4909,'-10.36']],
[[0.4065,'1:33.024'],[0.1059,'-1.95'],[0.3831,'-8.75'],[0.4622,'-9.93']],
[[0.4081,'1:33.396'],[0.0584,'-1.05'],[0.3891,'-8.84'],[0.4355,'-9.53']],
[[0.4098,'1:33.768'],[0.1137,'-2.10'],[0.3887,'-8.83'],[0.4163,'-9.24']],
[[0.4114,'1:34.140'],[0.0611,'-1.10'],[0.3790,'-8.68'],[0.4079,'-9.12']],
[[0.4130,'1:34.512'],[0.0604,'-1.08'],[0.3734,'-8.60'],[0.4018,'-9.03']],
[[0.4146,'1:34.884'],[0.0615,'-1.10'],[0.3795,'-8.69'],[0.4023,'-9.03']],
[[0.4163,'1:35.256'],[0.0742,'-1.34'],[0.3876,'-8.81'],[0.4035,'-9.05']],
[[0.4179,'1:35.629'],[0.0587,'-1.05'],[0.4116,'-9.17'],[0.4105,'-9.16']],
[[0.4195,'1:36.001'],[0.0655,'-1.18'],[0.4357,'-9.54'],[0.4176,'-9.26']],
[[0.4211,'1:36.373'],[0.0575,'-1.03'],[0.4334,'-9.50'],[0.4220,'-9.33']],
[[0.4228,'1:36.745'],[0.1231,'-2.28'],[0.4299,'-9.45'],[0.4263,'-9.39']],
[[0.4244,'1:37.117'],[0.0570,'-1.02'],[0.4237,'-9.36'],[0.4322,'-9.48']],
[[0.4260,'1:37.489'],[0.0720,'-1.30'],[0.4169,'-9.25'],[0.4384,'-9.58']],
[[0.4276,'1:37.861'],[0.0566,'-1.01'],[0.4091,'-9.14'],[0.4398,'-9.60']],
[[0.4293,'1:38.233'],[0.0718,'-1.29'],[0.4008,'-9.01'],[0.4388,'-9.58']],
[[0.4309,'1:38.605'],[0.1289,'-2.40'],[0.3986,'-8.98'],[0.4370,'-9.56']],
[[0.4325,'1:38.977'],[0.0566,'-1.01'],[0.4024,'-9.04'],[0.4346,'-9.52']],
[[0.4341,'1:39.350'],[0.0799,'-1.45'],[0.4035,'-9.05'],[0.4321,'-9.48']],
[[0.4358,'1:39.722'],[0.0567,'-1.01'],[0.4000,'-9.00'],[0.4293,'-9.44']],
[[0.4374,'1:40.094'],[0.0765,'-1.38'],[0.3938,'-8.91'],[0.4258,'-9.39']],
[[0.4390,'1:40.466'],[0.0592,'-1.06'],[0.3774,'-8.66'],[0.4193,'-9.29']],
[[0.4407,'1:40.838'],[0.0613,'-1.10'],[0.3624,'-8.44'],[0.4130,'-9.20']],
[[0.4423,'1:41.210'],[0.0663,'-1.19'],[0.3735,'-8.60'],[0.4110,'-9.17']],
[[0.4439,'1:41.582'],[0.0582,'-1.04'],[0.3847,'-8.77'],[0.4091,'-9.14']],
[[0.4455,'1:41.954'],[0.0586,'-1.05'],[0.3838,'-8.76'],[0.4068,'-9.10']],
[[0.4472,'1:42.326'],[0.1235,'-2.29'],[0.3816,'-8.72'],[0.4044,'-9.07']],
[[0.4488,'1:42.698'],[0.0618,'-1.11'],[0.3684,'-8.53'],[0.3991,'-8.99']],
[[0.4504,'1:43.071'],[0.0860,'-1.56'],[0.3516,'-8.27'],[0.3929,'-8.89']],
[[0.4520,'1:43.443'],[0.0590,'-1.06'],[0.3484,'-8.23'],[0.3894,'-8.84']],
[[0.4537,'1:43.815'],[0.0571,'-1.02'],[0.3542,'-8.31'],[0.3878,'-8.82']],
[[0.4553,'1:44.187'],[0.0567,'-1.01'],[0.3490,'-8.23'],[0.3849,'-8.77']],
[[0.4569,'1:44.559'],[0.0566,'-1.01'],[0.3306,'-7.96'],[0.3804,'-8.71']],
[[0.4585,'1:44.931'],[0.0580,'-1.04'],[0.3249,'-7.87'],[0.3765,'-8.65']],
[[0.4602,'1:45.303'],[0.0565,'-1.01'],[0.3480,'-8.22'],[0.3735,'-8.60']],
[[0.4618,'1:45.675'],[0.0589,'-1.05'],[0.3675,'-8.51'],[0.3710,'-8.57']],
[[0.4634,'1:46.047'],[0.1119,'-2.06'],[0.3670,'-8.51'],[0.3713,'-8.57']],
[[0.4650,'1:46.419'],[0.1267,'-2.35'],[0.3665,'-8.50'],[0.3715,'-8.57']],
[[0.4667,'1:46.791'],[0.1270,'-2.36'],[0.3811,'-8.72'],[0.3756,'-8.63']],
[[0.4683,'1:47.164'],[0.0830,'-1.51'],[0.3957,'-8.94'],[0.3797,'-8.70']],
[[0.4699,'1:47.536'],[0.1151,'-2.13'],[0.3912,'-8.87'],[0.3875,'-8.81']],
[[0.4715,'1:47.908'],[0.0668,'-1.20'],[0.3833,'-8.75'],[0.3959,'-8.94']],
[[0.4732,'1:48.280'],[0.1555,'-2.94'],[0.3759,'-8.64'],[0.4006,'-9.01']],
[[0.4748,'1:48.652'],[0.1105,'-2.03'],[0.3685,'-8.53'],[0.4038,'-9.06']],
[[0.4764,'1:49.024'],[0.1468,'-2.76'],[0.3620,'-8.43'],[0.4026,'-9.04']],
[[0.4780,'1:49.396'],[0.0656,'-1.18'],[0.3562,'-8.34'],[0.3978,'-8.97']],
[[0.4797,'1:49.768'],[0.1079,'-1.98'],[0.3466,'-8.20'],[0.3908,'-8.86']],
[[0.4813,'1:50.140'],[0.0872,'-1.58'],[0.3314,'-7.97'],[0.3806,'-8.71']],
[[0.4829,'1:50.512'],[0.1166,'-2.15'],[0.3204,'-7.81'],[0.3720,'-8.58']],
[[0.4846,'1:50.885'],[0.0571,'-1.02'],[0.3221,'-7.83'],[0.3685,'-8.53']],
[[0.4862,'1:51.257'],[0.0590,'-1.06'],[0.3244,'-7.87'],[0.3650,'-8.48']],
[[0.4878,'1:51.629'],[0.0565,'-1.01'],[0.3318,'-7.98'],[0.3624,'-8.44']],
[[0.4894,'1:52.001'],[0.0580,'-1.04'],[0.3391,'-8.09'],[0.3597,'-8.40']],
[[0.4911,'1:52.373'],[0.0616,'-1.11'],[0.3373,'-8.06'],[0.3546,'-8.32']],
[[0.4927,'1:52.745'],[0.0567,'-1.01'],[0.3350,'-8.03'],[0.3494,'-8.24']],
[[0.4943,'1:53.117'],[0.0582,'-1.04'],[0.3338,'-8.01'],[0.3485,'-8.23']],
[[0.4959,'1:53.489'],[0.0598,'-1.07'],[0.3327,'-7.99'],[0.3485,'-8.23']],
[[0.4976,'1:53.861'],[0.0578,'-1.03'],[0.3361,'-8.04'],[0.3478,'-8.22']],
[[0.4992,'1:54.233'],[0.0578,'-1.03'],[0.3418,'-8.13'],[0.3467,'-8.20']],
[[0.5008,'1:54.606'],[0.0676,'-1.22'],[0.3367,'-8.05'],[0.3461,'-8.19']],
[[0.5024,'1:54.978'],[0.0956,'-1.75'],[0.3208,'-7.81'],[0.3459,'-8.19']],
[[0.5041,'1:55.350'],[0.0823,'-1.49'],[0.3075,'-7.61'],[0.3452,'-8.18']],
[[0.5057,'1:55.722'],[0.0602,'-1.08'],[0.2989,'-7.48'],[0.3434,'-8.15']],
[[0.5073,'1:56.094'],[0.0615,'-1.10'],[0.2952,'-7.43'],[0.3421,'-8.13']],
[[0.5089,'1:56.466'],[0.0566,'-1.01'],[0.3108,'-7.66'],[0.3422,'-8.13']],
[[0.5106,'1:56.838'],[0.0566,'-1.01'],[0.3253,'-7.88'],[0.3422,'-8.13']],
[[0.5122,'1:57.210'],[0.0568,'-1.02'],[0.3175,'-7.76'],[0.3394,'-8.09']],
[[0.5138,'1:57.582'],[0.0581,'-1.04'],[0.3097,'-7.64'],[0.3365,'-8.05']],
[[0.5154,'1:57.954'],[0.0572,'-1.02'],[0.3066,'-7.60'],[0.3349,'-8.02']],
[[0.5171,'1:58.327'],[0.0582,'-1.04'],[0.3041,'-7.56'],[0.3333,'-8.00']],
[[0.5187,'1:58.699'],[0.0585,'-1.05'],[0.3009,'-7.51'],[0.3308,'-7.96']],
[[0.5203,'1:59.071'],[0.0570,'-1.02'],[0.2976,'-7.46'],[0.3279,'-7.92']],
[[0.5220,'1:59.443'],[0.0572,'-1.02'],[0.3028,'-7.54'],[0.3272,'-7.91']],
[[0.5236,'1:59.815'],[0.0580,'-1.04'],[0.3139,'-7.71'],[0.3280,'-7.92']],
[[0.5252,'2:00.187'],[0.0577,'-1.03'],[0.3182,'-7.77'],[0.3294,'-7.94']],
[[0.5268,'2:00.559'],[0.0590,'-1.06'],[0.3144,'-7.72'],[0.3313,'-7.97']],
[[0.5285,'2:00.931'],[0.0590,'-1.06'],[0.3095,'-7.64'],[0.3327,'-7.99']],
[[0.5301,'2:01.303'],[0.1372,'-2.56'],[0.3021,'-7.53'],[0.3328,'-7.99']],
[[0.5317,'2:01.675'],[0.0578,'-1.03'],[0.2982,'-7.47'],[0.3335,'-8.00']],
[[0.5333,'2:02.047'],[0.0578,'-1.03'],[0.3146,'-7.72'],[0.3380,'-8.07']],
[[0.5350,'2:02.420'],[0.0625,'-1.12'],[0.3310,'-7.96'],[0.3425,'-8.14']],
[[0.5366,'2:02.792'],[0.0658,'-1.18'],[0.3225,'-7.84'],[0.3394,'-8.09']],
[[0.5382,'2:03.164'],[0.1214,'-2.25'],[0.3139,'-7.71'],[0.3364,'-8.05']],
[[0.5398,'2:03.536'],[0.0566,'-1.01'],[0.3149,'-7.72'],[0.3353,'-8.03']],
[[0.5415,'2:03.908'],[0.1321,'-2.46'],[0.3175,'-7.76'],[0.3346,'-8.02']],
[[0.5431,'2:04.280'],[0.0623,'-1.12'],[0.3127,'-7.69'],[0.3327,'-7.99']],
[[0.5447,'2:04.652'],[0.0832,'-1.51'],[0.3045,'-7.57'],[0.3304,'-7.96']],
[[0.5463,'2:05.024'],[0.0575,'-1.03'],[0.3034,'-7.55'],[0.3282,'-7.92']],
[[0.5480,'2:05.396'],[0.0571,'-1.02'],[0.3081,'-7.62'],[0.3263,'-7.89']],
[[0.5496,'2:05.768'],[0.0575,'-1.03'],[0.3101,'-7.65'],[0.3250,'-7.87']],
[[0.5512,'2:06.141'],[0.0573,'-1.03'],[0.3077,'-7.62'],[0.3247,'-7.87']],
[[0.5528,'2:06.513'],[0.0565,'-1.01'],[0.3064,'-7.60'],[0.3239,'-7.86']],
[[0.5545,'2:06.885'],[0.0566,'-1.01'],[0.3081,'-7.62'],[0.3219,'-7.83']],
[[0.5561,'2:07.257'],[0.0580,'-1.04'],[0.3101,'-7.65'],[0.3203,'-7.80']],
[[0.5577,'2:07.629'],[0.0695,'-1.25'],[0.3155,'-7.73'],[0.3223,'-7.83']],
[[0.5593,'2:08.001'],[0.0569,'-1.02'],[0.3208,'-7.81'],[0.3243,'-7.86']],
[[0.5610,'2:08.373'],[0.0621,'-1.11'],[0.3238,'-7.86'],[0.3274,'-7.91']],
[[0.5626,'2:08.745'],[0.0636,'-1.14'],[0.3267,'-7.90'],[0.3306,'-7.96']],
[[0.5642,'2:09.117'],[0.0567,'-1.01'],[0.3149,'-7.72'],[0.3313,'-7.97']],
[[0.5659,'2:09.489'],[0.0569,'-1.02'],[0.2994,'-7.49'],[0.3313,'-7.97']],
[[0.5675,'2:09.862'],[0.0570,'-1.02'],[0.2897,'-7.35'],[0.3291,'-7.94']],
[[0.5691,'2:10.234'],[0.0592,'-1.06'],[0.2833,'-7.25'],[0.3256,'-7.88']],
[[0.5707,'2:10.606'],[0.0566,'-1.01'],[0.2803,'-7.20'],[0.3221,'-7.83']],
[[0.5724,'2:10.978'],[0.0926,'-1.69'],[0.2810,'-7.21'],[0.3185,'-7.78']],
[[0.5740,'2:11.350'],[0.0619,'-1.11'],[0.2869,'-7.30'],[0.3158,'-7.74']],
[[0.5756,'2:11.722'],[0.0601,'-1.08'],[0.3028,'-7.54'],[0.3146,'-7.72']],
[[0.5772,'2:12.094'],[0.0573,'-1.03'],[0.3156,'-7.73'],[0.3140,'-7.71']],
[[0.5789,'2:12.466'],[0.0579,'-1.04'],[0.3149,'-7.72'],[0.3157,'-7.74']],
[[0.5805,'2:12.838'],[0.0578,'-1.03'],[0.3141,'-7.71'],[0.3175,'-7.76']],
[[0.5821,'2:13.210'],[0.0572,'-1.02'],[0.3143,'-7.72'],[0.3220,'-7.83']],
[[0.5837,'2:13.583'],[0.0589,'-1.06'],[0.3145,'-7.72'],[0.3265,'-7.90']],
[[0.5854,'2:13.955'],[0.1143,'-2.11'],[0.3149,'-7.72'],[0.3304,'-7.96']],
[[0.5870,'2:14.327'],[0.1017,'-1.86'],[0.3152,'-7.73'],[0.3342,'-8.01']],
[[0.5886,'2:14.699'],[0.0565,'-1.01'],[0.3150,'-7.73'],[0.3350,'-8.03']],
[[0.5902,'2:15.071'],[0.0582,'-1.04'],[0.3147,'-7.72'],[0.3348,'-8.02']],
[[0.5919,'2:15.443'],[0.0594,'-1.06'],[0.3113,'-7.67'],[0.3327,'-7.99']],
[[0.5935,'2:15.815'],[0.0906,'-1.65'],[0.3057,'-7.59'],[0.3292,'-7.94']],
[[0.5951,'2:16.187'],[0.0565,'-1.01'],[0.3053,'-7.58'],[0.3274,'-7.91']],
[[0.5967,'2:16.559'],[0.1093,'-2.01'],[0.3115,'-7.67'],[0.3277,'-7.92']],
[[0.5984,'2:16.931'],[0.0582,'-1.04'],[0.3154,'-7.73'],[0.3280,'-7.92']],
[[0.6000,'2:17.303'],[0.0835,'-1.51'],[0.3139,'-7.71'],[0.3281,'-7.92']],
[[0.6016,'2:17.676'],[0.0575,'-1.03'],[0.3114,'-7.67'],[0.3279,'-7.92']],
[[0.6033,'2:18.048'],[0.0566,'-1.01'],[0.3022,'-7.53'],[0.3264,'-7.90']],
[[0.6049,'2:18.420'],[0.0581,'-1.04'],[0.2931,'-7.40'],[0.3249,'-7.87']],
[[0.6065,'2:18.792'],[0.0639,'-1.15'],[0.2998,'-7.50'],[0.3246,'-7.87']],
[[0.6081,'2:19.164'],[0.0568,'-1.02'],[0.3067,'-7.60'],[0.3243,'-7.86']],
[[0.6098,'2:19.536'],[0.0587,'-1.05'],[0.3083,'-7.62'],[0.3226,'-7.84']],
[[0.6114,'2:19.908'],[0.0566,'-1.01'],[0.3088,'-7.63'],[0.3207,'-7.81']],
[[0.6130,'2:20.280'],[0.0656,'-1.18'],[0.3092,'-7.64'],[0.3200,'-7.80']],
[[0.6146,'2:20.652'],[0.0576,'-1.03'],[0.3094,'-7.64'],[0.3197,'-7.80']],
[[0.6163,'2:21.024'],[0.0571,'-1.02'],[0.3041,'-7.56'],[0.3185,'-7.78']],
[[0.6179,'2:21.397'],[0.0593,'-1.06'],[0.2939,'-7.41'],[0.3165,'-7.75']],
[[0.6195,'2:21.769'],[0.0595,'-1.07'],[0.2858,'-7.29'],[0.3142,'-7.71']],
[[0.6211,'2:22.141'],[0.0640,'-1.15'],[0.2809,'-7.21'],[0.3117,'-7.68']],
[[0.6228,'2:22.513'],[0.0629,'-1.13'],[0.2784,'-7.18'],[0.3092,'-7.64']],
[[0.6244,'2:22.885'],[0.0618,'-1.11'],[0.2835,'-7.25'],[0.3069,'-7.60']],
[[0.6260,'2:23.257'],[0.0567,'-1.01'],[0.2876,'-7.31'],[0.3045,'-7.57']],
[[0.6276,'2:23.629'],[0.0626,'-1.12'],[0.2822,'-7.23'],[0.3014,'-7.52']],
[[0.6293,'2:24.001'],[0.0592,'-1.06'],[0.2768,'-7.15'],[0.2983,'-7.47']],
[[0.6309,'2:24.373'],[0.0646,'-1.16'],[0.2713,'-7.07'],[0.2943,'-7.42']],
[[0.6325,'2:24.745'],[0.0579,'-1.04'],[0.2657,'-6.99'],[0.2903,'-7.35']],
[[0.6341,'2:25.118'],[0.0648,'-1.16'],[0.2556,'-6.83'],[0.2861,'-7.29']],
[[0.6358,'2:25.490'],[0.0567,'-1.01'],[0.2442,'-6.66'],[0.2818,'-7.23']],
[[0.6374,'2:25.862'],[0.0578,'-1.03'],[0.2488,'-6.73'],[0.2790,'-7.18']],
[[0.6390,'2:26.234'],[0.0569,'-1.02'],[0.2624,'-6.94'],[0.2770,'-7.16']],
[[0.6407,'2:26.606'],[0.0571,'-1.02'],[0.2704,'-7.06'],[0.2757,'-7.14']],
[[0.6423,'2:26.978'],[0.0716,'-1.29'],[0.2725,'-7.09'],[0.2750,'-7.13']],
[[0.6439,'2:27.350'],[0.0593,'-1.06'],[0.2702,'-7.05'],[0.2746,'-7.12']],
[[0.6455,'2:27.722'],[0.0912,'-1.66'],[0.2591,'-6.89'],[0.2747,'-7.12']],
[[0.6472,'2:28.094'],[0.0576,'-1.03'],[0.2499,'-6.75'],[0.2748,'-7.12']],
[[0.6488,'2:28.466'],[0.1073,'-1.97'],[0.2489,'-6.73'],[0.2746,'-7.12']],
[[0.6504,'2:28.839'],[0.0565,'-1.01'],[0.2482,'-6.72'],[0.2744,'-7.12']],
[[0.6520,'2:29.211'],[0.0588,'-1.05'],[0.2531,'-6.80'],[0.2728,'-7.09']],
[[0.6537,'2:29.583'],[0.0566,'-1.01'],[0.2581,'-6.87'],[0.2711,'-7.07']],
[[0.6553,'2:29.955'],[0.0619,'-1.11'],[0.2566,'-6.85'],[0.2687,'-7.03']],
[[0.6569,'2:30.327'],[0.0571,'-1.02'],[0.2544,'-6.82'],[0.2662,'-6.99']],
[[0.6585,'2:30.699'],[0.0612,'-1.10'],[0.2610,'-6.91'],[0.2660,'-6.99']],
[[0.6602,'2:31.071'],[0.0570,'-1.02'],[0.2707,'-7.06'],[0.2666,'-7.00']],
[[0.6618,'2:31.443'],[0.0774,'-1.40'],[0.2730,'-7.10'],[0.2683,'-7.02']],
[[0.6634,'2:31.815'],[0.0615,'-1.10'],[0.2700,'-7.05'],[0.2709,'-7.06']],
[[0.6650,'2:32.187'],[0.0568,'-1.02'],[0.2718,'-7.08'],[0.2738,'-7.11']],
[[0.6667,'2:32.559'],[0.0565,'-1.01'],[0.2798,'-7.20'],[0.2772,'-7.16']],
[[0.6683,'2:32.932'],[0.0573,'-1.02'],[0.2843,'-7.26'],[0.2807,'-7.21']],
[[0.6699,'2:33.304'],[0.0577,'-1.03'],[0.2802,'-7.20'],[0.2847,'-7.27']],
[[0.6715,'2:33.676'],[0.0572,'-1.02'],[0.2775,'-7.16'],[0.2884,'-7.33']],
[[0.6732,'2:34.048'],[0.0569,'-1.02'],[0.2845,'-7.27'],[0.2901,'-7.35']],
[[0.6748,'2:34.420'],[0.0570,'-1.02'],[0.2914,'-7.37'],[0.2917,'-7.38']],
[[0.6764,'2:34.792'],[0.0868,'-1.58'],[0.2816,'-7.22'],[0.2935,'-7.40']],
[[0.6780,'2:35.164'],[0.0888,'-1.61'],[0.2714,'-7.07'],[0.2953,'-7.43']],
[[0.6797,'2:35.536'],[0.0913,'-1.66'],[0.2742,'-7.11'],[0.2946,'-7.42']],
[[0.6813,'2:35.908'],[0.0569,'-1.02'],[0.2796,'-7.19'],[0.2934,'-7.40']],
[[0.6829,'2:36.280'],[0.0600,'-1.08'],[0.2821,'-7.23'],[0.2927,'-7.39']],
[[0.6846,'2:36.653'],[0.0567,'-1.01'],[0.2833,'-7.25'],[0.2922,'-7.38']],
[[0.6862,'2:37.025'],[0.0573,'-1.02'],[0.2819,'-7.23'],[0.2911,'-7.37']],
[[0.6878,'2:37.397'],[0.0575,'-1.03'],[0.2784,'-7.18'],[0.2895,'-7.34']],
[[0.6894,'2:37.769'],[0.0695,'-1.25'],[0.2760,'-7.14'],[0.2883,'-7.33']],
[[0.6911,'2:38.141'],[0.0910,'-1.66'],[0.2753,'-7.13'],[0.2879,'-7.32']],
[[0.6927,'2:38.513'],[0.0565,'-1.01'],[0.2764,'-7.15'],[0.2880,'-7.32']],
[[0.6943,'2:38.885'],[0.0583,'-1.04'],[0.2833,'-7.25'],[0.2896,'-7.34']],
[[0.6959,'2:39.257'],[0.0567,'-1.01'],[0.2897,'-7.34'],[0.2912,'-7.37']],
[[0.6976,'2:39.629'],[0.0735,'-1.33'],[0.2899,'-7.35'],[0.2917,'-7.38']],
[[0.6992,'2:40.001'],[0.0574,'-1.03'],[0.2902,'-7.35'],[0.2923,'-7.39']],
[[0.7008,'2:40.374'],[0.0944,'-1.72'],[0.2845,'-7.27'],[0.2941,'-7.41']],
[[0.7024,'2:40.746'],[0.0566,'-1.01'],[0.2782,'-7.17'],[0.2959,'-7.44']],
[[0.7041,'2:41.118'],[0.0876,'-1.59'],[0.2730,'-7.10'],[0.2953,'-7.43']],
[[0.7057,'2:41.490'],[0.0565,'-1.01'],[0.2681,'-7.02'],[0.2941,'-7.41']],
[[0.7073,'2:41.862'],[0.0569,'-1.02'],[0.2747,'-7.12'],[0.2934,'-7.40']],
[[0.7089,'2:42.234'],[0.0569,'-1.02'],[0.2881,'-7.32'],[0.2930,'-7.39']],
[[0.7106,'2:42.606'],[0.0863,'-1.57'],[0.2906,'-7.36'],[0.2926,'-7.39']],
[[0.7122,'2:42.978'],[0.0567,'-1.01'],[0.2812,'-7.22'],[0.2923,'-7.38']],
[[0.7138,'2:43.350'],[0.0979,'-1.79'],[0.2756,'-7.13'],[0.2922,'-7.38']],
[[0.7154,'2:43.722'],[0.0633,'-1.14'],[0.2775,'-7.16'],[0.2925,'-7.39']],
[[0.7171,'2:44.095'],[0.0569,'-1.02'],[0.2792,'-7.19'],[0.2929,'-7.39']],
[[0.7187,'2:44.467'],[0.0623,'-1.12'],[0.2801,'-7.20'],[0.2939,'-7.41']],
[[0.7203,'2:44.839'],[0.0565,'-1.01'],[0.2809,'-7.21'],[0.2948,'-7.42']],
[[0.7220,'2:45.211'],[0.0578,'-1.03'],[0.2798,'-7.20'],[0.2937,'-7.41']],
[[0.7236,'2:45.583'],[0.0954,'-1.74'],[0.2787,'-7.18'],[0.2926,'-7.39']],
[[0.7252,'2:45.955'],[0.0576,'-1.03'],[0.2764,'-7.15'],[0.2921,'-7.38']],
[[0.7268,'2:46.327'],[0.0614,'-1.10'],[0.2740,'-7.11'],[0.2915,'-7.37']],
[[0.7285,'2:46.699'],[0.0571,'-1.02'],[0.2759,'-7.14'],[0.2918,'-7.38']],
[[0.7301,'2:47.071'],[0.0574,'-1.03'],[0.2794,'-7.19'],[0.2922,'-7.38']],
[[0.7317,'2:47.443'],[0.1180,'-2.18'],[0.2691,'-7.04'],[0.2903,'-7.35']],
[[0.7333,'2:47.815'],[0.1016,'-1.86'],[0.2488,'-6.73'],[0.2865,'-7.30']],
[[0.7350,'2:48.188'],[0.0870,'-1.58'],[0.2659,'-6.99'],[0.2870,'-7.30']],
[[0.7366,'2:48.560'],[0.0565,'-1.01'],[0.3333,'-8.00'],[0.2931,'-7.40']],
[[0.7382,'2:48.932'],[0.0591,'-1.06'],[0.3699,'-8.55'],[0.3007,'-7.51']],
[[0.7398,'2:49.304'],[0.0946,'-1.73'],[0.3258,'-7.89'],[0.3124,'-7.69']],
[[0.7415,'2:49.676'],[0.1618,'-3.07'],[0.2885,'-7.33'],[0.3228,'-7.84']],
[[0.7431,'2:50.048'],[0.0991,'-1.81'],[0.2990,'-7.48'],[0.3249,'-7.87']],
[[0.7447,'2:50.420'],[0.0566,'-1.01'],[0.3094,'-7.64'],[0.3270,'-7.91']],
[[0.7463,'2:50.792'],[0.0567,'-1.01'],[0.2953,'-7.43'],[0.3310,'-7.96']],
[[0.7480,'2:51.164'],[0.0612,'-1.10'],[0.2806,'-7.21'],[0.3350,'-8.03']],
[[0.7496,'2:51.536'],[0.0565,'-1.01'],[0.2862,'-7.29'],[0.3284,'-7.93']],
[[0.7512,'2:51.909'],[0.0590,'-1.06'],[0.2961,'-7.44'],[0.3195,'-7.79']],
[[0.7528,'2:52.281'],[0.0834,'-1.51'],[0.2968,'-7.45'],[0.3155,'-7.73']],
[[0.7545,'2:52.653'],[0.0630,'-1.13'],[0.2932,'-7.40'],[0.3139,'-7.71']],
[[0.7561,'2:53.025'],[0.0610,'-1.09'],[0.2930,'-7.40'],[0.3114,'-7.67']],
[[0.7577,'2:53.397'],[0.0566,'-1.01'],[0.2960,'-7.44'],[0.3083,'-7.62']],
[[0.7593,'2:53.769'],[0.0568,'-1.02'],[0.2991,'-7.49'],[0.3068,'-7.60']],
[[0.7610,'2:54.141'],[0.0588,'-1.05'],[0.3024,'-7.54'],[0.3081,'-7.62']],
[[0.7626,'2:54.513'],[0.0601,'-1.08'],[0.3025,'-7.54'],[0.3092,'-7.64']],
[[0.7642,'2:54.885'],[0.0577,'-1.03'],[0.2910,'-7.37'],[0.3095,'-7.64']],
[[0.7659,'2:55.257'],[0.0893,'-1.62'],[0.2812,'-7.22'],[0.3099,'-7.65']],
[[0.7675,'2:55.630'],[0.0909,'-1.66'],[0.2921,'-7.38'],[0.3106,'-7.66']],
[[0.7691,'2:56.002'],[0.0577,'-1.03'],[0.3029,'-7.54'],[0.3113,'-7.67']],
[[0.7707,'2:56.374'],[0.0571,'-1.02'],[0.2941,'-7.41'],[0.3097,'-7.65']],
[[0.7724,'2:56.746'],[0.0566,'-1.01'],[0.2837,'-7.25'],[0.3079,'-7.62']],
[[0.7740,'2:57.118'],[0.1266,'-2.35'],[0.2863,'-7.29'],[0.3063,'-7.59']],
[[0.7756,'2:57.490'],[0.0576,'-1.03'],[0.2927,'-7.39'],[0.3048,'-7.57']],
[[0.7772,'2:57.862'],[0.0783,'-1.42'],[0.2961,'-7.44'],[0.3052,'-7.58']],
[[0.7789,'2:58.234'],[0.0591,'-1.06'],[0.2976,'-7.46'],[0.3069,'-7.60']],
[[0.7805,'2:58.606'],[0.0783,'-1.42'],[0.3020,'-7.53'],[0.3087,'-7.63']],
[[0.7821,'2:58.978'],[0.0706,'-1.27'],[0.3098,'-7.65'],[0.3106,'-7.66']],
[[0.7837,'2:59.351'],[0.0576,'-1.03'],[0.3140,'-7.71'],[0.3126,'-7.69']],
[[0.7854,'2:59.723'],[0.0615,'-1.10'],[0.3107,'-7.66'],[0.3148,'-7.72']],
[[0.7870,'3:00.095'],[0.0566,'-1.01'],[0.3075,'-7.61'],[0.3170,'-7.75']],
[[0.7886,'3:00.467'],[0.0565,'-1.01'],[0.3052,'-7.58'],[0.3187,'-7.78']],
[[0.7902,'3:00.839'],[0.0571,'-1.02'],[0.3030,'-7.55'],[0.3204,'-7.81']],
[[0.7919,'3:01.211'],[0.0584,'-1.04'],[0.3073,'-7.61'],[0.3202,'-7.80']],
[[0.7935,'3:01.583'],[0.0575,'-1.03'],[0.3115,'-7.67'],[0.3201,'-7.80']],
[[0.7951,'3:01.955'],[0.0599,'-1.07'],[0.2939,'-7.41'],[0.3181,'-7.77']],
[[0.7967,'3:02.327'],[0.0666,'-1.20'],[0.2730,'-7.09'],[0.3159,'-7.74']],
[[0.7984,'3:02.699'],[0.0922,'-1.68'],[0.2686,'-7.03'],[0.3122,'-7.68']],
[[0.8000,'3:03.071'],[0.0627,'-1.13'],[0.2706,'-7.06'],[0.3080,'-7.62']],
[[0.8016,'3:03.444'],[0.0602,'-1.08'],[0.2726,'-7.09'],[0.3048,'-7.57']],
[[0.8033,'3:03.816'],[0.0576,'-1.03'],[0.2744,'-7.12'],[0.3024,'-7.54']],
[[0.8049,'3:04.188'],[0.0567,'-1.01'],[0.2758,'-7.14'],[0.2995,'-7.49']],
[[0.8065,'3:04.560'],[0.0570,'-1.02'],[0.2767,'-7.15'],[0.2960,'-7.44']],
[[0.8081,'3:04.932'],[0.0885,'-1.61'],[0.2827,'-7.24'],[0.2934,'-7.40']],
[[0.8098,'3:05.304'],[0.0590,'-1.06'],[0.3026,'-7.54'],[0.2931,'-7.40']],
[[0.8114,'3:05.676'],[0.0591,'-1.06'],[0.3203,'-7.81'],[0.2936,'-7.40']],
[[0.8130,'3:06.048'],[0.0686,'-1.23'],[0.3218,'-7.83'],[0.2995,'-7.49']],
[[0.8146,'3:06.420'],[0.0566,'-1.01'],[0.3233,'-7.85'],[0.3055,'-7.58']],
[[0.8163,'3:06.792'],[0.0643,'-1.15'],[0.3178,'-7.77'],[0.3104,'-7.66']],
[[0.8179,'3:07.165'],[0.0687,'-1.24'],[0.3121,'-7.68'],[0.3152,'-7.73']],
[[0.8195,'3:07.537'],[0.0573,'-1.02'],[0.3036,'-7.55'],[0.3202,'-7.80']],
[[0.8211,'3:07.909'],[0.0571,'-1.02'],[0.2944,'-7.42'],[0.3252,'-7.88']],
[[0.8228,'3:08.281'],[0.1193,'-2.21'],[0.2991,'-7.49'],[0.3266,'-7.90']],
[[0.8244,'3:08.653'],[0.0613,'-1.10'],[0.3106,'-7.66'],[0.3260,'-7.89']],
[[0.8260,'3:09.025'],[0.0600,'-1.07'],[0.3091,'-7.64'],[0.3238,'-7.86']],
[[0.8276,'3:09.397'],[0.0575,'-1.03'],[0.2954,'-7.43'],[0.3201,'-7.80']],
[[0.8293,'3:09.769'],[0.1106,'-2.04'],[0.2884,'-7.33'],[0.3171,'-7.76']],
[[0.8309,'3:10.141'],[0.0598,'-1.07'],[0.2931,'-7.40'],[0.3154,'-7.73']],
[[0.8325,'3:10.513'],[0.1065,'-1.96'],[0.2975,'-7.46'],[0.3143,'-7.71']],
[[0.8341,'3:10.886'],[0.0567,'-1.01'],[0.3011,'-7.52'],[0.3152,'-7.73']],
[[0.8358,'3:11.258'],[0.0992,'-1.81'],[0.3044,'-7.57'],[0.3160,'-7.74']],
[[0.8374,'3:11.630'],[0.0627,'-1.12'],[0.3019,'-7.53'],[0.3167,'-7.75']],
[[0.8390,'3:12.002'],[0.0569,'-1.02'],[0.2994,'-7.49'],[0.3174,'-7.76']],
[[0.8407,'3:12.374'],[0.0577,'-1.03'],[0.3062,'-7.59'],[0.3185,'-7.78']],
[[0.8423,'3:12.746'],[0.0571,'-1.02'],[0.3138,'-7.71'],[0.3195,'-7.79']],
[[0.8439,'3:13.118'],[0.0579,'-1.04'],[0.3156,'-7.73'],[0.3220,'-7.83']],
[[0.8455,'3:13.490'],[0.0602,'-1.08'],[0.3156,'-7.73'],[0.3250,'-7.87']],
[[0.8472,'3:13.862'],[0.0787,'-1.42'],[0.3154,'-7.73'],[0.3255,'-7.88']],
[[0.8488,'3:14.234'],[0.0662,'-1.19'],[0.3151,'-7.73'],[0.3244,'-7.87']],
[[0.8504,'3:14.607'],[0.0596,'-1.07'],[0.3095,'-7.64'],[0.3233,'-7.85']],
[[0.8520,'3:14.979'],[0.0658,'-1.18'],[0.2978,'-7.47'],[0.3221,'-7.83']],
[[0.8537,'3:15.351'],[0.0601,'-1.08'],[0.2907,'-7.36'],[0.3202,'-7.80']],
[[0.8553,'3:15.723'],[0.0573,'-1.03'],[0.2939,'-7.41'],[0.3171,'-7.76']],
[[0.8569,'3:16.095'],[0.0892,'-1.62'],[0.2960,'-7.44'],[0.3144,'-7.72']],
[[0.8585,'3:16.467'],[0.0947,'-1.73'],[0.2928,'-7.39'],[0.3141,'-7.71']],
[[0.8602,'3:16.839'],[0.0707,'-1.27'],[0.2898,'-7.35'],[0.3138,'-7.71']],
[[0.8618,'3:17.211'],[0.0582,'-1.04'],[0.3007,'-7.51'],[0.3149,'-7.72']],
[[0.8634,'3:17.583'],[0.0566,'-1.01'],[0.3116,'-7.67'],[0.3161,'-7.74']],
[[0.8650,'3:17.955'],[0.0866,'-1.57'],[0.3169,'-7.75'],[0.3169,'-7.75']],
[[0.8667,'3:18.327'],[0.0878,'-1.60'],[0.3214,'-7.82'],[0.3176,'-7.76']],
[[0.8683,'3:18.700'],[0.0866,'-1.57'],[0.3205,'-7.81'],[0.3209,'-7.81']],
[[0.8699,'3:19.072'],[0.0567,'-1.01'],[0.3175,'-7.76'],[0.3252,'-7.88']],
[[0.8715,'3:19.444'],[0.1138,'-2.10'],[0.3168,'-7.75'],[0.3276,'-7.91']],
[[0.8732,'3:19.816'],[0.1129,'-2.08'],[0.3180,'-7.77'],[0.3285,'-7.93']],
[[0.8748,'3:20.188'],[0.1432,'-2.69'],[0.3139,'-7.71'],[0.3287,'-7.93']],
[[0.8764,'3:20.560'],[0.0686,'-1.24'],[0.3022,'-7.53'],[0.3278,'-7.92']],
[[0.8780,'3:20.932'],[0.0619,'-1.11'],[0.2929,'-7.39'],[0.3261,'-7.89']],
[[0.8797,'3:21.304'],[0.0976,'-1.78'],[0.2903,'-7.35'],[0.3221,'-7.83']],
[[0.8813,'3:21.676'],[0.0573,'-1.03'],[0.2877,'-7.32'],[0.3182,'-7.77']],
[[0.8829,'3:22.048'],[0.0577,'-1.03'],[0.2859,'-7.29'],[0.3146,'-7.72']],
[[0.8846,'3:22.421'],[0.0637,'-1.14'],[0.2841,'-7.26'],[0.3109,'-7.66']],
[[0.8862,'3:22.793'],[0.1076,'-1.98'],[0.2755,'-7.13'],[0.3044,'-7.57']],
[[0.8878,'3:23.165'],[0.0665,'-1.20'],[0.2666,'-7.00'],[0.2977,'-7.47']],
[[0.8894,'3:23.537'],[0.0624,'-1.12'],[0.2716,'-7.07'],[0.2952,'-7.43']],
[[0.8911,'3:23.909'],[0.0847,'-1.54'],[0.2798,'-7.20'],[0.2937,'-7.41']],
[[0.8927,'3:24.281'],[0.1114,'-2.05'],[0.2859,'-7.29'],[0.2931,'-7.40']],
[[0.8943,'3:24.653'],[0.0994,'-1.82'],[0.2909,'-7.36'],[0.2930,'-7.39']],
[[0.8959,'3:25.025'],[0.0577,'-1.03'],[0.2971,'-7.46'],[0.2933,'-7.40']],
[[0.8976,'3:25.397'],[0.0566,'-1.01'],[0.3044,'-7.57'],[0.2940,'-7.41']],
[[0.8992,'3:25.769'],[0.0573,'-1.02'],[0.3054,'-7.58'],[0.2961,'-7.44']],
[[0.9008,'3:26.142'],[0.0966,'-1.77'],[0.2950,'-7.43'],[0.3005,'-7.51']],
[[0.9024,'3:26.514'],[0.0593,'-1.06'],[0.2858,'-7.29'],[0.3042,'-7.56']],
[[0.9041,'3:26.886'],[0.0630,'-1.13'],[0.2810,'-7.21'],[0.3047,'-7.57']],
[[0.9057,'3:27.258'],[0.0613,'-1.10'],[0.2769,'-7.15'],[0.3053,'-7.58']],
[[0.9073,'3:27.630'],[0.0634,'-1.14'],[0.2848,'-7.27'],[0.3056,'-7.58']],
[[0.9089,'3:28.002'],[0.0585,'-1.05'],[0.2927,'-7.39'],[0.3060,'-7.59']],
[[0.9106,'3:28.374'],[0.0572,'-1.02'],[0.3049,'-7.57'],[0.3063,'-7.59']],
[[0.9122,'3:28.746'],[0.1320,'-2.46'],[0.3176,'-7.76'],[0.3066,'-7.60']],
[[0.9138,'3:29.118'],[0.1397,'-2.61'],[0.3176,'-7.76'],[0.3080,'-7.62']],
[[0.9154,'3:29.490'],[0.0824,'-1.49'],[0.3136,'-7.70'],[0.3098,'-7.65']],
[[0.9171,'3:29.863'],[0.0697,'-1.25'],[0.3130,'-7.70'],[0.3120,'-7.68']],
[[0.9187,'3:30.235'],[0.1302,'-2.42'],[0.3147,'-7.72'],[0.3145,'-7.72']],
[[0.9203,'3:30.607'],[0.0969,'-1.77'],[0.3190,'-7.78'],[0.3180,'-7.77']],
[[0.9220,'3:30.979'],[0.0764,'-1.38'],[0.3264,'-7.90'],[0.3225,'-7.84']],
[[0.9236,'3:31.351'],[0.0664,'-1.19'],[0.3302,'-7.95'],[0.3260,'-7.89']],
[[0.9252,'3:31.723'],[0.0680,'-1.22'],[0.3257,'-7.88'],[0.3270,'-7.91']],
[[0.9268,'3:32.095'],[0.1372,'-2.56'],[0.3233,'-7.85'],[0.3283,'-7.92']],
[[0.9285,'3:32.467'],[0.0674,'-1.21'],[0.3329,'-7.99'],[0.3310,'-7.97']],
[[0.9301,'3:32.839'],[0.0895,'-1.63'],[0.3422,'-8.13'],[0.3337,'-8.01']],
[[0.9317,'3:33.211'],[0.0818,'-1.48'],[0.3216,'-7.82'],[0.3336,'-8.00']],
[[0.9333,'3:33.583'],[0.1359,'-2.54'],[0.3010,'-7.52'],[0.3336,'-8.00']],
[[0.9350,'3:33.956'],[0.0595,'-1.07'],[0.3049,'-7.57'],[0.3322,'-7.98']],
[[0.9366,'3:34.328'],[0.1130,'-2.08'],[0.3128,'-7.69'],[0.3305,'-7.96']],
[[0.9382,'3:34.700'],[0.0663,'-1.19'],[0.3126,'-7.69'],[0.3280,'-7.92']],
[[0.9398,'3:35.072'],[0.0687,'-1.24'],[0.3090,'-7.64'],[0.3252,'-7.88']],
[[0.9415,'3:35.444'],[0.0735,'-1.33'],[0.3080,'-7.62'],[0.3221,'-7.83']],
[[0.9431,'3:35.816'],[0.0792,'-1.43'],[0.3089,'-7.63'],[0.3189,'-7.78']],
[[0.9447,'3:36.188'],[0.0588,'-1.05'],[0.3057,'-7.59'],[0.3165,'-7.75']],
[[0.9463,'3:36.560'],[0.1272,'-2.36'],[0.2965,'-7.45'],[0.3154,'-7.73']],
[[0.9480,'3:36.932'],[0.0640,'-1.15'],[0.2891,'-7.34'],[0.3137,'-7.71']],
[[0.9496,'3:37.304'],[0.0902,'-1.64'],[0.2865,'-7.30'],[0.3105,'-7.66']],
[[0.9512,'3:37.677'],[0.0698,'-1.26'],[0.2856,'-7.28'],[0.3076,'-7.61']],
[[0.9528,'3:38.049'],[0.0625,'-1.12'],[0.2999,'-7.50'],[0.3075,'-7.61']],
[[0.9545,'3:38.421'],[0.0890,'-1.62'],[0.3141,'-7.71'],[0.3073,'-7.61']],
[[0.9561,'3:38.793'],[0.0858,'-1.56'],[0.3087,'-7.63'],[0.3072,'-7.61']],
[[0.9577,'3:39.165'],[0.0907,'-1.65'],[0.3023,'-7.53'],[0.3072,'-7.61']],
[[0.9593,'3:39.537'],[0.0719,'-1.30'],[0.2996,'-7.49'],[0.3071,'-7.61']],
[[0.9610,'3:39.909'],[0.0610,'-1.09'],[0.2976,'-7.46'],[0.3069,'-7.60']],
[[0.9626,'3:40.281'],[0.0632,'-1.13'],[0.2951,'-7.43'],[0.3076,'-7.61']],
[[0.9642,'3:40.653'],[0.0590,'-1.06'],[0.2923,'-7.38'],[0.3089,'-7.63']],
[[0.9659,'3:41.025'],[0.0771,'-1.39'],[0.2887,'-7.33'],[0.3083,'-7.62']],
[[0.9675,'3:41.398'],[0.1033,'-1.89'],[0.2844,'-7.27'],[0.3060,'-7.59']],
[[0.9691,'3:41.770'],[0.1060,'-1.95'],[0.2889,'-7.33'],[0.3053,'-7.58']],
[[0.9707,'3:42.142'],[0.1166,'-2.15'],[0.3094,'-7.64'],[0.3078,'-7.62']],
[[0.9724,'3:42.514'],[0.0701,'-1.26'],[0.3637,'-8.46'],[0.3147,'-7.72']],
[[0.9740,'3:42.886'],[0.1119,'-2.06'],[0.5507,'-11.26'],[0.3395,'-8.09']],
[[0.9756,'3:43.258'],[0.1326,'-2.47'],[0.7170,'-13.75'],[0.3651,'-8.48']],
[[0.9772,'3:43.630'],[0.2449,'-4.88'],[0.5093,'-10.64'],[0.4041,'-9.06']],
[[0.9789,'3:44.002'],[0.1459,'-2.74'],[0.3017,'-7.52'],[0.4431,'-9.65']],
[[0.9805,'3:44.374'],[0.1677,'-3.19'],[0.2846,'-7.27'],[0.4563,'-9.84']],
[[0.9821,'3:44.746'],[0.0576,'-1.03'],[0.2882,'-7.32'],[0.4666,'-10.00']],
[[0.9837,'3:45.119'],[0.0767,'-1.39'],[0.3206,'-7.81'],[0.4707,'-10.06']],
[[0.9854,'3:45.491'],[0.0646,'-1.16'],[0.3626,'-8.44'],[0.4728,'-10.09']],
[[0.9870,'3:45.863'],[0.0680,'-1.22'],[0.6617,'-12.93'],[0.4786,'-10.18']],
[[0.9886,'3:46.235'],[0.0764,'-1.38'],[1.1314,'-19.97'],[0.4867,'-10.30']],
[[0.9902,'3:46.607'],[0.3607,'-7.77'],[1.5603,'-26.40'],[0.4983,'-10.47']],
[[0.9919,'3:46.979'],[0.5997,'-15.91'],[1.9394,'-32.09'],[0.5141,'-10.71']],
[[0.9935,'3:47.351'],[0.7167,'-21.91'],[2.2813,'-37.22'],[0.5602,'-11.40']],
[[0.9951,'3:47.723'],[0.8026,'-28.18'],[2.5366,'-41.05'],[0.6765,'-13.15']],
[[0.9967,'3:48.095'],[0.8314,'-30.93'],[2.7535,'-44.30'],[0.7754,'-14.63']],
[[0.9984,'3:48.467'],[0.8291,'-30.69'],[2.7535,'-44.30'],[0.7754,'-14.63']],
[[1.0000,'3:48.839'],[1.0000,'-inf'],[2.7535,'-44.30'],[0.7754,'-14.63']],
],
xmaj:[
[0.0000,'0:00'],
[0.1311,'0:30'],
[0.2622,'1:00'],
[0.3933,'1:30'],
[0.5244,'2:00'],
[0.6555,'2:30'],
[0.7866,'3:00'],
[0.9177,'3:30'],
],
xmin:[
0.0437,
0.0874,
0.1748,
0.2185,
0.3059,
0.3496,
0.4370,
0.4807,
0.5681,
0.6118,
0.6992,
0.7429,
0.8303,
0.8740,
0.9614,
],
yrange:[
-18.00,
-3.00,
],
ymaj:[
[0.0000,'-3'],
[0.2000,'-6'],
[0.4000,'-9'],
[0.6000,'-12'],
[0.8000,'-15'],
[1.0000,'-18'],
],
ymin:[
0.0667,
0.1333,
0.2667,
0.3333,
0.4667,
0.5333,
0.6667,
0.7333,
0.8667,
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>