-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprologue.render_stats.html
938 lines (938 loc) · 56.7 KB
/
prologue.render_stats.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
<!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.mp3</td>
<td>2:00.000</td>
<td>+0.2</td>
<td>+0.2</td>
<td>3</td>
<td>4</td>
<td>-9.6</td>
<td>-10.6</td>
<td>-12.5</td>
<td>5.5</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.mp3',
length:120.000,
series:['Peak','RMS-M','RMS-S'],
integrated:['RMS-I',0.3637,'-12.55'],
dynrange:['RMS-RA',[0.5944,'-16.70'],[0.2889,'-11.20']],
vals:[
[[0.0016,'0:00.186'],[0.3356,'-7.10'],[0.5883,'-16.59'],[1.0260,'-24.47']],
[[0.0031,'0:00.372'],[0.4141,'-9.29'],[0.5809,'-16.46'],[0.9702,'-23.46']],
[[0.0047,'0:00.558'],[0.4483,'-10.33'],[0.5946,'-16.70'],[0.9197,'-22.55']],
[[0.0062,'0:00.744'],[0.5362,'-13.35'],[0.6121,'-17.02'],[0.8700,'-21.66']],
[[0.0078,'0:00.930'],[0.4136,'-9.27'],[0.6173,'-17.11'],[0.8433,'-21.18']],
[[0.0093,'0:01.116'],[0.4573,'-10.62'],[0.6174,'-17.11'],[0.8265,'-20.88']],
[[0.0109,'0:01.302'],[0.4923,'-11.78'],[0.6687,'-18.04'],[0.8129,'-20.63']],
[[0.0124,'0:01.488'],[0.5440,'-13.64'],[0.7620,'-19.72'],[0.8021,'-20.44']],
[[0.0140,'0:01.674'],[0.5491,'-13.84'],[0.8097,'-20.58'],[0.7895,'-20.21']],
[[0.0155,'0:01.860'],[0.5920,'-15.57'],[0.7893,'-20.21'],[0.7742,'-19.94']],
[[0.0171,'0:02.046'],[0.5797,'-15.06'],[0.7731,'-19.92'],[0.7597,'-19.67']],
[[0.0186,'0:02.232'],[0.5389,'-13.45'],[0.7698,'-19.86'],[0.7475,'-19.45']],
[[0.0202,'0:02.418'],[0.5207,'-12.78'],[0.7677,'-19.82'],[0.7358,'-19.24']],
[[0.0217,'0:02.604'],[0.5181,'-12.68'],[0.7758,'-19.96'],[0.7288,'-19.12']],
[[0.0233,'0:02.790'],[0.5467,'-13.74'],[0.7838,'-20.11'],[0.7219,'-18.99']],
[[0.0248,'0:02.976'],[0.5703,'-14.67'],[0.7580,'-19.64'],[0.7315,'-19.17']],
[[0.0264,'0:03.162'],[0.5071,'-12.29'],[0.7303,'-19.15'],[0.7420,'-19.36']],
[[0.0279,'0:03.348'],[0.5438,'-13.63'],[0.7173,'-18.91'],[0.7482,'-19.47']],
[[0.0295,'0:03.534'],[0.5221,'-12.83'],[0.7079,'-18.74'],[0.7532,'-19.56']],
[[0.0310,'0:03.720'],[0.5356,'-13.32'],[0.7008,'-18.61'],[0.7587,'-19.66']],
[[0.0326,'0:03.906'],[0.5173,'-12.65'],[0.6950,'-18.51'],[0.7643,'-19.76']],
[[0.0341,'0:04.093'],[0.4577,'-10.63'],[0.7028,'-18.65'],[0.7670,'-19.81']],
[[0.0357,'0:04.279'],[0.4750,'-11.19'],[0.7242,'-19.04'],[0.7666,'-19.80']],
[[0.0372,'0:04.465'],[0.4920,'-11.77'],[0.7309,'-19.16'],[0.7631,'-19.74']],
[[0.0388,'0:04.651'],[0.5460,'-13.72'],[0.7103,'-18.79'],[0.7537,'-19.57']],
[[0.0403,'0:04.837'],[0.4734,'-11.14'],[0.6949,'-18.51'],[0.7463,'-19.43']],
[[0.0419,'0:05.023'],[0.4589,'-10.67'],[0.7007,'-18.61'],[0.7467,'-19.44']],
[[0.0434,'0:05.209'],[0.4834,'-11.47'],[0.7074,'-18.73'],[0.7470,'-19.45']],
[[0.0450,'0:05.395'],[0.5631,'-14.39'],[0.7307,'-19.15'],[0.7473,'-19.45']],
[[0.0465,'0:05.581'],[0.5262,'-12.98'],[0.7540,'-19.57'],[0.7476,'-19.46']],
[[0.0481,'0:05.767'],[0.5294,'-13.09'],[0.7587,'-19.66'],[0.7481,'-19.47']],
[[0.0496,'0:05.953'],[0.5090,'-12.36'],[0.7613,'-19.70'],[0.7487,'-19.48']],
[[0.0512,'0:06.139'],[0.5139,'-12.53'],[0.7508,'-19.51'],[0.7497,'-19.49']],
[[0.0527,'0:06.325'],[0.5226,'-12.84'],[0.7358,'-19.25'],[0.7508,'-19.51']],
[[0.0543,'0:06.511'],[0.5112,'-12.43'],[0.7065,'-18.72'],[0.7492,'-19.48']],
[[0.0558,'0:06.697'],[0.5135,'-12.52'],[0.6674,'-18.01'],[0.7457,'-19.42']],
[[0.0574,'0:06.883'],[0.4880,'-11.63'],[0.6471,'-17.65'],[0.7427,'-19.37']],
[[0.0589,'0:07.069'],[0.3815,'-8.35'],[0.6496,'-17.69'],[0.7402,'-19.32']],
[[0.0605,'0:07.255'],[0.4384,'-10.02'],[0.6425,'-17.57'],[0.7351,'-19.23']],
[[0.0620,'0:07.441'],[0.5198,'-12.74'],[0.6128,'-17.03'],[0.7236,'-19.03']],
[[0.0636,'0:07.627'],[0.4926,'-11.79'],[0.5802,'-16.44'],[0.7107,'-18.79']],
[[0.0651,'0:07.813'],[0.5028,'-12.14'],[0.5316,'-15.57'],[0.6894,'-18.41']],
[[0.0667,'0:08.000'],[0.2616,'-5.27'],[0.4830,'-14.69'],[0.6681,'-18.03']],
[[0.0682,'0:08.186'],[0.3280,'-6.90'],[0.4980,'-14.96'],[0.6578,'-17.84']],
[[0.0698,'0:08.372'],[0.3632,'-7.84'],[0.5131,'-15.23'],[0.6474,'-17.65']],
[[0.0713,'0:08.558'],[0.4166,'-9.36'],[0.5355,'-15.64'],[0.6359,'-17.45']],
[[0.0729,'0:08.744'],[0.3747,'-8.16'],[0.5592,'-16.06'],[0.6241,'-17.23']],
[[0.0744,'0:08.930'],[0.3686,'-7.99'],[0.5674,'-16.21'],[0.6155,'-17.08']],
[[0.0760,'0:09.116'],[0.3997,'-8.87'],[0.5690,'-16.24'],[0.6082,'-16.95']],
[[0.0775,'0:09.302'],[0.4040,'-8.99'],[0.5770,'-16.39'],[0.6024,'-16.84']],
[[0.0791,'0:09.488'],[0.4097,'-9.16'],[0.5902,'-16.62'],[0.5980,'-16.76']],
[[0.0806,'0:09.674'],[0.3502,'-7.49'],[0.5963,'-16.73'],[0.5927,'-16.67']],
[[0.0822,'0:09.860'],[0.3986,'-8.83'],[0.5920,'-16.66'],[0.5863,'-16.55']],
[[0.0837,'0:10.046'],[0.4120,'-9.23'],[0.5867,'-16.56'],[0.5808,'-16.45']],
[[0.0853,'0:10.232'],[0.3833,'-8.40'],[0.5786,'-16.41'],[0.5782,'-16.41']],
[[0.0868,'0:10.418'],[0.3902,'-8.59'],[0.5738,'-16.33'],[0.5757,'-16.36']],
[[0.0884,'0:10.604'],[0.4008,'-8.90'],[0.5992,'-16.79'],[0.5754,'-16.36']],
[[0.0899,'0:10.790'],[0.4694,'-11.01'],[0.6246,'-17.24'],[0.5751,'-16.35']],
[[0.0915,'0:10.976'],[0.3575,'-7.68'],[0.6005,'-16.81'],[0.5854,'-16.54']],
[[0.0930,'0:11.162'],[0.4130,'-9.25'],[0.5738,'-16.33'],[0.5962,'-16.73']],
[[0.0946,'0:11.348'],[0.4117,'-9.22'],[0.5522,'-15.94'],[0.5960,'-16.73']],
[[0.0961,'0:11.534'],[0.3611,'-7.78'],[0.5318,'-15.57'],[0.5931,'-16.68']],
[[0.0977,'0:11.720'],[0.4057,'-9.04'],[0.5226,'-15.41'],[0.5911,'-16.64']],
[[0.0992,'0:11.906'],[0.3399,'-7.22'],[0.5195,'-15.35'],[0.5896,'-16.61']],
[[0.1008,'0:12.093'],[0.3304,'-6.97'],[0.5258,'-15.46'],[0.5879,'-16.58']],
[[0.1023,'0:12.279'],[0.3925,'-8.66'],[0.5416,'-15.75'],[0.5862,'-16.55']],
[[0.1039,'0:12.465'],[0.4240,'-9.58'],[0.5641,'-16.15'],[0.5861,'-16.55']],
[[0.1054,'0:12.651'],[0.3659,'-7.91'],[0.5990,'-16.78'],[0.5891,'-16.60']],
[[0.1070,'0:12.837'],[0.4315,'-9.81'],[0.6243,'-17.24'],[0.5916,'-16.65']],
[[0.1085,'0:13.023'],[0.4575,'-10.62'],[0.6109,'-17.00'],[0.5926,'-16.67']],
[[0.1101,'0:13.209'],[0.4105,'-9.18'],[0.5965,'-16.74'],[0.5932,'-16.68']],
[[0.1116,'0:13.395'],[0.4230,'-9.55'],[0.5605,'-16.09'],[0.5868,'-16.56']],
[[0.1132,'0:13.581'],[0.4161,'-9.35'],[0.5246,'-15.44'],[0.5804,'-16.45']],
[[0.1147,'0:13.767'],[0.3961,'-8.76'],[0.5263,'-15.47'],[0.5767,'-16.38']],
[[0.1163,'0:13.953'],[0.4033,'-8.97'],[0.5323,'-15.58'],[0.5733,'-16.32']],
[[0.1178,'0:14.139'],[0.4038,'-8.98'],[0.5533,'-15.96'],[0.5744,'-16.34']],
[[0.1194,'0:14.325'],[0.3834,'-8.40'],[0.5793,'-16.43'],[0.5771,'-16.39']],
[[0.1209,'0:14.511'],[0.4327,'-9.85'],[0.5747,'-16.35'],[0.5787,'-16.42']],
[[0.1225,'0:14.697'],[0.3980,'-8.82'],[0.5498,'-15.90'],[0.5795,'-16.43']],
[[0.1240,'0:14.883'],[0.3727,'-8.10'],[0.5373,'-15.67'],[0.5799,'-16.44']],
[[0.1256,'0:15.069'],[0.3940,'-8.70'],[0.5398,'-15.72'],[0.5798,'-16.44']],
[[0.1271,'0:15.255'],[0.4073,'-9.09'],[0.5375,'-15.68'],[0.5773,'-16.39']],
[[0.1287,'0:15.441'],[0.4031,'-8.97'],[0.5240,'-15.43'],[0.5692,'-16.25']],
[[0.1302,'0:15.627'],[0.3953,'-8.74'],[0.5120,'-15.22'],[0.5618,'-16.11']],
[[0.1318,'0:15.813'],[0.3471,'-7.41'],[0.5089,'-15.16'],[0.5583,'-16.05']],
[[0.1333,'0:16.000'],[0.3732,'-8.11'],[0.5058,'-15.11'],[0.5547,'-15.98']],
[[0.1349,'0:16.186'],[0.3723,'-8.09'],[0.5183,'-15.33'],[0.5538,'-15.97']],
[[0.1364,'0:16.372'],[0.3462,'-7.38'],[0.5307,'-15.55'],[0.5528,'-15.95']],
[[0.1380,'0:16.558'],[0.3974,'-8.80'],[0.5354,'-15.64'],[0.5540,'-15.97']],
[[0.1395,'0:16.744'],[0.3436,'-7.31'],[0.5388,'-15.70'],[0.5555,'-16.00']],
[[0.1411,'0:16.930'],[0.4055,'-9.03'],[0.5434,'-15.78'],[0.5553,'-15.99']],
[[0.1426,'0:17.116'],[0.4496,'-10.37'],[0.5484,'-15.87'],[0.5542,'-15.98']],
[[0.1442,'0:17.302'],[0.4035,'-8.97'],[0.5469,'-15.84'],[0.5536,'-15.96']],
[[0.1457,'0:17.488'],[0.3748,'-8.16'],[0.5400,'-15.72'],[0.5533,'-15.96']],
[[0.1473,'0:17.674'],[0.3818,'-8.36'],[0.5381,'-15.69'],[0.5543,'-15.98']],
[[0.1488,'0:17.860'],[0.3820,'-8.36'],[0.5437,'-15.79'],[0.5573,'-16.03']],
[[0.1504,'0:18.046'],[0.4099,'-9.16'],[0.5481,'-15.87'],[0.5596,'-16.07']],
[[0.1519,'0:18.232'],[0.3565,'-7.66'],[0.5491,'-15.88'],[0.5598,'-16.08']],
[[0.1535,'0:18.418'],[0.3759,'-8.19'],[0.5531,'-15.96'],[0.5602,'-16.08']],
[[0.1550,'0:18.604'],[0.3994,'-8.86'],[0.5834,'-16.50'],[0.5633,'-16.14']],
[[0.1566,'0:18.790'],[0.4171,'-9.38'],[0.6137,'-17.05'],[0.5663,'-16.19']],
[[0.1581,'0:18.976'],[0.3984,'-8.83'],[0.6172,'-17.11'],[0.5725,'-16.30']],
[[0.1597,'0:19.162'],[0.4171,'-9.38'],[0.6193,'-17.15'],[0.5788,'-16.42']],
[[0.1612,'0:19.348'],[0.4087,'-9.13'],[0.5910,'-16.64'],[0.5823,'-16.48']],
[[0.1628,'0:19.534'],[0.4420,'-10.14'],[0.5551,'-15.99'],[0.5851,'-16.53']],
[[0.1643,'0:19.720'],[0.3940,'-8.70'],[0.5445,'-15.80'],[0.5859,'-16.55']],
[[0.1659,'0:19.906'],[0.3512,'-7.52'],[0.5475,'-15.85'],[0.5855,'-16.54']],
[[0.1674,'0:20.093'],[0.3867,'-8.49'],[0.5619,'-16.11'],[0.5860,'-16.55']],
[[0.1690,'0:20.279'],[0.4097,'-9.16'],[0.5878,'-16.58'],[0.5875,'-16.58']],
[[0.1705,'0:20.465'],[0.4402,'-10.08'],[0.5990,'-16.78'],[0.5897,'-16.62']],
[[0.1721,'0:20.651'],[0.4310,'-9.80'],[0.5829,'-16.49'],[0.5932,'-16.68']],
[[0.1736,'0:20.837'],[0.4221,'-9.53'],[0.5706,'-16.27'],[0.5963,'-16.73']],
[[0.1752,'0:21.023'],[0.4207,'-9.48'],[0.5739,'-16.33'],[0.5976,'-16.76']],
[[0.1767,'0:21.209'],[0.3966,'-8.78'],[0.5783,'-16.41'],[0.5989,'-16.78']],
[[0.1783,'0:21.395'],[0.4262,'-9.65'],[0.6021,'-16.84'],[0.6024,'-16.84']],
[[0.1798,'0:21.581'],[0.4682,'-10.97'],[0.6260,'-17.27'],[0.6059,'-16.91']],
[[0.1814,'0:21.767'],[0.4339,'-9.88'],[0.6484,'-17.67'],[0.6088,'-16.96']],
[[0.1829,'0:21.953'],[0.4886,'-11.65'],[0.6706,'-18.07'],[0.6116,'-17.01']],
[[0.1845,'0:22.139'],[0.3635,'-7.85'],[0.6727,'-18.11'],[0.6149,'-17.07']],
[[0.1860,'0:22.325'],[0.4743,'-11.17'],[0.6681,'-18.03'],[0.6182,'-17.13']],
[[0.1876,'0:22.511'],[0.4792,'-11.33'],[0.6654,'-17.98'],[0.6230,'-17.21']],
[[0.1891,'0:22.697'],[0.3906,'-8.61'],[0.6639,'-17.95'],[0.6288,'-17.32']],
[[0.1907,'0:22.883'],[0.4760,'-11.23'],[0.6263,'-17.27'],[0.6296,'-17.33']],
[[0.1922,'0:23.069'],[0.4416,'-10.12'],[0.5445,'-15.80'],[0.6244,'-17.24']],
[[0.1938,'0:23.255'],[0.4402,'-10.08'],[0.4732,'-14.52'],[0.6163,'-17.09']],
[[0.1953,'0:23.441'],[0.4323,'-9.84'],[0.4261,'-13.67'],[0.6014,'-16.82']],
[[0.1969,'0:23.627'],[0.1718,'-3.28'],[0.3854,'-12.94'],[0.5856,'-16.54']],
[[0.1984,'0:23.813'],[0.2432,'-4.84'],[0.3801,'-12.84'],[0.5653,'-16.18']],
[[0.2000,'0:24.000'],[0.2718,'-5.51'],[0.3749,'-12.75'],[0.5451,'-15.81']],
[[0.2016,'0:24.186'],[0.1635,'-3.10'],[0.3603,'-12.49'],[0.5233,'-15.42']],
[[0.2031,'0:24.372'],[0.2591,'-5.21'],[0.3457,'-12.22'],[0.5015,'-15.03']],
[[0.2047,'0:24.558'],[0.2422,'-4.82'],[0.3440,'-12.19'],[0.4844,'-14.72']],
[[0.2062,'0:24.744'],[0.2212,'-4.34'],[0.3446,'-12.20'],[0.4680,'-14.42']],
[[0.2078,'0:24.930'],[0.2704,'-5.48'],[0.3255,'-11.86'],[0.4472,'-14.05']],
[[0.2093,'0:25.116'],[0.1828,'-3.51'],[0.2981,'-11.36'],[0.4244,'-13.64']],
[[0.2109,'0:25.302'],[0.2945,'-6.06'],[0.2851,'-11.13'],[0.4059,'-13.31']],
[[0.2124,'0:25.488'],[0.1796,'-3.44'],[0.2840,'-11.11'],[0.3906,'-13.03']],
[[0.2140,'0:25.674'],[0.1492,'-2.81'],[0.2923,'-11.26'],[0.3771,'-12.79']],
[[0.2155,'0:25.860'],[0.2341,'-4.63'],[0.3147,'-11.66'],[0.3662,'-12.59']],
[[0.2171,'0:26.046'],[0.2399,'-4.76'],[0.3292,'-11.93'],[0.3567,'-12.42']],
[[0.2186,'0:26.232'],[0.2203,'-4.32'],[0.3202,'-11.76'],[0.3515,'-12.33']],
[[0.2202,'0:26.418'],[0.2604,'-5.24'],[0.3117,'-11.61'],[0.3463,'-12.23']],
[[0.2217,'0:26.604'],[0.2455,'-4.89'],[0.3077,'-11.54'],[0.3414,'-12.15']],
[[0.2233,'0:26.790'],[0.2613,'-5.26'],[0.3036,'-11.47'],[0.3365,'-12.06']],
[[0.2248,'0:26.976'],[0.1929,'-3.72'],[0.3076,'-11.54'],[0.3347,'-12.02']],
[[0.2264,'0:27.162'],[0.1722,'-3.28'],[0.3120,'-11.62'],[0.3331,'-12.00']],
[[0.2279,'0:27.348'],[0.2448,'-4.88'],[0.3209,'-11.78'],[0.3321,'-11.98']],
[[0.2295,'0:27.534'],[0.2222,'-4.36'],[0.3308,'-11.95'],[0.3312,'-11.96']],
[[0.2310,'0:27.720'],[0.2907,'-5.97'],[0.3341,'-12.01'],[0.3310,'-11.96']],
[[0.2326,'0:27.906'],[0.2142,'-4.19'],[0.3338,'-12.01'],[0.3310,'-11.96']],
[[0.2341,'0:28.093'],[0.1845,'-3.54'],[0.3350,'-12.03'],[0.3317,'-11.97']],
[[0.2357,'0:28.279'],[0.2708,'-5.48'],[0.3379,'-12.08'],[0.3333,'-12.00']],
[[0.2372,'0:28.465'],[0.2802,'-5.71'],[0.3380,'-12.08'],[0.3351,'-12.03']],
[[0.2388,'0:28.651'],[0.2078,'-4.05'],[0.3329,'-11.99'],[0.3373,'-12.07']],
[[0.2403,'0:28.837'],[0.2477,'-4.94'],[0.3317,'-11.97'],[0.3392,'-12.11']],
[[0.2419,'0:29.023'],[0.2158,'-4.22'],[0.3463,'-12.23'],[0.3401,'-12.12']],
[[0.2434,'0:29.209'],[0.2746,'-5.58'],[0.3603,'-12.49'],[0.3411,'-12.14']],
[[0.2450,'0:29.395'],[0.2404,'-4.78'],[0.3622,'-12.52'],[0.3441,'-12.19']],
[[0.2465,'0:29.581'],[0.2515,'-5.03'],[0.3642,'-12.55'],[0.3471,'-12.25']],
[[0.2481,'0:29.767'],[0.3391,'-7.19'],[0.3648,'-12.57'],[0.3514,'-12.32']],
[[0.2496,'0:29.953'],[0.2069,'-4.03'],[0.3654,'-12.58'],[0.3558,'-12.40']],
[[0.2512,'0:30.139'],[0.2308,'-4.56'],[0.3765,'-12.78'],[0.3597,'-12.48']],
[[0.2527,'0:30.325'],[0.2322,'-4.59'],[0.3912,'-13.04'],[0.3635,'-12.54']],
[[0.2543,'0:30.511'],[0.2345,'-4.64'],[0.4129,'-13.43'],[0.3681,'-12.63']],
[[0.2558,'0:30.697'],[0.3277,'-6.90'],[0.4394,'-13.91'],[0.3733,'-12.72']],
[[0.2574,'0:30.883'],[0.2463,'-4.91'],[0.4514,'-14.12'],[0.3793,'-12.83']],
[[0.2589,'0:31.069'],[0.2987,'-6.16'],[0.4457,'-14.02'],[0.3863,'-12.95']],
[[0.2605,'0:31.255'],[0.3138,'-6.54'],[0.4300,'-13.74'],[0.3928,'-13.07']],
[[0.2620,'0:31.441'],[0.2354,'-4.66'],[0.3910,'-13.04'],[0.3982,'-13.17']],
[[0.2636,'0:31.627'],[0.3123,'-6.50'],[0.3545,'-12.38'],[0.4022,'-13.24']],
[[0.2651,'0:31.813'],[0.2632,'-5.31'],[0.3319,'-11.97'],[0.3983,'-13.17']],
[[0.2667,'0:32.000'],[0.1749,'-3.34'],[0.3093,'-11.57'],[0.3944,'-13.10']],
[[0.2682,'0:32.186'],[0.2357,'-4.67'],[0.3141,'-11.65'],[0.3950,'-13.11']],
[[0.2698,'0:32.372'],[0.2014,'-3.91'],[0.3189,'-11.74'],[0.3956,'-13.12']],
[[0.2713,'0:32.558'],[0.2242,'-4.41'],[0.3093,'-11.57'],[0.3908,'-13.03']],
[[0.2729,'0:32.744'],[0.2639,'-5.32'],[0.2971,'-11.35'],[0.3850,'-12.93']],
[[0.2744,'0:32.930'],[0.1970,'-3.81'],[0.2928,'-11.27'],[0.3805,'-12.85']],
[[0.2760,'0:33.116'],[0.2333,'-4.61'],[0.2918,'-11.25'],[0.3766,'-12.78']],
[[0.2775,'0:33.302'],[0.2025,'-3.93'],[0.3100,'-11.58'],[0.3721,'-12.70']],
[[0.2791,'0:33.488'],[0.1750,'-3.34'],[0.3439,'-12.19'],[0.3672,'-12.61']],
[[0.2806,'0:33.674'],[0.3036,'-6.28'],[0.3646,'-12.56'],[0.3640,'-12.55']],
[[0.2822,'0:33.860'],[0.2942,'-6.05'],[0.3654,'-12.58'],[0.3634,'-12.54']],
[[0.2837,'0:34.046'],[0.2020,'-3.92'],[0.3646,'-12.56'],[0.3620,'-12.52']],
[[0.2853,'0:34.232'],[0.2663,'-5.38'],[0.3590,'-12.46'],[0.3581,'-12.45']],
[[0.2868,'0:34.418'],[0.2737,'-5.56'],[0.3526,'-12.35'],[0.3546,'-12.38']],
[[0.2884,'0:34.604'],[0.2310,'-4.56'],[0.3393,'-12.11'],[0.3539,'-12.37']],
[[0.2899,'0:34.790'],[0.2803,'-5.71'],[0.3261,'-11.87'],[0.3532,'-12.36']],
[[0.2915,'0:34.976'],[0.2669,'-5.39'],[0.3287,'-11.92'],[0.3557,'-12.40']],
[[0.2930,'0:35.162'],[0.1289,'-2.40'],[0.3322,'-11.98'],[0.3583,'-12.45']],
[[0.2946,'0:35.348'],[0.2766,'-5.63'],[0.3388,'-12.10'],[0.3617,'-12.51']],
[[0.2961,'0:35.534'],[0.3095,'-6.43'],[0.3461,'-12.23'],[0.3654,'-12.58']],
[[0.2977,'0:35.720'],[0.3267,'-6.87'],[0.3402,'-12.12'],[0.3677,'-12.62']],
[[0.2992,'0:35.906'],[0.2648,'-5.34'],[0.3272,'-11.89'],[0.3692,'-12.65']],
[[0.3008,'0:36.093'],[0.2154,'-4.22'],[0.3185,'-11.73'],[0.3686,'-12.63']],
[[0.3023,'0:36.279'],[0.2338,'-4.63'],[0.3142,'-11.66'],[0.3656,'-12.58']],
[[0.3039,'0:36.465'],[0.2320,'-4.59'],[0.3066,'-11.52'],[0.3612,'-12.50']],
[[0.3054,'0:36.651'],[0.2467,'-4.92'],[0.2930,'-11.27'],[0.3542,'-12.37']],
[[0.3070,'0:36.837'],[0.2333,'-4.61'],[0.2756,'-10.96'],[0.3460,'-12.23']],
[[0.3085,'0:37.023'],[0.1223,'-2.27'],[0.2434,'-10.38'],[0.3336,'-12.00']],
[[0.3101,'0:37.209'],[0.2084,'-4.06'],[0.2128,'-9.83'],[0.3216,'-11.79']],
[[0.3116,'0:37.395'],[0.0923,'-1.68'],[0.2125,'-9.83'],[0.3176,'-11.72']],
[[0.3132,'0:37.581'],[0.2036,'-3.95'],[0.2123,'-9.82'],[0.3136,'-11.64']],
[[0.3147,'0:37.767'],[0.1951,'-3.77'],[0.2512,'-10.52'],[0.3117,'-11.61']],
[[0.3163,'0:37.953'],[0.1406,'-2.63'],[0.2944,'-11.30'],[0.3101,'-11.58']],
[[0.3178,'0:38.139'],[0.1120,'-2.06'],[0.3146,'-11.66'],[0.3083,'-11.55']],
[[0.3194,'0:38.325'],[0.1456,'-2.73'],[0.3273,'-11.89'],[0.3064,'-11.52']],
[[0.3209,'0:38.511'],[0.1972,'-3.82'],[0.3397,'-12.11'],[0.3061,'-11.51']],
[[0.3225,'0:38.697'],[0.2109,'-4.12'],[0.3519,'-12.33'],[0.3070,'-11.53']],
[[0.3240,'0:38.883'],[0.1922,'-3.71'],[0.3583,'-12.45'],[0.3086,'-11.55']],
[[0.3256,'0:39.069'],[0.1749,'-3.34'],[0.3573,'-12.43'],[0.3111,'-11.60']],
[[0.3271,'0:39.255'],[0.1334,'-2.49'],[0.3480,'-12.26'],[0.3133,'-11.64']],
[[0.3287,'0:39.441'],[0.2911,'-5.98'],[0.3193,'-11.75'],[0.3148,'-11.67']],
[[0.3302,'0:39.627'],[0.1683,'-3.20'],[0.2921,'-11.26'],[0.3159,'-11.69']],
[[0.3318,'0:39.813'],[0.2417,'-4.81'],[0.2733,'-10.92'],[0.3143,'-11.66']],
[[0.3333,'0:40.000'],[0.0839,'-1.52'],[0.2545,'-10.58'],[0.3126,'-11.63']],
[[0.3349,'0:40.186'],[0.0953,'-1.74'],[0.2883,'-11.19'],[0.3216,'-11.79']],
[[0.3364,'0:40.372'],[0.1955,'-3.78'],[0.3221,'-11.80'],[0.3306,'-11.95']],
[[0.3380,'0:40.558'],[0.2510,'-5.02'],[0.3724,'-12.70'],[0.3431,'-12.18']],
[[0.3395,'0:40.744'],[0.3419,'-7.27'],[0.4256,'-13.66'],[0.3562,'-12.41']],
[[0.3411,'0:40.930'],[0.2165,'-4.24'],[0.4368,'-13.86'],[0.3659,'-12.59']],
[[0.3426,'0:41.116'],[0.3191,'-6.68'],[0.4301,'-13.74'],[0.3742,'-12.74']],
[[0.3442,'0:41.302'],[0.2242,'-4.41'],[0.4230,'-13.61'],[0.3792,'-12.83']],
[[0.3457,'0:41.488'],[0.2761,'-5.61'],[0.4158,'-13.48'],[0.3815,'-12.87']],
[[0.3473,'0:41.674'],[0.1839,'-3.53'],[0.3830,'-12.89'],[0.3807,'-12.85']],
[[0.3488,'0:41.860'],[0.2630,'-5.30'],[0.3119,'-11.61'],[0.3749,'-12.75']],
[[0.3504,'0:42.046'],[0.2692,'-5.45'],[0.2642,'-10.76'],[0.3706,'-12.67']],
[[0.3519,'0:42.232'],[0.0034,'-0.06'],[0.2866,'-11.16'],[0.3702,'-12.66']],
[[0.3535,'0:42.418'],[0.1760,'-3.36'],[0.3077,'-11.54'],[0.3702,'-12.66']],
[[0.3550,'0:42.604'],[0.2284,'-4.51'],[0.3175,'-11.72'],[0.3735,'-12.72']],
[[0.3566,'0:42.790'],[0.2250,'-4.43'],[0.3273,'-11.89'],[0.3768,'-12.78']],
[[0.3581,'0:42.976'],[0.1976,'-3.83'],[0.3419,'-12.15'],[0.3792,'-12.83']],
[[0.3597,'0:43.162'],[0.1682,'-3.20'],[0.3567,'-12.42'],[0.3815,'-12.87']],
[[0.3612,'0:43.348'],[0.1966,'-3.80'],[0.3385,'-12.09'],[0.3741,'-12.73']],
[[0.3628,'0:43.534'],[0.2011,'-3.90'],[0.3121,'-11.62'],[0.3643,'-12.56']],
[[0.3643,'0:43.720'],[0.2230,'-4.38'],[0.3046,'-11.48'],[0.3592,'-12.47']],
[[0.3659,'0:43.906'],[0.0754,'-1.36'],[0.3073,'-11.53'],[0.3566,'-12.42']],
[[0.3674,'0:44.093'],[0.2174,'-4.26'],[0.3367,'-12.06'],[0.3556,'-12.40']],
[[0.3690,'0:44.279'],[0.2241,'-4.41'],[0.3928,'-13.07'],[0.3560,'-12.41']],
[[0.3705,'0:44.465'],[0.2949,'-6.07'],[0.4288,'-13.72'],[0.3566,'-12.42']],
[[0.3721,'0:44.651'],[0.2660,'-5.37'],[0.4275,'-13.70'],[0.3577,'-12.44']],
[[0.3736,'0:44.837'],[0.2865,'-5.86'],[0.4239,'-13.63'],[0.3607,'-12.49']],
[[0.3752,'0:45.023'],[0.2472,'-4.93'],[0.4112,'-13.40'],[0.3719,'-12.69']],
[[0.3767,'0:45.209'],[0.1933,'-3.73'],[0.3978,'-13.16'],[0.3826,'-12.89']],
[[0.3783,'0:45.395'],[0.2366,'-4.69'],[0.3708,'-12.67'],[0.3854,'-12.94']],
[[0.3798,'0:45.581'],[0.2174,'-4.26'],[0.3438,'-12.19'],[0.3881,'-12.99']],
[[0.3814,'0:45.767'],[0.2529,'-5.06'],[0.3111,'-11.60'],[0.3853,'-12.94']],
[[0.3829,'0:45.953'],[0.1582,'-2.99'],[0.2778,'-11.00'],[0.3819,'-12.87']],
[[0.3845,'0:46.139'],[0.1005,'-1.84'],[0.2779,'-11.00'],[0.3787,'-12.82']],
[[0.3860,'0:46.325'],[0.1053,'-1.93'],[0.2891,'-11.20'],[0.3757,'-12.76']],
[[0.3876,'0:46.511'],[0.1562,'-2.95'],[0.2950,'-11.31'],[0.3732,'-12.72']],
[[0.3891,'0:46.697'],[0.1645,'-3.12'],[0.2974,'-11.35'],[0.3712,'-12.68']],
[[0.3907,'0:46.883'],[0.2234,'-4.39'],[0.2964,'-11.34'],[0.3668,'-12.60']],
[[0.3922,'0:47.069'],[0.1457,'-2.74'],[0.2915,'-11.25'],[0.3594,'-12.47']],
[[0.3938,'0:47.255'],[0.1751,'-3.34'],[0.2862,'-11.15'],[0.3510,'-12.32']],
[[0.3953,'0:47.441'],[0.1475,'-2.77'],[0.2800,'-11.04'],[0.3405,'-12.13']],
[[0.3969,'0:47.627'],[0.1884,'-3.63'],[0.2754,'-10.96'],[0.3314,'-11.96']],
[[0.3984,'0:47.813'],[0.1028,'-1.88'],[0.2803,'-11.05'],[0.3300,'-11.94']],
[[0.4000,'0:48.000'],[0.1309,'-2.44'],[0.2852,'-11.13'],[0.3286,'-11.91']],
[[0.4016,'0:48.186'],[0.2279,'-4.49'],[0.3462,'-12.23'],[0.3279,'-11.90']],
[[0.4031,'0:48.372'],[0.2566,'-5.15'],[0.4071,'-13.33'],[0.3271,'-11.89']],
[[0.4047,'0:48.558'],[0.2574,'-5.17'],[0.4055,'-13.30'],[0.3278,'-11.90']],
[[0.4062,'0:48.744'],[0.2180,'-4.27'],[0.3928,'-13.07'],[0.3288,'-11.92']],
[[0.4078,'0:48.930'],[0.3147,'-6.56'],[0.3790,'-12.82'],[0.3332,'-12.00']],
[[0.4093,'0:49.116'],[0.2298,'-4.54'],[0.3648,'-12.57'],[0.3391,'-12.10']],
[[0.4109,'0:49.302'],[0.2550,'-5.11'],[0.3422,'-12.16'],[0.3434,'-12.18']],
[[0.4124,'0:49.488'],[0.1810,'-3.47'],[0.3127,'-11.63'],[0.3465,'-12.24']],
[[0.4140,'0:49.674'],[0.2741,'-5.56'],[0.2929,'-11.27'],[0.3488,'-12.28']],
[[0.4155,'0:49.860'],[0.1916,'-3.69'],[0.2874,'-11.17'],[0.3500,'-12.30']],
[[0.4171,'0:50.046'],[0.0771,'-1.39'],[0.2834,'-11.10'],[0.3513,'-12.32']],
[[0.4186,'0:50.232'],[0.1495,'-2.81'],[0.2834,'-11.10'],[0.3530,'-12.35']],
[[0.4202,'0:50.418'],[0.0971,'-1.78'],[0.2822,'-11.08'],[0.3540,'-12.37']],
[[0.4217,'0:50.604'],[0.1447,'-2.72'],[0.2701,'-10.86'],[0.3494,'-12.29']],
[[0.4233,'0:50.790'],[0.1012,'-1.85'],[0.2580,'-10.64'],[0.3447,'-12.21']],
[[0.4248,'0:50.976'],[0.1898,'-3.66'],[0.2606,'-10.69'],[0.3350,'-12.03']],
[[0.4264,'0:51.162'],[0.1192,'-2.20'],[0.2641,'-10.75'],[0.3251,'-11.85']],
[[0.4279,'0:51.348'],[0.1516,'-2.86'],[0.2641,'-10.75'],[0.3191,'-11.74']],
[[0.4295,'0:51.534'],[0.1767,'-3.38'],[0.2633,'-10.74'],[0.3141,'-11.65']],
[[0.4310,'0:51.720'],[0.1832,'-3.52'],[0.2785,'-11.01'],[0.3119,'-11.61']],
[[0.4326,'0:51.906'],[0.1478,'-2.78'],[0.3024,'-11.44'],[0.3111,'-11.60']],
[[0.4341,'0:52.093'],[0.1926,'-3.72'],[0.3334,'-12.00'],[0.3113,'-11.60']],
[[0.4357,'0:52.279'],[0.2130,'-4.16'],[0.3718,'-12.69'],[0.3125,'-11.62']],
[[0.4372,'0:52.465'],[0.2860,'-5.85'],[0.3941,'-13.09'],[0.3153,'-11.68']],
[[0.4388,'0:52.651'],[0.1596,'-3.02'],[0.3867,'-12.96'],[0.3214,'-11.78']],
[[0.4403,'0:52.837'],[0.2290,'-4.52'],[0.3801,'-12.84'],[0.3266,'-11.88']],
[[0.4419,'0:53.023'],[0.2446,'-4.87'],[0.3769,'-12.78'],[0.3286,'-11.92']],
[[0.4434,'0:53.209'],[0.2671,'-5.40'],[0.3717,'-12.69'],[0.3307,'-11.95']],
[[0.4450,'0:53.395'],[0.2186,'-4.29'],[0.3274,'-11.89'],[0.3338,'-12.01']],
[[0.4465,'0:53.581'],[0.2415,'-4.80'],[0.2832,'-11.10'],[0.3370,'-12.07']],
[[0.4481,'0:53.767'],[0.1381,'-2.58'],[0.2773,'-10.99'],[0.3401,'-12.12']],
[[0.4496,'0:53.953'],[0.1743,'-3.33'],[0.2758,'-10.96'],[0.3433,'-12.18']],
[[0.4512,'0:54.139'],[0.1427,'-2.68'],[0.2780,'-11.00'],[0.3448,'-12.21']],
[[0.4527,'0:54.325'],[0.1361,'-2.54'],[0.2815,'-11.07'],[0.3457,'-12.22']],
[[0.4543,'0:54.511'],[0.1007,'-1.84'],[0.2761,'-10.97'],[0.3438,'-12.19']],
[[0.4558,'0:54.697'],[0.1341,'-2.50'],[0.2648,'-10.77'],[0.3400,'-12.12']],
[[0.4574,'0:54.883'],[0.1666,'-3.17'],[0.2620,'-10.72'],[0.3342,'-12.01']],
[[0.4589,'0:55.069'],[0.1181,'-2.18'],[0.2696,'-10.85'],[0.3257,'-11.86']],
[[0.4605,'0:55.255'],[0.1717,'-3.27'],[0.2728,'-10.91'],[0.3182,'-11.73']],
[[0.4620,'0:55.441'],[0.1895,'-3.65'],[0.2655,'-10.78'],[0.3128,'-11.63']],
[[0.4636,'0:55.627'],[0.1530,'-2.88'],[0.2626,'-10.73'],[0.3077,'-11.54']],
[[0.4651,'0:55.813'],[0.1339,'-2.50'],[0.2838,'-11.11'],[0.3053,'-11.50']],
[[0.4667,'0:56.000'],[0.1412,'-2.64'],[0.3050,'-11.49'],[0.3028,'-11.45']],
[[0.4682,'0:56.186'],[0.1637,'-3.11'],[0.3086,'-11.55'],[0.3007,'-11.41']],
[[0.4698,'0:56.372'],[0.1996,'-3.87'],[0.3122,'-11.62'],[0.2986,'-11.37']],
[[0.4713,'0:56.558'],[0.1928,'-3.72'],[0.3010,'-11.42'],[0.3000,'-11.40']],
[[0.4729,'0:56.744'],[0.2444,'-4.87'],[0.2871,'-11.17'],[0.3021,'-11.44']],
[[0.4744,'0:56.930'],[0.1450,'-2.72'],[0.2845,'-11.12'],[0.3027,'-11.45']],
[[0.4760,'0:57.116'],[0.2007,'-3.89'],[0.2867,'-11.16'],[0.3028,'-11.45']],
[[0.4775,'0:57.302'],[0.1247,'-2.31'],[0.2777,'-11.00'],[0.3020,'-11.44']],
[[0.4791,'0:57.488'],[0.1281,'-2.38'],[0.2596,'-10.67'],[0.3004,'-11.41']],
[[0.4806,'0:57.674'],[0.1482,'-2.79'],[0.2472,'-10.45'],[0.2989,'-11.38']],
[[0.4822,'0:57.860'],[0.0505,'-0.90'],[0.2436,'-10.38'],[0.2978,'-11.36']],
[[0.4837,'0:58.046'],[0.1897,'-3.66'],[0.2408,'-10.33'],[0.2968,'-11.34']],
[[0.4853,'0:58.232'],[0.1489,'-2.80'],[0.2405,'-10.33'],[0.2965,'-11.34']],
[[0.4868,'0:58.418'],[0.1387,'-2.59'],[0.2419,'-10.35'],[0.2963,'-11.33']],
[[0.4884,'0:58.604'],[0.0344,'-0.61'],[0.2576,'-10.64'],[0.2964,'-11.33']],
[[0.4899,'0:58.790'],[0.1703,'-3.24'],[0.2734,'-10.92'],[0.2964,'-11.34']],
[[0.4915,'0:58.976'],[0.1636,'-3.10'],[0.2854,'-11.14'],[0.2954,'-11.32']],
[[0.4930,'0:59.162'],[0.1879,'-3.62'],[0.2972,'-11.35'],[0.2942,'-11.30']],
[[0.4946,'0:59.348'],[0.2042,'-3.97'],[0.3032,'-11.46'],[0.2935,'-11.28']],
[[0.4961,'0:59.534'],[0.0716,'-1.29'],[0.3078,'-11.54'],[0.2928,'-11.27']],
[[0.4977,'0:59.720'],[0.2251,'-4.43'],[0.3137,'-11.65'],[0.2941,'-11.29']],
[[0.4992,'0:59.906'],[0.2008,'-3.89'],[0.3204,'-11.77'],[0.2965,'-11.34']],
[[0.5008,'1:00.093'],[0.1968,'-3.81'],[0.3234,'-11.82'],[0.2988,'-11.38']],
[[0.5023,'1:00.279'],[0.1729,'-3.30'],[0.3230,'-11.81'],[0.3011,'-11.42']],
[[0.5039,'1:00.465'],[0.1546,'-2.92'],[0.3179,'-11.72'],[0.3036,'-11.46']],
[[0.5054,'1:00.651'],[0.2804,'-5.72'],[0.3044,'-11.48'],[0.3062,'-11.51']],
[[0.5070,'1:00.837'],[0.1679,'-3.19'],[0.2912,'-11.24'],[0.3089,'-11.56']],
[[0.5085,'1:01.023'],[0.1818,'-3.49'],[0.2796,'-11.03'],[0.3121,'-11.62']],
[[0.5101,'1:01.209'],[0.1422,'-2.66'],[0.2684,'-10.83'],[0.3152,'-11.67']],
[[0.5116,'1:01.395'],[0.0897,'-1.63'],[0.2671,'-10.81'],[0.3165,'-11.70']],
[[0.5132,'1:01.581'],[0.1828,'-3.51'],[0.2658,'-10.78'],[0.3178,'-11.72']],
[[0.5147,'1:01.767'],[0.0636,'-1.14'],[0.2758,'-10.96'],[0.3188,'-11.74']],
[[0.5163,'1:01.953'],[0.2039,'-3.96'],[0.2870,'-11.17'],[0.3197,'-11.75']],
[[0.5178,'1:02.139'],[0.1277,'-2.37'],[0.2738,'-10.93'],[0.3168,'-11.70']],
[[0.5194,'1:02.325'],[0.0555,'-0.99'],[0.2523,'-10.54'],[0.3127,'-11.63']],
[[0.5209,'1:02.511'],[0.1261,'-2.34'],[0.2454,'-10.42'],[0.3085,'-11.55']],
[[0.5225,'1:02.697'],[0.0597,'-1.07'],[0.2483,'-10.47'],[0.3043,'-11.48']],
[[0.5240,'1:02.883'],[0.1142,'-2.11'],[0.2556,'-10.60'],[0.3007,'-11.41']],
[[0.5256,'1:03.069'],[0.1591,'-3.01'],[0.2684,'-10.83'],[0.2978,'-11.36']],
[[0.5271,'1:03.255'],[0.1642,'-3.12'],[0.2799,'-11.04'],[0.2958,'-11.33']],
[[0.5287,'1:03.441'],[0.1026,'-1.88'],[0.2883,'-11.19'],[0.2960,'-11.33']],
[[0.5302,'1:03.627'],[0.1288,'-2.40'],[0.2969,'-11.34'],[0.2961,'-11.33']],
[[0.5318,'1:03.813'],[0.1806,'-3.46'],[0.3061,'-11.51'],[0.2963,'-11.33']],
[[0.5333,'1:04.000'],[0.1679,'-3.19'],[0.3154,'-11.68'],[0.2966,'-11.34']],
[[0.5349,'1:04.186'],[0.1746,'-3.33'],[0.3290,'-11.92'],[0.3003,'-11.41']],
[[0.5364,'1:04.372'],[0.1561,'-2.95'],[0.3426,'-12.17'],[0.3041,'-11.47']],
[[0.5380,'1:04.558'],[0.2801,'-5.71'],[0.3194,'-11.75'],[0.3044,'-11.48']],
[[0.5395,'1:04.744'],[0.1834,'-3.52'],[0.2896,'-11.21'],[0.3042,'-11.48']],
[[0.5411,'1:04.930'],[0.2332,'-4.61'],[0.2797,'-11.04'],[0.3050,'-11.49']],
[[0.5426,'1:05.116'],[0.0662,'-1.19'],[0.2785,'-11.01'],[0.3062,'-11.51']],
[[0.5442,'1:05.302'],[0.2178,'-4.27'],[0.2820,'-11.08'],[0.3086,'-11.56']],
[[0.5457,'1:05.488'],[0.1836,'-3.52'],[0.2894,'-11.21'],[0.3120,'-11.62']],
[[0.5473,'1:05.674'],[0.0845,'-1.53'],[0.2897,'-11.22'],[0.3145,'-11.66']],
[[0.5488,'1:05.860'],[0.2545,'-5.10'],[0.2794,'-11.03'],[0.3155,'-11.68']],
[[0.5504,'1:06.046'],[0.1501,'-2.83'],[0.2666,'-10.80'],[0.3148,'-11.67']],
[[0.5519,'1:06.232'],[0.1901,'-3.66'],[0.2467,'-10.44'],[0.3090,'-11.56']],
[[0.5535,'1:06.418'],[0.1121,'-2.06'],[0.2293,'-10.13'],[0.3034,'-11.46']],
[[0.5550,'1:06.604'],[0.1212,'-2.24'],[0.2342,'-10.22'],[0.3000,'-11.40']],
[[0.5566,'1:06.790'],[0.1174,'-2.17'],[0.2391,'-10.30'],[0.2966,'-11.34']],
[[0.5581,'1:06.976'],[0.0164,'-0.29'],[0.2622,'-10.72'],[0.2946,'-11.30']],
[[0.5597,'1:07.162'],[0.1150,'-2.12'],[0.2863,'-11.15'],[0.2927,'-11.27']],
[[0.5612,'1:07.348'],[0.2021,'-3.92'],[0.2940,'-11.29'],[0.2914,'-11.25']],
[[0.5628,'1:07.534'],[0.1553,'-2.93'],[0.2976,'-11.36'],[0.2903,'-11.22']],
[[0.5643,'1:07.720'],[0.1674,'-3.18'],[0.2993,'-11.39'],[0.2905,'-11.23']],
[[0.5659,'1:07.906'],[0.1790,'-3.43'],[0.3001,'-11.40'],[0.2916,'-11.25']],
[[0.5674,'1:08.093'],[0.2545,'-5.10'],[0.2955,'-11.32'],[0.2931,'-11.28']],
[[0.5690,'1:08.279'],[0.1403,'-2.63'],[0.2853,'-11.14'],[0.2951,'-11.31']],
[[0.5705,'1:08.465'],[0.2374,'-4.71'],[0.2788,'-11.02'],[0.2963,'-11.33']],
[[0.5721,'1:08.651'],[0.1088,'-2.00'],[0.2788,'-11.02'],[0.2963,'-11.33']],
[[0.5736,'1:08.837'],[0.1646,'-3.12'],[0.2787,'-11.02'],[0.2968,'-11.34']],
[[0.5752,'1:09.023'],[0.1300,'-2.42'],[0.2777,'-11.00'],[0.2989,'-11.38']],
[[0.5767,'1:09.209'],[0.2343,'-4.64'],[0.2770,'-10.99'],[0.3013,'-11.42']],
[[0.5783,'1:09.395'],[0.1584,'-3.00'],[0.2816,'-11.07'],[0.3069,'-11.52']],
[[0.5798,'1:09.581'],[0.1526,'-2.88'],[0.2861,'-11.15'],[0.3125,'-11.62']],
[[0.5814,'1:09.767'],[0.1698,'-3.23'],[0.2843,'-11.12'],[0.3158,'-11.68']],
[[0.5829,'1:09.953'],[0.2126,'-4.15'],[0.2817,'-11.07'],[0.3189,'-11.74']],
[[0.5845,'1:10.139'],[0.2481,'-4.95'],[0.2805,'-11.05'],[0.3198,'-11.76']],
[[0.5860,'1:10.325'],[0.0998,'-1.83'],[0.2796,'-11.03'],[0.3199,'-11.76']],
[[0.5876,'1:10.511'],[0.2108,'-4.11'],[0.2844,'-11.12'],[0.3193,'-11.75']],
[[0.5891,'1:10.697'],[0.2398,'-4.76'],[0.2929,'-11.27'],[0.3183,'-11.73']],
[[0.5907,'1:10.883'],[0.1559,'-2.94'],[0.2973,'-11.35'],[0.3175,'-11.71']],
[[0.5922,'1:11.069'],[0.1742,'-3.32'],[0.2967,'-11.34'],[0.3167,'-11.70']],
[[0.5938,'1:11.255'],[0.1095,'-2.02'],[0.3001,'-11.40'],[0.3169,'-11.70']],
[[0.5953,'1:11.441'],[0.1882,'-3.62'],[0.3130,'-11.63'],[0.3192,'-11.75']],
[[0.5969,'1:11.627'],[0.2103,'-4.10'],[0.3209,'-11.78'],[0.3209,'-11.78']],
[[0.5984,'1:11.813'],[0.2543,'-5.10'],[0.3010,'-11.42'],[0.3188,'-11.74']],
[[0.6000,'1:12.000'],[0.2215,'-4.35'],[0.2811,'-11.06'],[0.3168,'-11.70']],
[[0.6016,'1:12.186'],[0.1325,'-2.47'],[0.2849,'-11.13'],[0.3174,'-11.71']],
[[0.6031,'1:12.372'],[0.2181,'-4.27'],[0.2888,'-11.20'],[0.3180,'-11.72']],
[[0.6047,'1:12.558'],[0.1960,'-3.79'],[0.2949,'-11.31'],[0.3166,'-11.70']],
[[0.6062,'1:12.744'],[0.2336,'-4.62'],[0.3014,'-11.42'],[0.3148,'-11.67']],
[[0.6078,'1:12.930'],[0.1841,'-3.54'],[0.3010,'-11.42'],[0.3149,'-11.67']],
[[0.6093,'1:13.116'],[0.1660,'-3.15'],[0.2977,'-11.36'],[0.3157,'-11.68']],
[[0.6109,'1:13.302'],[0.1547,'-2.92'],[0.3050,'-11.49'],[0.3166,'-11.70']],
[[0.6124,'1:13.488'],[0.1248,'-2.31'],[0.3212,'-11.78'],[0.3176,'-11.72']],
[[0.6140,'1:13.674'],[0.1634,'-3.10'],[0.3291,'-11.92'],[0.3193,'-11.75']],
[[0.6155,'1:13.860'],[0.2029,'-3.94'],[0.3247,'-11.85'],[0.3221,'-11.80']],
[[0.6171,'1:14.046'],[0.2053,'-3.99'],[0.3122,'-11.62'],[0.3230,'-11.81']],
[[0.6186,'1:14.232'],[0.2475,'-4.94'],[0.2752,'-10.95'],[0.3184,'-11.73']],
[[0.6202,'1:14.418'],[0.2465,'-4.92'],[0.2441,'-10.39'],[0.3142,'-11.66']],
[[0.6217,'1:14.604'],[0.0800,'-1.45'],[0.2661,'-10.79'],[0.3140,'-11.65']],
[[0.6233,'1:14.790'],[0.1729,'-3.30'],[0.2881,'-11.19'],[0.3137,'-11.65']],
[[0.6248,'1:14.976'],[0.2307,'-4.56'],[0.2830,'-11.09'],[0.3139,'-11.65']],
[[0.6264,'1:15.162'],[0.1430,'-2.68'],[0.2764,'-10.98'],[0.3142,'-11.66']],
[[0.6279,'1:15.348'],[0.2113,'-4.12'],[0.2744,'-10.94'],[0.3139,'-11.65']],
[[0.6295,'1:15.534'],[0.2417,'-4.81'],[0.2735,'-10.92'],[0.3134,'-11.64']],
[[0.6310,'1:15.720'],[0.1148,'-2.12'],[0.2875,'-11.18'],[0.3142,'-11.66']],
[[0.6326,'1:15.906'],[0.1552,'-2.93'],[0.3095,'-11.57'],[0.3157,'-11.68']],
[[0.6341,'1:16.093'],[0.1733,'-3.31'],[0.3168,'-11.70'],[0.3161,'-11.69']],
[[0.6357,'1:16.279'],[0.2226,'-4.38'],[0.3093,'-11.57'],[0.3155,'-11.68']],
[[0.6372,'1:16.465'],[0.1715,'-3.27'],[0.3064,'-11.52'],[0.3142,'-11.66']],
[[0.6388,'1:16.651'],[0.1422,'-2.66'],[0.3121,'-11.62'],[0.3118,'-11.61']],
[[0.6403,'1:16.837'],[0.2273,'-4.48'],[0.3155,'-11.68'],[0.3097,'-11.57']],
[[0.6419,'1:17.023'],[0.1986,'-3.85'],[0.3097,'-11.57'],[0.3092,'-11.57']],
[[0.6434,'1:17.209'],[0.1391,'-2.60'],[0.3039,'-11.47'],[0.3089,'-11.56']],
[[0.6450,'1:17.395'],[0.2177,'-4.27'],[0.2981,'-11.37'],[0.3132,'-11.64']],
[[0.6465,'1:17.581'],[0.2382,'-4.73'],[0.2924,'-11.26'],[0.3176,'-11.72']],
[[0.6481,'1:17.767'],[0.1494,'-2.81'],[0.3056,'-11.50'],[0.3192,'-11.75']],
[[0.6496,'1:17.953'],[0.1484,'-2.79'],[0.3209,'-11.78'],[0.3205,'-11.77']],
[[0.6512,'1:18.139'],[0.1802,'-3.45'],[0.3174,'-11.71'],[0.3221,'-11.80']],
[[0.6527,'1:18.325'],[0.1740,'-3.32'],[0.3075,'-11.54'],[0.3238,'-11.83']],
[[0.6543,'1:18.511'],[0.0912,'-1.66'],[0.3003,'-11.41'],[0.3246,'-11.84']],
[[0.6558,'1:18.697'],[0.2040,'-3.96'],[0.2949,'-11.31'],[0.3249,'-11.85']],
[[0.6574,'1:18.883'],[0.1801,'-3.45'],[0.2935,'-11.28'],[0.3252,'-11.85']],
[[0.6589,'1:19.069'],[0.1345,'-2.51'],[0.2972,'-11.35'],[0.3258,'-11.86']],
[[0.6605,'1:19.255'],[0.2231,'-4.38'],[0.2954,'-11.32'],[0.3254,'-11.86']],
[[0.6620,'1:19.441'],[0.2860,'-5.85'],[0.2809,'-11.06'],[0.3227,'-11.81']],
[[0.6636,'1:19.627'],[0.1006,'-1.84'],[0.2731,'-10.92'],[0.3207,'-11.77']],
[[0.6651,'1:19.813'],[0.1582,'-2.99'],[0.3036,'-11.46'],[0.3228,'-11.81']],
[[0.6667,'1:20.000'],[0.1226,'-2.27'],[0.3341,'-12.01'],[0.3248,'-11.85']],
[[0.6682,'1:20.186'],[0.2395,'-4.75'],[0.3111,'-11.60'],[0.3239,'-11.83']],
[[0.6698,'1:20.372'],[0.1652,'-3.14'],[0.2881,'-11.19'],[0.3230,'-11.81']],
[[0.6713,'1:20.558'],[0.2135,'-4.17'],[0.2896,'-11.21'],[0.3231,'-11.82']],
[[0.6729,'1:20.744'],[0.1547,'-2.92'],[0.2955,'-11.32'],[0.3234,'-11.82']],
[[0.6744,'1:20.930'],[0.1803,'-3.45'],[0.3163,'-11.69'],[0.3249,'-11.85']],
[[0.6760,'1:21.116'],[0.1216,'-2.25'],[0.3435,'-12.18'],[0.3270,'-11.89']],
[[0.6775,'1:21.302'],[0.1896,'-3.65'],[0.3453,'-12.22'],[0.3284,'-11.91']],
[[0.6791,'1:21.488'],[0.1895,'-3.65'],[0.3264,'-11.87'],[0.3293,'-11.93']],
[[0.6806,'1:21.674'],[0.1674,'-3.18'],[0.3192,'-11.75'],[0.3301,'-11.94']],
[[0.6822,'1:21.860'],[0.2200,'-4.32'],[0.3297,'-11.93'],[0.3310,'-11.96']],
[[0.6837,'1:22.046'],[0.1977,'-3.83'],[0.3316,'-11.97'],[0.3313,'-11.96']],
[[0.6853,'1:22.232'],[0.3209,'-6.72'],[0.3073,'-11.53'],[0.3303,'-11.95']],
[[0.6868,'1:22.418'],[0.1507,'-2.84'],[0.2873,'-11.17'],[0.3296,'-11.93']],
[[0.6884,'1:22.604'],[0.1712,'-3.26'],[0.3048,'-11.49'],[0.3324,'-11.98']],
[[0.6899,'1:22.790'],[0.1881,'-3.62'],[0.3223,'-11.80'],[0.3352,'-12.03']],
[[0.6915,'1:22.976'],[0.2408,'-4.79'],[0.3156,'-11.68'],[0.3350,'-12.03']],
[[0.6930,'1:23.162'],[0.1786,'-3.42'],[0.3076,'-11.54'],[0.3347,'-12.02']],
[[0.6946,'1:23.348'],[0.2219,'-4.36'],[0.2982,'-11.37'],[0.3349,'-12.03']],
[[0.6961,'1:23.534'],[0.1675,'-3.18'],[0.2883,'-11.19'],[0.3351,'-12.03']],
[[0.6977,'1:23.720'],[0.0929,'-1.69'],[0.2797,'-11.03'],[0.3323,'-11.98']],
[[0.6992,'1:23.906'],[0.1856,'-3.57'],[0.2717,'-10.89'],[0.3279,'-11.90']],
[[0.7008,'1:24.093'],[0.3068,'-6.36'],[0.2649,'-10.77'],[0.3255,'-11.86']],
[[0.7023,'1:24.279'],[0.1501,'-2.83'],[0.2594,'-10.67'],[0.3251,'-11.85']],
[[0.7039,'1:24.465'],[0.1753,'-3.35'],[0.2648,'-10.77'],[0.3240,'-11.83']],
[[0.7054,'1:24.651'],[0.1278,'-2.38'],[0.2906,'-11.23'],[0.3215,'-11.79']],
[[0.7070,'1:24.837'],[0.1718,'-3.28'],[0.3101,'-11.58'],[0.3194,'-11.75']],
[[0.7085,'1:25.023'],[0.2085,'-4.06'],[0.3040,'-11.47'],[0.3186,'-11.73']],
[[0.7101,'1:25.209'],[0.2410,'-4.79'],[0.2976,'-11.36'],[0.3176,'-11.72']],
[[0.7116,'1:25.395'],[0.1727,'-3.29'],[0.2850,'-11.13'],[0.3146,'-11.66']],
[[0.7132,'1:25.581'],[0.1198,'-2.22'],[0.2724,'-10.90'],[0.3115,'-11.61']],
[[0.7147,'1:25.767'],[0.1906,'-3.67'],[0.2751,'-10.95'],[0.3088,'-11.56']],
[[0.7163,'1:25.953'],[0.0596,'-1.07'],[0.2794,'-11.03'],[0.3061,'-11.51']],
[[0.7178,'1:26.139'],[0.2508,'-5.02'],[0.2788,'-11.02'],[0.3055,'-11.50']],
[[0.7194,'1:26.325'],[0.1924,'-3.71'],[0.2764,'-10.98'],[0.3056,'-11.50']],
[[0.7209,'1:26.511'],[0.1105,'-2.03'],[0.2785,'-11.01'],[0.3031,'-11.45']],
[[0.7225,'1:26.697'],[0.1450,'-2.72'],[0.2834,'-11.10'],[0.2987,'-11.38']],
[[0.7240,'1:26.883'],[0.1079,'-1.98'],[0.2885,'-11.19'],[0.2969,'-11.34']],
[[0.7256,'1:27.069'],[0.1814,'-3.48'],[0.2939,'-11.29'],[0.2983,'-11.37']],
[[0.7271,'1:27.255'],[0.1686,'-3.21'],[0.2979,'-11.36'],[0.2993,'-11.39']],
[[0.7287,'1:27.441'],[0.1830,'-3.51'],[0.2990,'-11.38'],[0.2995,'-11.39']],
[[0.7302,'1:27.627'],[0.1003,'-1.84'],[0.3005,'-11.41'],[0.2999,'-11.40']],
[[0.7318,'1:27.813'],[0.1757,'-3.36'],[0.3040,'-11.47'],[0.3004,'-11.41']],
[[0.7333,'1:28.000'],[0.1897,'-3.66'],[0.3074,'-11.53'],[0.3009,'-11.42']],
[[0.7349,'1:28.186'],[0.0862,'-1.57'],[0.3054,'-11.50'],[0.3007,'-11.41']],
[[0.7364,'1:28.372'],[0.1970,'-3.81'],[0.3033,'-11.46'],[0.3004,'-11.41']],
[[0.7380,'1:28.558'],[0.2185,'-4.28'],[0.3012,'-11.42'],[0.3027,'-11.45']],
[[0.7395,'1:28.744'],[0.1969,'-3.81'],[0.2991,'-11.38'],[0.3055,'-11.50']],
[[0.7411,'1:28.930'],[0.1666,'-3.17'],[0.2901,'-11.22'],[0.3068,'-11.52']],
[[0.7426,'1:29.116'],[0.1093,'-2.01'],[0.2782,'-11.01'],[0.3075,'-11.54']],
[[0.7442,'1:29.302'],[0.1858,'-3.57'],[0.2632,'-10.74'],[0.3054,'-11.50']],
[[0.7457,'1:29.488'],[0.1675,'-3.18'],[0.2457,'-10.42'],[0.3009,'-11.42']],
[[0.7473,'1:29.674'],[0.1616,'-3.06'],[0.2380,'-10.28'],[0.2981,'-11.37']],
[[0.7488,'1:29.860'],[0.1703,'-3.24'],[0.2448,'-10.41'],[0.2979,'-11.36']],
[[0.7504,'1:30.046'],[0.2121,'-4.14'],[0.2536,'-10.56'],[0.2976,'-11.36']],
[[0.7519,'1:30.232'],[0.0271,'-0.48'],[0.2680,'-10.82'],[0.2968,'-11.34']],
[[0.7535,'1:30.418'],[0.2108,'-4.11'],[0.2788,'-11.02'],[0.2956,'-11.32']],
[[0.7550,'1:30.604'],[0.1546,'-2.92'],[0.2572,'-10.63'],[0.2907,'-11.23']],
[[0.7566,'1:30.790'],[0.1438,'-2.70'],[0.2357,'-10.24'],[0.2858,'-11.14']],
[[0.7581,'1:30.976'],[0.1824,'-3.50'],[0.2272,'-10.09'],[0.2805,'-11.05']],
[[0.7597,'1:31.162'],[0.0986,'-1.80'],[0.2193,'-9.95'],[0.2753,'-10.95']],
[[0.7612,'1:31.348'],[0.0994,'-1.82'],[0.2120,'-9.82'],[0.2695,'-10.85']],
[[0.7628,'1:31.534'],[0.1542,'-2.91'],[0.2048,'-9.69'],[0.2637,'-10.75']],
[[0.7643,'1:31.720'],[0.1185,'-2.19'],[0.2057,'-9.70'],[0.2605,'-10.69']],
[[0.7659,'1:31.906'],[0.0789,'-1.43'],[0.2110,'-9.80'],[0.2587,'-10.66']],
[[0.7674,'1:32.093'],[0.0440,'-0.78'],[0.2354,'-10.24'],[0.2586,'-10.65']],
[[0.7690,'1:32.279'],[0.1622,'-3.07'],[0.2790,'-11.02'],[0.2600,'-10.68']],
[[0.7705,'1:32.465'],[0.0499,'-0.89'],[0.3070,'-11.53'],[0.2623,'-10.72']],
[[0.7721,'1:32.651'],[0.2029,'-3.94'],[0.3058,'-11.51'],[0.2660,'-10.79']],
[[0.7736,'1:32.837'],[0.1171,'-2.16'],[0.3022,'-11.44'],[0.2694,'-10.85']],
[[0.7752,'1:33.023'],[0.2283,'-4.50'],[0.2887,'-11.20'],[0.2712,'-10.88']],
[[0.7767,'1:33.209'],[0.2011,'-3.90'],[0.2767,'-10.98'],[0.2731,'-10.92']],
[[0.7783,'1:33.395'],[0.0940,'-1.72'],[0.2951,'-11.31'],[0.2756,'-10.96']],
[[0.7798,'1:33.581'],[0.1664,'-3.16'],[0.3134,'-11.64'],[0.2782,'-11.01']],
[[0.7814,'1:33.767'],[0.0727,'-1.31'],[0.2968,'-11.34'],[0.2810,'-11.06']],
[[0.7829,'1:33.953'],[0.1364,'-2.55'],[0.2762,'-10.97'],[0.2839,'-11.11']],
[[0.7845,'1:34.139'],[0.1324,'-2.47'],[0.2694,'-10.85'],[0.2866,'-11.16']],
[[0.7860,'1:34.325'],[0.1187,'-2.20'],[0.2672,'-10.81'],[0.2892,'-11.21']],
[[0.7876,'1:34.511'],[0.1491,'-2.81'],[0.2713,'-10.88'],[0.2941,'-11.29']],
[[0.7891,'1:34.697'],[0.0909,'-1.66'],[0.2796,'-11.03'],[0.3004,'-11.41']],
[[0.7907,'1:34.883'],[0.1720,'-3.28'],[0.2864,'-11.16'],[0.3048,'-11.49']],
[[0.7922,'1:35.069'],[0.1811,'-3.47'],[0.2912,'-11.24'],[0.3068,'-11.52']],
[[0.7938,'1:35.255'],[0.1475,'-2.77'],[0.2949,'-11.31'],[0.3081,'-11.55']],
[[0.7953,'1:35.441'],[0.1644,'-3.12'],[0.2959,'-11.33'],[0.3078,'-11.54']],
[[0.7969,'1:35.627'],[0.1802,'-3.45'],[0.2947,'-11.30'],[0.3072,'-11.53']],
[[0.7984,'1:35.813'],[0.1353,'-2.52'],[0.2802,'-11.04'],[0.3052,'-11.49']],
[[0.8000,'1:36.000'],[0.1319,'-2.46'],[0.2657,'-10.78'],[0.3032,'-11.46']],
[[0.8016,'1:36.186'],[0.1606,'-3.04'],[0.2644,'-10.76'],[0.3004,'-11.41']],
[[0.8031,'1:36.372'],[0.1699,'-3.24'],[0.2631,'-10.74'],[0.2976,'-11.36']],
[[0.8047,'1:36.558'],[0.1711,'-3.26'],[0.2655,'-10.78'],[0.2973,'-11.35']],
[[0.8062,'1:36.744'],[0.1483,'-2.79'],[0.2686,'-10.83'],[0.2974,'-11.35']],
[[0.8078,'1:36.930'],[0.0492,'-0.88'],[0.2702,'-10.86'],[0.2978,'-11.36']],
[[0.8093,'1:37.116'],[0.2015,'-3.91'],[0.2712,'-10.88'],[0.2983,'-11.37']],
[[0.8109,'1:37.302'],[0.0580,'-1.04'],[0.2764,'-10.97'],[0.2987,'-11.38']],
[[0.8124,'1:37.488'],[0.1479,'-2.78'],[0.2849,'-11.13'],[0.2990,'-11.38']],
[[0.8140,'1:37.674'],[0.1853,'-3.56'],[0.2859,'-11.15'],[0.2983,'-11.37']],
[[0.8155,'1:37.860'],[0.2449,'-4.88'],[0.2757,'-10.96'],[0.2961,'-11.33']],
[[0.8171,'1:38.046'],[0.1375,'-2.57'],[0.2684,'-10.83'],[0.2943,'-11.30']],
[[0.8186,'1:38.232'],[0.1658,'-3.15'],[0.2699,'-10.86'],[0.2935,'-11.28']],
[[0.8202,'1:38.418'],[0.1906,'-3.67'],[0.2698,'-10.86'],[0.2926,'-11.27']],
[[0.8217,'1:38.604'],[0.1788,'-3.42'],[0.2552,'-10.59'],[0.2902,'-11.22']],
[[0.8233,'1:38.790'],[0.2016,'-3.91'],[0.2407,'-10.33'],[0.2879,'-11.18']],
[[0.8248,'1:38.976'],[0.1643,'-3.12'],[0.2455,'-10.42'],[0.2857,'-11.14']],
[[0.8264,'1:39.162'],[0.1419,'-2.66'],[0.2512,'-10.52'],[0.2834,'-11.10']],
[[0.8279,'1:39.348'],[0.1513,'-2.85'],[0.2593,'-10.67'],[0.2823,'-11.08']],
[[0.8295,'1:39.534'],[0.0928,'-1.69'],[0.2679,'-10.82'],[0.2814,'-11.06']],
[[0.8310,'1:39.720'],[0.1898,'-3.66'],[0.2705,'-10.87'],[0.2814,'-11.06']],
[[0.8326,'1:39.906'],[0.0311,'-0.55'],[0.2698,'-10.86'],[0.2818,'-11.07']],
[[0.8341,'1:40.093'],[0.1497,'-2.82'],[0.2723,'-10.90'],[0.2815,'-11.07']],
[[0.8357,'1:40.279'],[0.1086,'-2.00'],[0.2780,'-11.00'],[0.2805,'-11.05']],
[[0.8372,'1:40.465'],[0.0994,'-1.82'],[0.2794,'-11.03'],[0.2796,'-11.03']],
[[0.8388,'1:40.651'],[0.1379,'-2.58'],[0.2726,'-10.91'],[0.2790,'-11.02']],
[[0.8403,'1:40.837'],[0.2000,'-3.88'],[0.2709,'-10.88'],[0.2786,'-11.01']],
[[0.8419,'1:41.023'],[0.1667,'-3.17'],[0.2896,'-11.21'],[0.2791,'-11.02']],
[[0.8434,'1:41.209'],[0.1899,'-3.66'],[0.3076,'-11.54'],[0.2797,'-11.03']],
[[0.8450,'1:41.395'],[0.1273,'-2.37'],[0.3138,'-11.65'],[0.2836,'-11.11']],
[[0.8465,'1:41.581'],[0.2563,'-5.14'],[0.3201,'-11.76'],[0.2876,'-11.18']],
[[0.8481,'1:41.767'],[0.1681,'-3.20'],[0.3154,'-11.68'],[0.2917,'-11.25']],
[[0.8496,'1:41.953'],[0.2656,'-5.36'],[0.3096,'-11.57'],[0.2958,'-11.32']],
[[0.8512,'1:42.139'],[0.2019,'-3.92'],[0.3052,'-11.49'],[0.2991,'-11.38']],
[[0.8527,'1:42.325'],[0.1827,'-3.50'],[0.3014,'-11.43'],[0.3021,'-11.44']],
[[0.8543,'1:42.511'],[0.1575,'-2.98'],[0.2971,'-11.35'],[0.3037,'-11.47']],
[[0.8558,'1:42.697'],[0.1635,'-3.10'],[0.2926,'-11.27'],[0.3044,'-11.48']],
[[0.8574,'1:42.883'],[0.1546,'-2.92'],[0.3250,'-11.85'],[0.3096,'-11.57']],
[[0.8589,'1:43.069'],[0.2427,'-4.83'],[0.4026,'-13.25'],[0.3205,'-11.77']],
[[0.8605,'1:43.255'],[0.2711,'-5.49'],[0.4598,'-14.28'],[0.3312,'-11.96']],
[[0.8620,'1:43.441'],[0.3298,'-6.95'],[0.4694,'-14.45'],[0.3416,'-12.15']],
[[0.8636,'1:43.627'],[0.3504,'-7.49'],[0.4750,'-14.55'],[0.3520,'-12.34']],
[[0.8651,'1:43.813'],[0.3738,'-8.13'],[0.4580,'-14.24'],[0.3628,'-12.53']],
[[0.8667,'1:44.000'],[0.2571,'-5.16'],[0.4409,'-13.94'],[0.3736,'-12.72']],
[[0.8682,'1:44.186'],[0.2915,'-5.99'],[0.3650,'-12.57'],[0.3749,'-12.75']],
[[0.8698,'1:44.372'],[0.3212,'-6.73'],[0.2891,'-11.20'],[0.3762,'-12.77']],
[[0.8713,'1:44.558'],[0.2859,'-5.85'],[0.2727,'-10.91'],[0.3753,'-12.75']],
[[0.8729,'1:44.744'],[0.1858,'-3.57'],[0.2669,'-10.80'],[0.3740,'-12.73']],
[[0.8744,'1:44.930'],[0.1803,'-3.45'],[0.2783,'-11.01'],[0.3742,'-12.73']],
[[0.8760,'1:45.116'],[0.0959,'-1.75'],[0.2971,'-11.35'],[0.3750,'-12.75']],
[[0.8775,'1:45.302'],[0.1640,'-3.11'],[0.3162,'-11.69'],[0.3766,'-12.78']],
[[0.8791,'1:45.488'],[0.2380,'-4.72'],[0.3355,'-12.04'],[0.3788,'-12.82']],
[[0.8806,'1:45.674'],[0.2316,'-4.58'],[0.3369,'-12.06'],[0.3762,'-12.77']],
[[0.8822,'1:45.860'],[0.2418,'-4.81'],[0.3113,'-11.60'],[0.3661,'-12.59']],
[[0.8837,'1:46.046'],[0.2047,'-3.98'],[0.2897,'-11.21'],[0.3555,'-12.40']],
[[0.8853,'1:46.232'],[0.2337,'-4.63'],[0.2797,'-11.04'],[0.3432,'-12.18']],
[[0.8868,'1:46.418'],[0.1399,'-2.62'],[0.2719,'-10.89'],[0.3322,'-11.98']],
[[0.8884,'1:46.604'],[0.2352,'-4.66'],[0.2828,'-11.09'],[0.3327,'-11.99']],
[[0.8899,'1:46.790'],[0.1665,'-3.16'],[0.2937,'-11.29'],[0.3332,'-12.00']],
[[0.8915,'1:46.976'],[0.1854,'-3.56'],[0.3612,'-12.50'],[0.3336,'-12.00']],
[[0.8930,'1:47.162'],[0.2874,'-5.89'],[0.4318,'-13.77'],[0.3339,'-12.01']],
[[0.8946,'1:47.348'],[0.3270,'-6.88'],[0.4434,'-13.98'],[0.3390,'-12.10']],
[[0.8961,'1:47.534'],[0.3474,'-7.41'],[0.4403,'-13.92'],[0.3453,'-12.22']],
[[0.8977,'1:47.720'],[0.3405,'-7.23'],[0.4066,'-13.32'],[0.3539,'-12.37']],
[[0.8992,'1:47.906'],[0.3014,'-6.23'],[0.3565,'-12.42'],[0.3637,'-12.55']],
[[0.9008,'1:48.093'],[0.2118,'-4.13'],[0.3129,'-11.63'],[0.3651,'-12.57']],
[[0.9023,'1:48.279'],[0.2501,'-5.00'],[0.2760,'-10.97'],[0.3581,'-12.45']],
[[0.9039,'1:48.465'],[0.2946,'-6.06'],[0.2562,'-10.61'],[0.3536,'-12.36']],
[[0.9054,'1:48.651'],[0.0535,'-0.96'],[0.2683,'-10.83'],[0.3534,'-12.36']],
[[0.9070,'1:48.837'],[0.1947,'-3.76'],[0.2825,'-11.09'],[0.3541,'-12.37']],
[[0.9085,'1:49.023'],[0.1806,'-3.46'],[0.3053,'-11.50'],[0.3588,'-12.46']],
[[0.9101,'1:49.209'],[0.2242,'-4.41'],[0.3260,'-11.87'],[0.3632,'-12.54']],
[[0.9116,'1:49.395'],[0.1951,'-3.77'],[0.3071,'-11.53'],[0.3599,'-12.48']],
[[0.9132,'1:49.581'],[0.2045,'-3.97'],[0.2882,'-11.19'],[0.3566,'-12.42']],
[[0.9147,'1:49.767'],[0.2465,'-4.92'],[0.2811,'-11.06'],[0.3467,'-12.24']],
[[0.9163,'1:49.953'],[0.1363,'-2.55'],[0.2753,'-10.96'],[0.3361,'-12.05']],
[[0.9178,'1:50.139'],[0.1412,'-2.64'],[0.2745,'-10.94'],[0.3282,'-11.91']],
[[0.9194,'1:50.325'],[0.0792,'-1.43'],[0.2754,'-10.96'],[0.3213,'-11.78']],
[[0.9209,'1:50.511'],[0.1840,'-3.53'],[0.2928,'-11.27'],[0.3184,'-11.73']],
[[0.9225,'1:50.697'],[0.1404,'-2.63'],[0.3212,'-11.78'],[0.3182,'-11.73']],
[[0.9240,'1:50.883'],[0.1606,'-3.04'],[0.3574,'-12.43'],[0.3191,'-11.74']],
[[0.9256,'1:51.069'],[0.2196,'-4.31'],[0.4031,'-13.26'],[0.3214,'-11.78']],
[[0.9271,'1:51.255'],[0.1774,'-3.39'],[0.4299,'-13.74'],[0.3268,'-11.88']],
[[0.9287,'1:51.441'],[0.2788,'-5.68'],[0.4124,'-13.42'],[0.3396,'-12.11']],
[[0.9302,'1:51.627'],[0.3506,'-7.50'],[0.3906,'-13.03'],[0.3505,'-12.31']],
[[0.9318,'1:51.813'],[0.2175,'-4.26'],[0.3440,'-12.19'],[0.3505,'-12.31']],
[[0.9333,'1:52.000'],[0.1588,'-3.00'],[0.2974,'-11.35'],[0.3506,'-12.31']],
[[0.9349,'1:52.186'],[0.2981,'-6.15'],[0.2644,'-10.76'],[0.3455,'-12.22']],
[[0.9364,'1:52.372'],[0.1640,'-3.11'],[0.2313,'-10.16'],[0.3403,'-12.13']],
[[0.9380,'1:52.558'],[0.1466,'-2.75'],[0.2437,'-10.39'],[0.3416,'-12.15']],
[[0.9395,'1:52.744'],[0.1276,'-2.37'],[0.2640,'-10.75'],[0.3442,'-12.19']],
[[0.9411,'1:52.930'],[0.1969,'-3.81'],[0.2845,'-11.12'],[0.3460,'-12.23']],
[[0.9426,'1:53.116'],[0.1130,'-2.08'],[0.3049,'-11.49'],[0.3475,'-12.25']],
[[0.9442,'1:53.302'],[0.1410,'-2.64'],[0.3072,'-11.53'],[0.3461,'-12.23']],
[[0.9457,'1:53.488'],[0.1811,'-3.47'],[0.2946,'-11.30'],[0.3424,'-12.16']],
[[0.9473,'1:53.674'],[0.2660,'-5.37'],[0.2843,'-11.12'],[0.3366,'-12.06']],
[[0.9488,'1:53.860'],[0.1280,'-2.38'],[0.2774,'-10.99'],[0.3275,'-11.90']],
[[0.9504,'1:54.046'],[0.1142,'-2.11'],[0.2688,'-10.84'],[0.3179,'-11.72']],
[[0.9519,'1:54.232'],[0.1431,'-2.68'],[0.2549,'-10.59'],[0.3067,'-11.52']],
[[0.9535,'1:54.418'],[0.2449,'-4.88'],[0.2425,'-10.36'],[0.2961,'-11.33']],
[[0.9550,'1:54.604'],[0.1715,'-3.27'],[0.2433,'-10.38'],[0.2903,'-11.22']],
[[0.9566,'1:54.790'],[0.1840,'-3.53'],[0.2442,'-10.39'],[0.2845,'-11.12']],
[[0.9581,'1:54.976'],[0.1273,'-2.37'],[0.2602,'-10.68'],[0.2849,'-11.13']],
[[0.9597,'1:55.162'],[0.1942,'-3.75'],[0.2770,'-10.99'],[0.2856,'-11.14']],
[[0.9612,'1:55.348'],[0.1610,'-3.05'],[0.2933,'-11.28'],[0.2898,'-11.22']],
[[0.9628,'1:55.534'],[0.1302,'-2.42'],[0.3096,'-11.57'],[0.2948,'-11.31']],
[[0.9643,'1:55.720'],[0.2099,'-4.09'],[0.3187,'-11.74'],[0.2975,'-11.36']],
[[0.9659,'1:55.906'],[0.1720,'-3.28'],[0.3238,'-11.83'],[0.2990,'-11.38']],
[[0.9674,'1:56.093'],[0.1940,'-3.75'],[0.3296,'-11.93'],[0.2999,'-11.40']],
[[0.9690,'1:56.279'],[0.1924,'-3.71'],[0.3361,'-12.05'],[0.3001,'-11.40']],
[[0.9705,'1:56.465'],[0.1866,'-3.59'],[0.3392,'-12.11'],[0.3010,'-11.42']],
[[0.9721,'1:56.651'],[0.2438,'-4.85'],[0.3362,'-12.05'],[0.3030,'-11.45']],
[[0.9736,'1:56.837'],[0.1498,'-2.82'],[0.3282,'-11.91'],[0.3053,'-11.50']],
[[0.9752,'1:57.023'],[0.2583,'-5.19'],[0.3004,'-11.41'],[0.3090,'-11.56']],
[[0.9767,'1:57.209'],[0.1755,'-3.35'],[0.2739,'-10.93'],[0.3127,'-11.63']],
[[0.9783,'1:57.395'],[0.1989,'-3.85'],[0.2727,'-10.91'],[0.3162,'-11.69']],
[[0.9798,'1:57.581'],[0.0451,'-0.80'],[0.2716,'-10.89'],[0.3196,'-11.75']],
[[0.9814,'1:57.767'],[0.0000,'+0.24'],[0.2904,'-11.23'],[0.3225,'-11.81']],
[[0.9829,'1:57.953'],[0.2460,'-4.91'],[0.3115,'-11.61'],[0.3254,'-11.86']],
[[0.9845,'1:58.139'],[0.1383,'-2.59'],[0.3273,'-11.89'],[0.3292,'-11.93']],
[[0.9860,'1:58.325'],[0.1902,'-3.66'],[0.3412,'-12.14'],[0.3334,'-12.00']],
[[0.9876,'1:58.511'],[0.2130,'-4.16'],[0.3378,'-12.08'],[0.3357,'-12.04']],
[[0.9891,'1:58.697'],[0.1452,'-2.73'],[0.3229,'-11.81'],[0.3368,'-12.06']],
[[0.9907,'1:58.883'],[0.2197,'-4.31'],[0.3063,'-11.51'],[0.3354,'-12.04']],
[[0.9922,'1:59.069'],[0.1298,'-2.42'],[0.2875,'-11.17'],[0.3312,'-11.96']],
[[0.9938,'1:59.255'],[0.2507,'-5.01'],[0.2762,'-10.97'],[0.3279,'-11.90']],
[[0.9953,'1:59.441'],[0.1055,'-1.94'],[0.2822,'-11.08'],[0.3267,'-11.88']],
[[0.9969,'1:59.627'],[0.1193,'-2.21'],[0.2873,'-11.17'],[0.3257,'-11.86']],
[[0.9984,'1:59.813'],[0.0826,'-1.50'],[0.2873,'-11.17'],[0.3257,'-11.86']],
[[1.0000,'2:00.000'],[0.1322,'-2.46'],[0.2873,'-11.17'],[0.3257,'-11.86']],
],
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:[
-24.00,
-6.00,
],
ymaj:[
[0.0000,'-6'],
[0.1667,'-9'],
[0.3333,'-12'],
[0.5000,'-15'],
[0.6667,'-18'],
[0.8333,'-21'],
[1.0000,'-24'],
],
ymin:[
0.0556,
0.1111,
0.2222,
0.2778,
0.3889,
0.4444,
0.5556,
0.6111,
0.7222,
0.7778,
0.8889,
0.9444,
],
};
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>