forked from boefraty74/todelete_TutorialFunnelPlot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathout.html
More file actions
952 lines (856 loc) · 282 KB
/
out.html
File metadata and controls
952 lines (856 loc) · 282 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
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript">// <![CDATA[
(function() {
// If window.HTMLWidgets is already defined, then use it; otherwise create a
// new object. This allows preceding code to set options that affect the
// initialization process (though none currently exist).
window.HTMLWidgets = window.HTMLWidgets || {};
// See if we're running in a viewer pane. If not, we're in a web browser.
var viewerMode = window.HTMLWidgets.viewerMode =
/\bviewer_pane=1\b/.test(window.location);
// See if we're running in Shiny mode. If not, it's a static document.
// Note that static widgets can appear in both Shiny and static modes, but
// obviously, Shiny widgets can only appear in Shiny apps/documents.
var shinyMode = window.HTMLWidgets.shinyMode =
typeof(window.Shiny) !== "undefined" && !!window.Shiny.outputBindings;
// We can't count on jQuery being available, so we implement our own
// version if necessary.
function querySelectorAll(scope, selector) {
if (typeof(jQuery) !== "undefined" && scope instanceof jQuery) {
return scope.find(selector);
}
if (scope.querySelectorAll) {
return scope.querySelectorAll(selector);
}
}
function asArray(value) {
if (value === null)
return [];
if ($.isArray(value))
return value;
return [value];
}
// Implement jQuery's extend
function extend(target /*, ... */) {
if (arguments.length == 1) {
return target;
}
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var prop in source) {
if (source.hasOwnProperty(prop)) {
target[prop] = source[prop];
}
}
}
return target;
}
// IE8 doesn't support Array.forEach.
function forEach(values, callback, thisArg) {
if (values.forEach) {
values.forEach(callback, thisArg);
} else {
for (var i = 0; i < values.length; i++) {
callback.call(thisArg, values[i], i, values);
}
}
}
// Replaces the specified method with the return value of funcSource.
//
// Note that funcSource should not BE the new method, it should be a function
// that RETURNS the new method. funcSource receives a single argument that is
// the overridden method, it can be called from the new method. The overridden
// method can be called like a regular function, it has the target permanently
// bound to it so "this" will work correctly.
function overrideMethod(target, methodName, funcSource) {
var superFunc = target[methodName] || function() {};
var superFuncBound = function() {
return superFunc.apply(target, arguments);
};
target[methodName] = funcSource(superFuncBound);
}
// Add a method to delegator that, when invoked, calls
// delegatee.methodName. If there is no such method on
// the delegatee, but there was one on delegator before
// delegateMethod was called, then the original version
// is invoked instead.
// For example:
//
// var a = {
// method1: function() { console.log('a1'); }
// method2: function() { console.log('a2'); }
// };
// var b = {
// method1: function() { console.log('b1'); }
// };
// delegateMethod(a, b, "method1");
// delegateMethod(a, b, "method2");
// a.method1();
// a.method2();
//
// The output would be "b1", "a2".
function delegateMethod(delegator, delegatee, methodName) {
var inherited = delegator[methodName];
delegator[methodName] = function() {
var target = delegatee;
var method = delegatee[methodName];
// The method doesn't exist on the delegatee. Instead,
// call the method on the delegator, if it exists.
if (!method) {
target = delegator;
method = inherited;
}
if (method) {
return method.apply(target, arguments);
}
};
}
// Implement a vague facsimilie of jQuery's data method
function elementData(el, name, value) {
if (arguments.length == 2) {
return el["htmlwidget_data_" + name];
} else if (arguments.length == 3) {
el["htmlwidget_data_" + name] = value;
return el;
} else {
throw new Error("Wrong number of arguments for elementData: " +
arguments.length);
}
}
// http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex
function escapeRegExp(str) {
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
}
function hasClass(el, className) {
var re = new RegExp("\\b" + escapeRegExp(className) + "\\b");
return re.test(el.className);
}
// elements - array (or array-like object) of HTML elements
// className - class name to test for
// include - if true, only return elements with given className;
// if false, only return elements *without* given className
function filterByClass(elements, className, include) {
var results = [];
for (var i = 0; i < elements.length; i++) {
if (hasClass(elements[i], className) == include)
results.push(elements[i]);
}
return results;
}
function on(obj, eventName, func) {
if (obj.addEventListener) {
obj.addEventListener(eventName, func, false);
} else if (obj.attachEvent) {
obj.attachEvent(eventName, func);
}
}
function off(obj, eventName, func) {
if (obj.removeEventListener)
obj.removeEventListener(eventName, func, false);
else if (obj.detachEvent) {
obj.detachEvent(eventName, func);
}
}
// Translate array of values to top/right/bottom/left, as usual with
// the "padding" CSS property
// https://developer.mozilla.org/en-US/docs/Web/CSS/padding
function unpackPadding(value) {
if (typeof(value) === "number")
value = [value];
if (value.length === 1) {
return {top: value[0], right: value[0], bottom: value[0], left: value[0]};
}
if (value.length === 2) {
return {top: value[0], right: value[1], bottom: value[0], left: value[1]};
}
if (value.length === 3) {
return {top: value[0], right: value[1], bottom: value[2], left: value[1]};
}
if (value.length === 4) {
return {top: value[0], right: value[1], bottom: value[2], left: value[3]};
}
}
// Convert an unpacked padding object to a CSS value
function paddingToCss(paddingObj) {
return paddingObj.top + "px " + paddingObj.right + "px " + paddingObj.bottom + "px " + paddingObj.left + "px";
}
// Makes a number suitable for CSS
function px(x) {
if (typeof(x) === "number")
return x + "px";
else
return x;
}
// Retrieves runtime widget sizing information for an element.
// The return value is either null, or an object with fill, padding,
// defaultWidth, defaultHeight fields.
function sizingPolicy(el) {
var sizingEl = document.querySelector("script[data-for='" + el.id + "'][type='application/htmlwidget-sizing']");
if (!sizingEl)
return null;
var sp = JSON.parse(sizingEl.textContent || sizingEl.text || "{}");
if (viewerMode) {
return sp.viewer;
} else {
return sp.browser;
}
}
// @param tasks Array of strings (or falsy value, in which case no-op).
// Each element must be a valid JavaScript expression that yields a
// function.
// @param target The object that will be "this" for each function
// execution.
// @param args Array of arguments to be passed to the functions. (The
// same arguments will be passed to all functions.)
function evalAndRun(tasks, target, args) {
if (tasks) {
forEach(tasks, function(task) {
var taskFunc = eval("(" + task + ")");
if (typeof(taskFunc) !== "function") {
throw new Error("Task must be a function! Source:\n" + task);
}
taskFunc.apply(target, args);
});
}
}
function initSizing(el) {
var sizing = sizingPolicy(el);
if (!sizing)
return;
var cel = document.getElementById("htmlwidget_container");
if (!cel)
return;
if (typeof(sizing.padding) !== "undefined") {
document.body.style.margin = "0";
document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));
}
if (sizing.fill) {
document.body.style.overflow = "hidden";
document.body.style.width = "100%";
document.body.style.height = "100%";
document.documentElement.style.width = "100%";
document.documentElement.style.height = "100%";
if (cel) {
cel.style.position = "absolute";
var pad = unpackPadding(sizing.padding);
cel.style.top = pad.top + "px";
cel.style.right = pad.right + "px";
cel.style.bottom = pad.bottom + "px";
cel.style.left = pad.left + "px";
el.style.width = "100%";
el.style.height = "100%";
}
return {
getWidth: function() { return cel.offsetWidth; },
getHeight: function() { return cel.offsetHeight; }
};
} else {
el.style.width = px(sizing.width);
el.style.height = px(sizing.height);
return {
getWidth: function() { return el.offsetWidth; },
getHeight: function() { return el.offsetHeight; }
};
}
}
// Default implementations for methods
var defaults = {
find: function(scope) {
return querySelectorAll(scope, "." + this.name);
},
renderError: function(el, err) {
var $el = $(el);
this.clearError(el);
// Add all these error classes, as Shiny does
var errClass = "shiny-output-error";
if (err.type !== null) {
// use the classes of the error condition as CSS class names
errClass = errClass + " " + $.map(asArray(err.type), function(type) {
return errClass + "-" + type;
}).join(" ");
}
errClass = errClass + " htmlwidgets-error";
// Is el inline or block? If inline or inline-block, just display:none it
// and add an inline error.
var display = $el.css("display");
$el.data("restore-display-mode", display);
if (display === "inline" || display === "inline-block") {
$el.hide();
if (err.message !== "") {
var errorSpan = $("<span>").addClass(errClass);
errorSpan.text(err.message);
$el.after(errorSpan);
}
} else if (display === "block") {
// If block, add an error just after the el, set visibility:none on the
// el, and position the error to be on top of the el.
// Mark it with a unique ID and CSS class so we can remove it later.
$el.css("visibility", "hidden");
if (err.message !== "") {
var errorDiv = $("<div>").addClass(errClass).css("position", "absolute")
.css("top", el.offsetTop)
.css("left", el.offsetLeft)
// setting width can push out the page size, forcing otherwise
// unnecessary scrollbars to appear and making it impossible for
// the element to shrink; so use max-width instead
.css("maxWidth", el.offsetWidth)
.css("height", el.offsetHeight);
errorDiv.text(err.message);
$el.after(errorDiv);
// Really dumb way to keep the size/position of the error in sync with
// the parent element as the window is resized or whatever.
var intId = setInterval(function() {
if (!errorDiv[0].parentElement) {
clearInterval(intId);
return;
}
errorDiv
.css("top", el.offsetTop)
.css("left", el.offsetLeft)
.css("maxWidth", el.offsetWidth)
.css("height", el.offsetHeight);
}, 500);
}
}
},
clearError: function(el) {
var $el = $(el);
var display = $el.data("restore-display-mode");
$el.data("restore-display-mode", null);
if (display === "inline" || display === "inline-block") {
if (display)
$el.css("display", display);
$(el.nextSibling).filter(".htmlwidgets-error").remove();
} else if (display === "block"){
$el.css("visibility", "inherit");
$(el.nextSibling).filter(".htmlwidgets-error").remove();
}
},
sizing: {}
};
// Called by widget bindings to register a new type of widget. The definition
// object can contain the following properties:
// - name (required) - A string indicating the binding name, which will be
// used by default as the CSS classname to look for.
// - initialize (optional) - A function(el) that will be called once per
// widget element; if a value is returned, it will be passed as the third
// value to renderValue.
// - renderValue (required) - A function(el, data, initValue) that will be
// called with data. Static contexts will cause this to be called once per
// element; Shiny apps will cause this to be called multiple times per
// element, as the data changes.
window.HTMLWidgets.widget = function(definition) {
if (!definition.name) {
throw new Error("Widget must have a name");
}
if (!definition.type) {
throw new Error("Widget must have a type");
}
// Currently we only support output widgets
if (definition.type !== "output") {
throw new Error("Unrecognized widget type '" + definition.type + "'");
}
// TODO: Verify that .name is a valid CSS classname
// Support new-style instance-bound definitions. Old-style class-bound
// definitions have one widget "object" per widget per type/class of
// widget; the renderValue and resize methods on such widget objects
// take el and instance arguments, because the widget object can't
// store them. New-style instance-bound definitions have one widget
// object per widget instance; the definition that's passed in doesn't
// provide renderValue or resize methods at all, just the single method
// factory(el, width, height)
// which returns an object that has renderValue(x) and resize(w, h).
// This enables a far more natural programming style for the widget
// author, who can store per-instance state using either OO-style
// instance fields or functional-style closure variables (I guess this
// is in contrast to what can only be called C-style pseudo-OO which is
// what we required before).
if (definition.factory) {
definition = createLegacyDefinitionAdapter(definition);
}
if (!definition.renderValue) {
throw new Error("Widget must have a renderValue function");
}
// For static rendering (non-Shiny), use a simple widget registration
// scheme. We also use this scheme for Shiny apps/documents that also
// contain static widgets.
window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];
// Merge defaults into the definition; don't mutate the original definition.
var staticBinding = extend({}, defaults, definition);
overrideMethod(staticBinding, "find", function(superfunc) {
return function(scope) {
var results = superfunc(scope);
// Filter out Shiny outputs, we only want the static kind
return filterByClass(results, "html-widget-output", false);
};
});
window.HTMLWidgets.widgets.push(staticBinding);
if (shinyMode) {
// Shiny is running. Register the definition with an output binding.
// The definition itself will not be the output binding, instead
// we will make an output binding object that delegates to the
// definition. This is because we foolishly used the same method
// name (renderValue) for htmlwidgets definition and Shiny bindings
// but they actually have quite different semantics (the Shiny
// bindings receive data that includes lots of metadata that it
// strips off before calling htmlwidgets renderValue). We can't
// just ignore the difference because in some widgets it's helpful
// to call this.renderValue() from inside of resize(), and if
// we're not delegating, then that call will go to the Shiny
// version instead of the htmlwidgets version.
// Merge defaults with definition, without mutating either.
var bindingDef = extend({}, defaults, definition);
// This object will be our actual Shiny binding.
var shinyBinding = new Shiny.OutputBinding();
// With a few exceptions, we'll want to simply use the bindingDef's
// version of methods if they are available, otherwise fall back to
// Shiny's defaults. NOTE: If Shiny's output bindings gain additional
// methods in the future, and we want them to be overrideable by
// HTMLWidget binding definitions, then we'll need to add them to this
// list.
delegateMethod(shinyBinding, bindingDef, "getId");
delegateMethod(shinyBinding, bindingDef, "onValueChange");
delegateMethod(shinyBinding, bindingDef, "onValueError");
delegateMethod(shinyBinding, bindingDef, "renderError");
delegateMethod(shinyBinding, bindingDef, "clearError");
delegateMethod(shinyBinding, bindingDef, "showProgress");
// The find, renderValue, and resize are handled differently, because we
// want to actually decorate the behavior of the bindingDef methods.
shinyBinding.find = function(scope) {
var results = bindingDef.find(scope);
// Only return elements that are Shiny outputs, not static ones
var dynamicResults = results.filter(".html-widget-output");
// It's possible that whatever caused Shiny to think there might be
// new dynamic outputs, also caused there to be new static outputs.
// Since there might be lots of different htmlwidgets bindings, we
// schedule execution for later--no need to staticRender multiple
// times.
if (results.length !== dynamicResults.length)
scheduleStaticRender();
return dynamicResults;
};
// Wrap renderValue to handle initialization, which unfortunately isn't
// supported natively by Shiny at the time of this writing.
shinyBinding.renderValue = function(el, data) {
// Resolve strings marked as javascript literals to objects
if (!(data.evals instanceof Array)) data.evals = [data.evals];
for (var i = 0; data.evals && i < data.evals.length; i++) {
window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);
}
if (!bindingDef.renderOnNullValue) {
if (data.x === null) {
el.style.visibility = "hidden";
return;
} else {
el.style.visibility = "inherit";
}
}
if (!elementData(el, "initialized")) {
initSizing(el);
elementData(el, "initialized", true);
if (bindingDef.initialize) {
var result = bindingDef.initialize(el, el.offsetWidth,
el.offsetHeight);
elementData(el, "init_result", result);
}
evalAndRun(data.jsHooks.render, elementData(el, "init_result"), [el, data.x]);
}
Shiny.renderDependencies(data.deps);
bindingDef.renderValue(el, data.x, elementData(el, "init_result"));
};
// Only override resize if bindingDef implements it
if (bindingDef.resize) {
shinyBinding.resize = function(el, width, height) {
// Shiny can call resize before initialize/renderValue have been
// called, which doesn't make sense for widgets.
if (elementData(el, "initialized")) {
bindingDef.resize(el, width, height, elementData(el, "init_result"));
}
};
}
Shiny.outputBindings.register(shinyBinding, bindingDef.name);
}
};
var scheduleStaticRenderTimerId = null;
function scheduleStaticRender() {
if (!scheduleStaticRenderTimerId) {
scheduleStaticRenderTimerId = setTimeout(function() {
scheduleStaticRenderTimerId = null;
window.HTMLWidgets.staticRender();
}, 1);
}
}
// Render static widgets after the document finishes loading
// Statically render all elements that are of this widget's class
window.HTMLWidgets.staticRender = function() {
var bindings = window.HTMLWidgets.widgets || [];
forEach(bindings, function(binding) {
var matches = binding.find(document.documentElement);
forEach(matches, function(el) {
var sizeObj = initSizing(el, binding);
if (hasClass(el, "html-widget-static-bound"))
return;
el.className = el.className + " html-widget-static-bound";
var initResult;
if (binding.initialize) {
initResult = binding.initialize(el,
sizeObj ? sizeObj.getWidth() : el.offsetWidth,
sizeObj ? sizeObj.getHeight() : el.offsetHeight
);
elementData(el, "init_result", initResult);
}
if (binding.resize) {
var lastSize = {};
var resizeHandler = function(e) {
var size = {
w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,
h: sizeObj ? sizeObj.getHeight() : el.offsetHeight
};
if (size.w === 0 && size.h === 0)
return;
if (size.w === lastSize.w && size.h === lastSize.h)
return;
lastSize = size;
binding.resize(el, size.w, size.h, initResult);
};
on(window, "resize", resizeHandler);
// This is needed for cases where we're running in a Shiny
// app, but the widget itself is not a Shiny output, but
// rather a simple static widget. One example of this is
// an rmarkdown document that has runtime:shiny and widget
// that isn't in a render function. Shiny only knows to
// call resize handlers for Shiny outputs, not for static
// widgets, so we do it ourselves.
if (window.jQuery) {
window.jQuery(document).on("shown.htmlwidgets shown.bs.tab.htmlwidgets", resizeHandler);
window.jQuery(document).on("hidden.htmlwidgets hidden.bs.tab.htmlwidgets", resizeHandler);
}
// This is needed for the specific case of ioslides, which
// flips slides between display:none and display:block.
// Ideally we would not have to have ioslide-specific code
// here, but rather have ioslides raise a generic event,
// but the rmarkdown package just went to CRAN so the
// window to getting that fixed may be long.
if (window.addEventListener) {
// It's OK to limit this to window.addEventListener
// browsers because ioslides itself only supports
// such browsers.
on(document, "slideenter", resizeHandler);
on(document, "slideleave", resizeHandler);
}
}
var scriptData = document.querySelector("script[data-for='" + el.id + "'][type='application/json']");
if (scriptData) {
var data = JSON.parse(scriptData.textContent || scriptData.text);
// Resolve strings marked as javascript literals to objects
if (!(data.evals instanceof Array)) data.evals = [data.evals];
for (var k = 0; data.evals && k < data.evals.length; k++) {
window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);
}
binding.renderValue(el, data.x, initResult);
evalAndRun(data.jsHooks.render, initResult, [el, data.x]);
}
});
});
invokePostRenderHandlers();
}
// Wait until after the document has loaded to render the widgets.
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", function() {
document.removeEventListener("DOMContentLoaded", arguments.callee, false);
window.HTMLWidgets.staticRender();
}, false);
} else if (document.attachEvent) {
document.attachEvent("onreadystatechange", function() {
if (document.readyState === "complete") {
document.detachEvent("onreadystatechange", arguments.callee);
window.HTMLWidgets.staticRender();
}
});
}
window.HTMLWidgets.getAttachmentUrl = function(depname, key) {
// If no key, default to the first item
if (typeof(key) === "undefined")
key = 1;
var link = document.getElementById(depname + "-" + key + "-attachment");
if (!link) {
throw new Error("Attachment " + depname + "/" + key + " not found in document");
}
return link.getAttribute("href");
};
window.HTMLWidgets.dataframeToD3 = function(df) {
var names = [];
var length;
for (var name in df) {
if (df.hasOwnProperty(name))
names.push(name);
if (typeof(df[name]) !== "object" || typeof(df[name].length) === "undefined") {
throw new Error("All fields must be arrays");
} else if (typeof(length) !== "undefined" && length !== df[name].length) {
throw new Error("All fields must be arrays of the same length");
}
length = df[name].length;
}
var results = [];
var item;
for (var row = 0; row < length; row++) {
item = {};
for (var col = 0; col < names.length; col++) {
item[names[col]] = df[names[col]][row];
}
results.push(item);
}
return results;
};
window.HTMLWidgets.transposeArray2D = function(array) {
if (array.length === 0) return array;
var newArray = array[0].map(function(col, i) {
return array.map(function(row) {
return row[i]
})
});
return newArray;
};
// Split value at splitChar, but allow splitChar to be escaped
// using escapeChar. Any other characters escaped by escapeChar
// will be included as usual (including escapeChar itself).
function splitWithEscape(value, splitChar, escapeChar) {
var results = [];
var escapeMode = false;
var currentResult = "";
for (var pos = 0; pos < value.length; pos++) {
if (!escapeMode) {
if (value[pos] === splitChar) {
results.push(currentResult);
currentResult = "";
} else if (value[pos] === escapeChar) {
escapeMode = true;
} else {
currentResult += value[pos];
}
} else {
currentResult += value[pos];
escapeMode = false;
}
}
if (currentResult !== "") {
results.push(currentResult);
}
return results;
}
// Function authored by Yihui/JJ Allaire
window.HTMLWidgets.evaluateStringMember = function(o, member) {
var parts = splitWithEscape(member, '.', '\\');
for (var i = 0, l = parts.length; i < l; i++) {
var part = parts[i];
// part may be a character or 'numeric' member name
if (o !== null && typeof o === "object" && part in o) {
if (i == (l - 1)) { // if we are at the end of the line then evalulate
if (typeof o[part] === "string")
o[part] = eval("(" + o[part] + ")");
} else { // otherwise continue to next embedded object
o = o[part];
}
}
}
};
// Retrieve the HTMLWidget instance (i.e. the return value of an
// HTMLWidget binding's initialize() or factory() function)
// associated with an element, or null if none.
window.HTMLWidgets.getInstance = function(el) {
return elementData(el, "init_result");
};
// Finds the first element in the scope that matches the selector,
// and returns the HTMLWidget instance (i.e. the return value of
// an HTMLWidget binding's initialize() or factory() function)
// associated with that element, if any. If no element matches the
// selector, or the first matching element has no HTMLWidget
// instance associated with it, then null is returned.
//
// The scope argument is optional, and defaults to window.document.
window.HTMLWidgets.find = function(scope, selector) {
if (arguments.length == 1) {
selector = scope;
scope = document;
}
var el = scope.querySelector(selector);
if (el === null) {
return null;
} else {
return window.HTMLWidgets.getInstance(el);
}
};
// Finds all elements in the scope that match the selector, and
// returns the HTMLWidget instances (i.e. the return values of
// an HTMLWidget binding's initialize() or factory() function)
// associated with the elements, in an array. If elements that
// match the selector don't have an associated HTMLWidget
// instance, the returned array will contain nulls.
//
// The scope argument is optional, and defaults to window.document.
window.HTMLWidgets.findAll = function(scope, selector) {
if (arguments.length == 1) {
selector = scope;
scope = document;
}
var nodes = scope.querySelectorAll(selector);
var results = [];
for (var i = 0; i < nodes.length; i++) {
results.push(window.HTMLWidgets.getInstance(nodes[i]));
}
return results;
};
var postRenderHandlers = [];
function invokePostRenderHandlers() {
while (postRenderHandlers.length) {
var handler = postRenderHandlers.shift();
if (handler) {
handler();
}
}
}
// Register the given callback function to be invoked after the
// next time static widgets are rendered.
window.HTMLWidgets.addPostRenderHandler = function(callback) {
postRenderHandlers.push(callback);
};
// Takes a new-style instance-bound definition, and returns an
// old-style class-bound definition. This saves us from having
// to rewrite all the logic in this file to accomodate both
// types of definitions.
function createLegacyDefinitionAdapter(defn) {
var result = {
name: defn.name,
type: defn.type,
initialize: function(el, width, height) {
return defn.factory(el, width, height);
},
renderValue: function(el, x, instance) {
return instance.renderValue(x);
},
resize: function(el, width, height, instance) {
return instance.resize(width, height);
}
};
if (defn.find)
result.find = defn.find;
if (defn.renderError)
result.renderError = defn.renderError;
if (defn.clearError)
result.clearError = defn.clearError;
return result;
}
})();
// ]]></script><style>/*
just here so that plotly works
correctly with ioslides.
see https://github.com/ropensci/plotly/issues/463
*/
slide:not(.current) .plotly.html-widget{
display: none;
}</style>
<script src="https://cdn.plot.ly/plotly-1.16.3.min.js"></script><script type="text/javascript">// <![CDATA[
HTMLWidgets.widget({
name: "plotly",
type: "output",
initialize: function(el, width, height) {
// when upgrading plotly.js,
// uncomment this console.log(), then do `load_all(); plot_ly()`
// open in chrome, right-click on console output: "save-as" -> "schema.json"
// Schema <- jsonlite::fromJSON("~/Downloads/schema.json")
// devtools::use_data(Schema, overwrite = T, internal = T)
// console.log(JSON.stringify(Plotly.PlotSchema.get()));
return {};
},
resize: function(el, width, height, instance) {
if (instance.autosize) {
Plotly.relayout(el.id, {width: width, height: height});
}
},
renderValue: function(el, x, instance) {
var shinyMode;
if (typeof(window) !== "undefined") {
// make sure plots don't get created outside the network
window.PLOTLYENV = window.PLOTLYENV || {};
window.PLOTLYENV.BASE_URL = x.base_url;
shinyMode = !!window.Shiny;
}
var graphDiv = document.getElementById(el.id);
// if no plot exists yet, create one with a particular configuration
if (!instance.plotly) {
var plot = Plotly.plot(graphDiv, x.data, x.layout, x.config);
instance.plotly = true;
instance.autosize = x.layout.autosize;
} else {
var plot = Plotly.newPlot(graphDiv, x.data, x.layout);
}
sendEventData = function(eventType) {
return function(eventData) {
if (eventData === undefined || !eventData.hasOwnProperty("points")) {
return null;
}
var d = eventData.points.map(function(pt) {
var obj = {
curveNumber: pt.curveNumber,
pointNumber: pt.pointNumber,
x: pt.x,
y: pt.y
};
// grab the trace corresponding to this point
var tr = x.data[pt.curveNumber];
// add on additional trace info, if it exists
attachKey = function(keyName) {
if (tr.hasOwnProperty(keyName) && tr[keyName] !== null) {
if (typeof pt.pointNumber === "number") {
obj[keyName] = tr[keyName][pt.pointNumber];
} else {
obj[keyName] = tr[keyName][pt.pointNumber[0]][pt.pointNumber[1]];
}// TODO: can pointNumber be 3D?
}
};
attachKey("z");
attachKey("key");
return obj;
});
var src = ".clientValue-" + eventType + "-" + x.source;
Shiny.onInputChange(src, JSON.stringify(d));
};
};
// send user input event data to shiny
if (shinyMode) {
// https://plot.ly/javascript/zoom-events/
graphDiv.on('plotly_relayout', function(d) {
Shiny.onInputChange(
".clientValue-" + "plotly_relayout" + "-" + x.source,
JSON.stringify(d)
);
});
graphDiv.on('plotly_hover', sendEventData('plotly_hover'));
graphDiv.on('plotly_click', sendEventData('plotly_click'));
graphDiv.on('plotly_selected', sendEventData('plotly_selected'));
graphDiv.on('plotly_unhover', function(eventData) {
Shiny.onInputChange(".clientValue-plotly_hover-" + x.source, null);
});
graphDiv.on('plotly_doubleclick', function(eventData) {
Shiny.onInputChange(".clientValue-plotly_click-" + x.source, null);
});
// 'plotly_deselect' is code for doubleclick when in select mode
graphDiv.on('plotly_deselect', function(eventData) {
Shiny.onInputChange(".clientValue-plotly_selected-" + x.source, null);
Shiny.onInputChange(".clientValue-plotly_click-" + x.source, null);
});
}
}
});
// ]]></script>
</head>
<body style="background-color:white;">
<div id="htmlwidget_container">
<div id="htmlwidget-6711" style="width:100%;height:400px;" class="plotly html-widget"></div>
</div>
<script type="application/json" data-for="htmlwidget-6711">{"x":{"data":[{"x":[31332,32573,35191,36826,39942,45872,46261,53004,54127,56953,58910,68594,69002,72595,72707,73631,74432,76419,78057,78833,83160,86009,86420,87179,90180,90525,90680,92379,92593,93593,93999,96774,99483,99800,101483,102145,102843,103226,103406,103466,103672,104348,104478,104590,105171,106653,107527,108460,109240,110294,112570,113578,114049,116983,117096,117117,117340,117692,118110,118259,118393,118519,120937,121951,122164,122200,122306,122777,123223,125930,125969,126008,126219,127888,128142,128146,128968,129108,129935,129969,130000,130017,130435,131004,131195,132377,134141,134192,134392,137720,138340,139141,139252,139888,140093,140127,140162,140187,141200,141243,141264,141458,141713,143218,145078,145228,145594,145929,145985,146425,147662,147815,149413,149551,149790,150376,151240,151515,152555,152672,154489,155663,156390,156687,156709,157449,157658,157668,157828,158014,158730,159652,159963,160071,160240,161160,161399,163628,163934,165975,166139,166422,167258,167840,168067,168658,169372,170068,170370,170512,170890,171496,171537,171756,172136,172234,172308,172722,173959,174292,175240,175541,175850,177112,177305,177370,178472,179007,179194,179310,179398,180685,181438,181731,182735,182783,184353,184478,185090,185582,186220,186800,186819,187013,187696,188107,188285,188568,188595,189202,189602,190355,190590,192655,193340,193581,193861,194076,194175,194772,195228,195531,196078,196078,196298,198570,199637,201432,202312,202429,202469,202899,203224,203528,205399,206128,206852,207818,208333,209324,209689,209847,210105,213397,214758,214944,215108,215716,216126,216216,216802,217391,218110,218320,218845,219199,219585,219941,220501,220632,220786,220848,223048,224090,224261,225291,225495,226443,227656,228365,228833,229142,229508,229765,230845,232399,232558,233051,233062,233978,233990,234177,234310,234506,239596,241935,242066,242450,243902,244167,246190,249155,250941,255277,256065,256528,259032,259096,259235,260728,261296,263852,266030,267252,268336,268456,268931,269231,271555,272109,273038,276434,276982,278373,278441,279263,281155,283401,283726,286755,286962,287770,290308,291777,292599,294840,295939,298928,300687,302483,307281,311333,312350,314910,314998,315041,315399,317780,318428,318930,326198,326433,326992,327677,328947,331020,332726,338201,338243,343321,345679,351137,352239,355649,357733,358324,359551,359661,362035,362669,367647,369967,374653,389531,398649,406952,408669,408719,411899,420124,424628,428677,430108,431101,455436,457404,465235,474006,476689,492554,495540,510806,517241,538259,542139,544181,544578,564731,578211,606936,612140,627719,675458,727662,757396,786582,959538,1062176,1268959],"y":[0.000191497510532363,0.000214901912627022,0.000170498138728652,0.0002987020040189,0.000275399329027089,0.000152598535054063,0.000259397764855926,0.000113199003848766,0.000221700814750494,0.000210700050919179,0.000271600746902054,0.000204099483919876,0.000188400336222138,0.000110200427026655,0.000178799840455527,0.000217299778625851,0.000268701633705933,9.16002564807182e-005,0.000230600714862216,0.000253700861314424,0.000144300144300144,0.000174400353451383,0.00016199953714418,0.000195001089711972,0.000199600798403194,0.000165700082850041,0.000198500220555801,0.000173199536691239,0.000151199334722927,0.000138899276655305,0.000138299343610038,0.000186000372000744,0.00025129921695164,0.000200400801603206,0.00012810027295212,0.00019580008811004,0.000165300506597435,0.000154999709375545,0.000164400518345164,0.000193300214563238,0.000231499344085192,0.000114999808333653,0.000200999253431344,0.000172100583229754,0.000228199788915195,0.000196900227841692,0.000213899764710259,0.000138299834040199,0.000219699743683632,0.000163200174080186,0.000159900506351603,0.000193699484055011,0.000192899543178809,0.000247899267414924,0.000170800027328004,0.000222000222000222,0.000230100562468042,0.000263399381436291,0.000177800355600711,0.00021140040081516,0.000236500468777715,0.000202499177347092,0.000132300288580004,0.000164000295200531,0.000171900068760028,0.000196399345335516,0.000171700488937583,0.000236200591315963,0.000210999569885492,0.000174700230286667,0.000206399987298462,0.000198400101580852,0.00017430022421347,0.000242399599649693,0.000202899907914657,0.000218500772556303,0.000201600396997705,0.000170399975214549,0.000200100050025013,0.000130800421639006,0.0001,0.000176899943853496,0.000206999655000575,0.000160300448841257,0.000137200350623118,0.0001813003769537,0.00023110011107715,0.000186300226541075,0.000163700220251205,0.000130699970955562,0.000101199942171462,0.000165299947535234,0.000114899606468848,0.000250200160128102,0.000149900423290243,0.000157000435319389,0.000185499636135329,0.000128399922960046,0.000198300283286119,0.000212399906544041,0.000134499943368445,9.19000692785138e-005,0.000162299859575339,0.000118700163387284,0.000192999627786432,0.00019280028644614,0.000130499883236947,0.00013020030288702,9.59002637257252e-005,0.000116100392692505,0.000121900014898891,0.000155599905287014,9.37000127164303e-005,0.00010030023202787,0.000166900327124641,9.30999627600149e-005,0.000165300185136207,0.000184800184800185,0.000131100258923011,0.000196499685600503,0.000239499252373955,0.000186299891432132,0.0002237994756698,0.000178700211249178,0.000204200141663848,0.000247699254996856,0.000133199710766342,0.000209300555597839,0.000158400283853309,0.000177199488652904,0.000126000126000126,0.000206699571568161,0.000218800597638204,0.000224900200536012,0.000199700449326011,0.000124100273020601,0.00014869980607067,0.000213899821546435,0.000164700428221113,0.000144600090375057,0.000126400182979313,0.000204299912271214,0.000197299979672123,0.000184699714013346,0.000166600224910304,0.000142299801966109,0.000141699926788371,0.000205800032928005,0.000135000293478899,0.00019939945575678,0.000169699806893323,0.00016910015393945,0.000157400444219031,0.000157199748480402,0.000185899521308733,0.000191599800271723,0.000162499709821947,0.00016789986220632,0.000189699871808875,0.000137699951805017,0.000176900251084227,0.000170900245526686,0.000170599943133352,0.000146799765120376,0.000169199966160007,0.00016350002818966,0.000179299834147653,0.000122900221779037,0.000200899583691418,0.00014500027884669,0.000172800142699473,0.00016050031823339,0.000143299639546291,0.000209100263576385,0.00015869975647796,0.000169600017507099,0.000222399418506886,0.000157200316568913,0.000194499972986115,0.000140099794161072,0.000161099774460316,0.000160599571734475,0.000192699885985901,0.000192499986631945,0.000191799505583497,0.000164799821378258,0.000191199511379026,0.000169700055152518,0.000222699435297861,0.000216699612054841,0.000163500385017036,0.000157600273173807,0.000167899679941235,0.000166100023357816,0.00018620047584566,0.000196300256740073,0.000123800042298348,0.000195799583668254,0.000175099781125274,0.000195099911691619,0.000184399778720266,0.000178999749400351,0.000142800314160691,0.000193800426360938,0.000178300339280074,0.000251800372664552,0.000165300019535457,0.000223400452758251,0.000138400094902922,0.000123500091390068,0.000202500135823262,0.000275999388858496,0.000142699681140023,0.000147399866357455,0.000170400050633158,0.000179500116432508,0.000154699978728753,0.000202099914348132,0.000124800199680319,0.000210200454797348,0.000138300053889331,0.00012389979365919,0.000199900049975013,0.0001686996536971,0.000181599754141871,0.000195399732023225,0.000199899585324581,0.000129800292977804,0.000120300195256471,0.000166500166500167,0.000110700085792566,0.000151800212520298,0.000151299802851772,0.000210699890069623,0.00016449998857639,0.00013229987363081,0.000168499669831728,0.000136400216421677,0.000167799692518401,0.000167700061641104,0.000185700180265053,0.000113200028979207,0.000161400236720347,0.000142799767950377,0.000196199963435461,0.000137599815349925,0.000217299718397304,0.000136899793767085,0.000237199985943705,0.000166400280253104,0.000174799963292008,0.000170200137905753,0.000183000156857277,0.000191500010880682,0.000203599818059737,0.00014630011316744,0.000176300105780063,0.000188799876421899,0.000184500261732929,0.000196599680311824,0.000162400102568486,0.000158000145189323,0.000119499807946737,0.000179099895098633,0.000158600310522713,0.000210800421600843,0.000185899713301331,0.000235100020622809,0.000180400324720585,0.00018430008969271,0.000170599943133352,0.000236800385302322,0.000159400018331002,0.000203700294190233,0.000148399820358112,0.0002182997567517,0.000146700021618951,0.000181399944422145,0.0001543001523714,0.000184099904881716,0.000183699712203784,0.000151600139472128,0.000146600007517949,0.00025069971412749,0.000167700196768231,0.000163900229460321,0.000141300184805768,0.000181999844000134,0.000147299810351494,0.000191099890117563,0.000146499754612911,0.0001447000007235,0.000104699944400719,0.000140099794161072,0.000125699878968974,0.000168300132849679,0.000131600007113514,0.000172899883910078,0.000186799940787943,0.000219699743683632,0.000160299970030875,0.000208499843625117,0.000223900133651157,0.000113100073000956,0.000174299980519414,0.000162800162800163,0.000145300213895431,0.000177300219450838,0.000116400110413819,0.000221500051242549,0.000149700111624214,0.000160599743682809,0.000208099887946214,0.000155600012702042,0.0002126997631731,0.000196799781615726,0.000161699941978256,0.000248599660142237,0.000147600085419624,0.000194400025083874,0.000196199854076359,0.00012560004656392,0.000168199833635074,0.00017090000213625,0.00016720018726421,0.000187299861035587,0.000219399746337828,0.000130100147545395,0.00018330017177,0.000160199929512031,0.000121500004339286,0.00020220028080208,0.000167499907733102,0.00019119975031562,0.000181699759317703,0.000181400073676338,0.000133499837297073,0.000141800195183798,0.000204400127059538,0.000206800140072628,0.000122400019584003,0.000183800176772523,0.000216200057119521,0.00016430014555966,0.000147999869559437,0.00023590005700918,0.000161499893556888,0.000220200186436158,0.000174800133042323,0.000192800220887167,0.000188400199704212,0.000135300004432242,0.000139499846550169,0.000129899953839124,0.000204199931494217,0.000174900088324545,0.000195600073081346,0.000196200048100657,0.000190900146636486,0.000174600145364772,0.000201800056504016,0.000203599801098656,0.000162400119093421,0.000189499850443745,0.000202899994281909,0.000185600011760793,0.000207500119358476,0.000187699984594435,0.000164299883606504,0.000173000118628653,0.000194399973862188,0.000160900020550597,0.000310900159595415,0.000186899961795449,0.00016900010034381,0.000172899964657213,0.000172999922879552,0.000154400024101467,0.000197799928918113],"text":["Area = Aberdeen<br>Population = 286755<br>Rate = 21.97","Area = Aberdeenshire<br>Population = 358324<br>Rate = 18.14","Area = Adur<br>Population = 134192<br>Rate = 18.63","Area = Allerdale<br>Population = 166422<br>Rate = 20.43","Area = Amber Valley<br>Population = 187013<br>Rate = 19.25","Area = Angus<br>Population = 205399<br>Rate = 17.04","Area = Antrim<br>Population = 56953<br>Rate = 21.07","Area = Ards<br>Population = 102145<br>Rate = 19.58","Area = Argyll & Bute<br>Population = 157449<br>Rate = 24.77","Area = Armagh<br>Population = 69002<br>Rate = 18.84","Area = Arundel<br>Population = 298928<br>Rate = 17.73","Area = Ashfield<br>Population = 202429<br>Rate = 12.35","Area = Ashford<br>Population = 196078<br>Rate = 14.28","Area = Aylesbury Vale<br>Population = 234310<br>Rate = 11.95","Area = Babergh<br>Population = 161160<br>Rate = 12.41","Area = Ballymena<br>Population = 83160<br>Rate = 14.43","Area = Ballymoney<br>Population = 35191<br>Rate = 17.05","Area = Banbridge<br>Population = 58910<br>Rate = 27.16","Area = Barking and Dagenham<br>Population = 178472<br>Rate = 17.93","Area = Barnet<br>Population = 428677<br>Rate = 13.53","Area = Barnsley<br>Population = 314998<br>Rate = 21.27","Area = Barrow-in-Furness<br>Population = 107527<br>Rate = 21.39","Area = Basildon<br>Population = 233051<br>Rate = 18.88","Area = Basingstoke and Dean<br>Population = 203528<br>Rate = 14.74","Area = Bassetlaw<br>Population = 165975<br>Rate = 14.46","Area = Bath<br>Population = 295939<br>Rate = 14.53","Area = Bedford<br>Population = 194772<br>Rate = 19.51","Area = Belfast<br>Population = 317780<br>Rate = 24.86","Area = Bexley<br>Population = 345679<br>Rate = 12.15","Area = Birmingham<br>Population = 1268959<br>Rate = 19.78","Area = Blaby<br>Population = 149413<br>Rate = 9.37","Area = Blackburn<br>Population = 156709<br>Rate = 20.42","Area = Blackpool<br>Population = 261296<br>Rate = 18.37","Area = Bolsover<br>Population = 121951<br>Rate = 16.4","Area = Bolton<br>Population = 359551<br>Rate = 13.35","Area = Boston<br>Population = 103672<br>Rate = 23.15","Area = Bournemouth<br>Population = 307281<br>Rate = 14.97","Area = Bracknell Forest<br>Population = 125969<br>Rate = 20.64","Area = Bradford<br>Population = 606936<br>Rate = 17.3","Area = Braintree<br>Population = 233062<br>Rate = 18.45","Area = Breckland<br>Population = 244167<br>Rate = 18.43","Area = Brent<br>Population = 281155<br>Rate = 13.16","Area = Brentwood<br>Population = 141713<br>Rate = 16.23","Area = Brighton & Hove<br>Population = 352239<br>Rate = 16.75","Area = Bristol<br>Population = 476689<br>Rate = 19.09","Area = Broadland<br>Population = 233978<br>Rate = 19.66","Area = Bromley<br>Population = 492554<br>Rate = 17.46","Area = Bromsgrove<br>Population = 152555<br>Rate = 13.11","Area = Broxbourne<br>Population = 122200<br>Rate = 19.64","Area = Broxtowe<br>Population = 194076<br>Rate = 19.58","Area = Burnley<br>Population = 129108<br>Rate = 17.04","Area = Bury<br>Population = 256065<br>Rate = 14.84","Area = Calderdale<br>Population = 272109<br>Rate = 19.11","Area = Cambridge<br>Population = 141264<br>Rate = 13.45","Area = Camden<br>Population = 171756<br>Rate = 15.72","Area = Cannock Chase<br>Population = 126219<br>Rate = 17.43","Area = Canterbury<br>Population = 291777<br>Rate = 11.31","Area = Carlisle<br>Population = 160240<br>Rate = 19.97","Area = Carrickfergus<br>Population = 46261<br>Rate = 25.94","Area = Castle Point<br>Population = 158730<br>Rate = 12.6","Area = Castlereagh<br>Population = 120937<br>Rate = 13.23","Area = Central Bedfordshire<br>Population = 328947<br>Rate = 16.72","Area = Charnwood<br>Population = 217391<br>Rate = 15.18","Area = Chelmsford<br>Population = 232399<br>Rate = 14.63","Area = Cheltenham<br>Population = 159963<br>Rate = 21.88","Area = Cherwell<br>Population = 188595<br>Rate = 22.27","Area = Cheshire East<br>Population = 627719<br>Rate = 16.09","Area = Cheshire West & Chester<br>Population = 544181<br>Rate = 18.56","Area = Chesterfield<br>Population = 172234<br>Rate = 19.16","Area = Chichester<br>Population = 239596<br>Rate = 15.86","Area = Chiltern<br>Population = 147815<br>Rate = 15.56","Area = Chorley<br>Population = 156687<br>Rate = 17.87","Area = Christchurch<br>Population = 149551<br>Rate = 10.03","Area = Clackmannanshire<br>Population = 73631<br>Rate = 21.73","Area = Colchester<br>Population = 246190<br>Rate = 17.06","Area = Coleraine<br>Population = 86420<br>Rate = 16.2","Area = Congleton<br>Population = 118259<br>Rate = 21.14","Area = Corby<br>Population = 78057<br>Rate = 23.06","Area = Cornwall<br>Population = 1062176<br>Rate = 15.44","Area = Cotswold<br>Population = 152672<br>Rate = 19.65","Area = Coventry<br>Population = 411899<br>Rate = 17.48","Area = Craigavon<br>Population = 99483<br>Rate = 25.13","Area = Craven<br>Population = 110294<br>Rate = 16.32","Area = Crawley<br>Population = 141458<br>Rate = 9.19","Area = Croydon<br>Population = 408669<br>Rate = 16.15","Area = Dacorum<br>Population = 207818<br>Rate = 20.21","Area = Darlington<br>Population = 140093<br>Rate = 14.99","Area = Dartford<br>Population = 138340<br>Rate = 10.12","Area = Daventry<br>Population = 118110<br>Rate = 17.78","Area = Derby<br>Population = 318930<br>Rate = 19.44","Area = Derbyshire Dales<br>Population = 140187<br>Rate = 12.84","Area = Derry<br>Population = 103406<br>Rate = 16.44","Area = Doncaster<br>Population = 455436<br>Rate = 20.42","Area = Dover<br>Population = 202312<br>Rate = 13.84","Area = Down<br>Population = 90680<br>Rate = 19.85","Area = Dudley<br>Population = 495540<br>Rate = 20.18","Area = Dumfries & Galloway<br>Population = 279263<br>Rate = 16.83","Area = Dundee<br>Population = 227656<br>Rate = 23.72","Area = Dungannon<br>Population = 54127<br>Rate = 22.17","Area = Durham<br>Population = 786582<br>Rate = 17.29","Area = Ealing<br>Population = 318428<br>Rate = 14.76","Area = East Ayrshire<br>Population = 181731<br>Rate = 20.91","Area = East Cambridgeshire<br>Population = 145594<br>Rate = 13.05","Area = East Devon<br>Population = 326198<br>Rate = 19.62","Area = East Dorset<br>Population = 225291<br>Rate = 13.76","Area = East Dunbartonshire<br>Population = 151515<br>Rate = 18.48","Area = East Hampshire<br>Population = 172308<br>Rate = 16.25","Area = East Hertfordshire<br>Population = 182735<br>Rate = 15.87","Area = East Lindsey<br>Population = 311333<br>Rate = 16.06","Area = East Lothian<br>Population = 145228<br>Rate = 19.28","Area = East Northamptonshire<br>Population = 130017<br>Rate = 17.69","Area = East Renfrewshire<br>Population = 128968<br>Rate = 20.16","Area = East Riding<br>Population = 578211<br>Rate = 16.43","Area = East Staffordshire<br>Population = 160071<br>Rate = 22.49","Area = Eastbourne<br>Population = 206128<br>Rate = 17.95","Area = Eastleigh<br>Population = 175240<br>Rate = 17.69","Area = Eden<br>Population = 93999<br>Rate = 13.83","Area = Edinburgh<br>Population = 612140<br>Rate = 19.44","Area = Elmbridge<br>Population = 175541<br>Rate = 17.09","Area = Enfield<br>Population = 338243<br>Rate = 18.33","Area = Epping Forest<br>Population = 196298<br>Rate = 17.83","Area = Epsom & Ewell<br>Population = 104590<br>Rate = 17.21","Area = Erewash<br>Population = 177370<br>Rate = 16.35","Area = Exeter<br>Population = 171496<br>Rate = 16.91","Area = Falkirk<br>Population = 202899<br>Rate = 27.6","Area = Fareham<br>Population = 194175<br>Rate = 17.51","Area = Fenland<br>Population = 167258<br>Rate = 19.73","Area = Fermanagh<br>Population = 74432<br>Rate = 26.87","Area = Fife<br>Population = 538259<br>Rate = 18.95","Area = Forest Heath<br>Population = 86009<br>Rate = 17.44","Area = Forest of Dean<br>Population = 143218<br>Rate = 11.87","Area = Fylde<br>Population = 180685<br>Rate = 16.05","Area = Gateshead<br>Population = 315399<br>Rate = 16.17","Area = Gedling<br>Population = 186819<br>Rate = 19.27","Area = Glasgow City<br>Population = 675458<br>Rate = 31.09","Area = Gloucester<br>Population = 168067<br>Rate = 16.66","Area = Gosport<br>Population = 139252<br>Rate = 11.49","Area = Gravesham<br>Population = 145929<br>Rate = 13.02","Area = Great Yarmouth<br>Population = 182783<br>Rate = 16.96","Area = Greenwich<br>Population = 220632<br>Rate = 16.77","Area = Guildford<br>Population = 186220<br>Rate = 16.11","Area = Hackney<br>Population = 171537<br>Rate = 15.74","Area = Halton<br>Population = 139888<br>Rate = 25.02","Area = Hambledon<br>Population = 147662<br>Rate = 12.19","Area = Hammersmith & Fulham<br>Population = 158014<br>Rate = 17.72","Area = Harborough<br>Population = 146425<br>Rate = 11.61","Area = Haringey<br>Population = 187696<br>Rate = 19.18","Area = Harlow<br>Population = 104348<br>Rate = 11.5","Area = Harrogate<br>Population = 268931<br>Rate = 14.13","Area = Harrow<br>Population = 273038<br>Rate = 14.65","Area = Hart<br>Population = 118393<br>Rate = 23.65","Area = Hartlepool<br>Population = 117692<br>Rate = 26.34","Area = Hastings<br>Population = 127888<br>Rate = 24.24","Area = Havant<br>Population = 216126<br>Rate = 12.03","Area = Havering<br>Population = 389531<br>Rate = 16.43","Area = Herefordshire<br>Population = 357733<br>Rate = 18.17","Area = Hertsmere<br>Population = 132377<br>Rate = 18.13","Area = High Peak<br>Population = 126008<br>Rate = 19.84","Area = Highland<br>Population = 332726<br>Rate = 21.94","Area = Hillingdon<br>Population = 327677<br>Rate = 17.09","Area = Hinckley and Bosworth<br>Population = 190590<br>Rate = 16.79","Area = Horsham<br>Population = 213397<br>Rate = 16.87","Area = Hounslow<br>Population = 224261<br>Rate = 19.62","Area = Hull<br>Population = 315041<br>Rate = 19.68","Area = Huntingdonshire<br>Population = 226443<br>Rate = 13.69","Area = Hyndburn<br>Population = 105171<br>Rate = 22.82","Area = Inverclyde<br>Population = 117117<br>Rate = 22.2","Area = Ipswich<br>Population = 163628<br>Rate = 21.39","Area = Isle of Wight<br>Population = 268456<br>Rate = 16.39","Area = Islington<br>Population = 149790<br>Rate = 16.69","Area = Kensington & Chelsea<br>Population = 224090<br>Rate = 14.28","Area = Kettering<br>Population = 129969<br>Rate = 13.08","Area = Kings Lynn and West Norfolk<br>Population = 269231<br>Rate = 18.2","Area = Kingston upon Thames<br>Population = 208333<br>Rate = 12.48","Area = Kirklees<br>Population = 517241<br>Rate = 16.24","Area = Knowsley<br>Population = 201432<br>Rate = 22.34","Area = Lambeth<br>Population = 228365<br>Rate = 16.64","Area = Lancaster<br>Population = 214758<br>Rate = 18.16","Area = Larne<br>Population = 39942<br>Rate = 27.54","Area = Leeds<br>Population = 959538<br>Rate = 17.3","Area = Leicester<br>Population = 331020<br>Rate = 18.73","Area = Lewes<br>Population = 209847<br>Rate = 12.39","Area = Lewisham<br>Population = 242066<br>Rate = 18.59","Area = Lichfield<br>Population = 154489<br>Rate = 23.95","Area = Limavady<br>Population = 32573<br>Rate = 21.49","Area = Lincoln<br>Population = 137720<br>Rate = 13.07","Area = Lisburn<br>Population = 141200<br>Rate = 19.83","Area = Liverpool<br>Population = 544578<br>Rate = 20.75","Area = Luton<br>Population = 219199<br>Rate = 13.23","Area = Magherafelt<br>Population = 45872<br>Rate = 15.26","Area = Maidstone<br>Population = 220848<br>Rate = 11.32","Area = Maldon<br>Population = 102843<br>Rate = 16.53","Area = Malvern Hills<br>Population = 161399<br>Rate = 14.87","Area = Manchester<br>Population = 457404<br>Rate = 17.49","Area = Mansfield<br>Population = 129935<br>Rate = 20.01","Area = Medway<br>Population = 312350<br>Rate = 20.81","Area = Melton<br>Population = 87179<br>Rate = 19.5","Area = Mendip<br>Population = 185090<br>Rate = 19.45","Area = Merton<br>Population = 234506<br>Rate = 17.91","Area = Mid Devon<br>Population = 128142<br>Rate = 20.29","Area = Mid Suffolk<br>Population = 170890<br>Rate = 16.97","Area = Mid Sussex<br>Population = 218320<br>Rate = 21.07","Area = Middlesbrough<br>Population = 177112<br>Rate = 14.68","Area = Midlothian<br>Population = 117096<br>Rate = 17.08","Area = Milton Keynes<br>Population = 249155<br>Rate = 23.68","Area = Mole Valley<br>Population = 145078<br>Rate = 19.3","Area = Moray<br>Population = 141243<br>Rate = 21.24","Area = New Forest<br>Population = 431101<br>Rate = 12.99","Area = Newark and Sherwood<br>Population = 193340<br>Rate = 18.62","Area = Newcastle<br>Population = 355649<br>Rate = 19.12","Area = Newcatle-under-Lyme<br>Population = 190355<br>Rate = 15.76","Area = Newham<br>Population = 193581<br>Rate = 19.63","Area = Newry and Mourne<br>Population = 106653<br>Rate = 19.69","Area = Newtownabbey<br>Population = 112570<br>Rate = 15.99","Area = North Ayrshire<br>Population = 209324<br>Rate = 21.02","Area = North Devon<br>Population = 184478<br>Rate = 15.72","Area = North Dorset<br>Population = 140162<br>Rate = 18.55","Area = North Down<br>Population = 125930<br>Rate = 17.47","Area = North East Derbyshire<br>Population = 159652<br>Rate = 20.67","Area = North East Lincolnshire<br>Population = 259235<br>Rate = 15.43","Area = North Hertfordshire<br>Population = 188285<br>Rate = 19.12","Area = North Kesteven<br>Population = 179194<br>Rate = 20.09","Area = North Lanarkshire<br>Population = 406952<br>Rate = 23.59","Area = North Lincolnshire<br>Population = 250941<br>Rate = 15.94","Area = North Norfolk<br>Population = 256528<br>Rate = 21.83","Area = North Somerset<br>Population = 367647<br>Rate = 12.24","Area = North Tyneside<br>Population = 287770<br>Rate = 20.85","Area = North Warwickshire<br>Population = 92379<br>Rate = 17.32","Area = North West Leicestershire<br>Population = 139141<br>Rate = 16.53","Area = Northampton<br>Population = 283401<br>Rate = 17.29","Area = Northumberland<br>Population = 564731<br>Rate = 18.77","Area = Norwich<br>Population = 172136<br>Rate = 18.59","Area = Nottingham<br>Population = 302483<br>Rate = 22.15","Area = Nuneaton & Bedworth<br>Population = 170370<br>Rate = 13.5","Area = Oadby and Wigston<br>Population = 90525<br>Rate = 16.57","Area = Oldham<br>Population = 300687<br>Rate = 11.64","Area = Omagh<br>Population = 72707<br>Rate = 17.88","Area = Orkney Islands<br>Population = 36826<br>Rate = 29.87","Area = Oxford<br>Population = 157658<br>Rate = 13.32","Area = Pendle<br>Population = 113578<br>Rate = 19.37","Area = Perth & Kinross<br>Population = 259096<br>Rate = 18.14","Area = Peterborough<br>Population = 209689<br>Rate = 13.83","Area = Plymouth<br>Population = 398649<br>Rate = 14.8","Area = Poole<br>Population = 229508<br>Rate = 18.3","Area = Portsmouth<br>Population = 266030<br>Rate = 14.66","Area = Preston<br>Population = 179398<br>Rate = 17.28","Area = Purbeck<br>Population = 78833<br>Rate = 25.37","Area = Reading<br>Population = 179007<br>Rate = 12.29","Area = Redbridge<br>Population = 338201<br>Rate = 13.01","Area = Redcar & Cleveland<br>Population = 215108<br>Rate = 19.99","Area = Redditch<br>Population = 103466<br>Rate = 19.33","Area = Reigate and Banstead<br>Population = 216216<br>Rate = 16.65","Area = Renfrewshire<br>Population = 230845<br>Rate = 20.36","Area = Ribble Valley<br>Population = 96774<br>Rate = 18.6","Area = Richmond upon Thames<br>Population = 215716<br>Rate = 12.98","Area = Richmondshire<br>Population = 68594<br>Rate = 20.41","Area = Rochdale<br>Population = 276434<br>Rate = 14.47","Area = Rochford<br>Population = 150376<br>Rate = 9.31","Area = Rossendale<br>Population = 76419<br>Rate = 9.16","Area = Rother<br>Population = 225495<br>Rate = 21.73","Area = Rotherham<br>Population = 369967<br>Rate = 18.38","Area = Rugby<br>Population = 140127<br>Rate = 15.7","Area = Runnymede<br>Population = 134141<br>Rate = 23.11","Area = Rushcliffe<br>Population = 177305<br>Rate = 16.92","Area = Rushmore<br>Population = 104478<br>Rate = 20.1","Area = Rutland<br>Population = 72595<br>Rate = 11.02","Area = Ryedale<br>Population = 103226<br>Rate = 15.5","Area = Salford<br>Population = 290308<br>Rate = 22.39","Area = Sandwell<br>Population = 374653<br>Rate = 21.62","Area = Scarborough<br>Population = 229765<br>Rate = 19.15","Area = Scottish Borders<br>Population = 198570<br>Rate = 25.18","Area = Sedgemoor<br>Population = 195228<br>Rate = 18.44","Area = Sefton<br>Population = 465235<br>Rate = 19.56","Area = Selby<br>Population = 123223<br>Rate = 21.1","Area = Sevenoaks<br>Population = 186800<br>Rate = 16.06","Area = Sheffield<br>Population = 757396<br>Rate = 16.9","Area = Shepway<br>Population = 195531<br>Rate = 17.9","Area = Shetland Islands<br>Population = 31332<br>Rate = 19.15","Area = Shropshire<br>Population = 510806<br>Rate = 20.36","Area = Slough<br>Population = 134392<br>Rate = 16.37","Area = Solihull<br>Population = 326992<br>Rate = 16.82","Area = South Ayrshire<br>Population = 219941<br>Rate = 13.64","Area = South Bucks<br>Population = 145985<br>Rate = 9.59","Area = South Cambridgeshire<br>Population = 220501<br>Rate = 16.78","Area = South Derbyshire<br>Population = 130435<br>Rate = 20.7","Area = South Gloucestershire<br>Population = 359661<br>Rate = 14.18","Area = South Hams<br>Population = 170068<br>Rate = 20.58","Area = South Holland<br>Population = 167840<br>Rate = 18.47","Area = South Kesteven<br>Population = 218110<br>Rate = 15.13","Area = South Lakelannd<br>Population = 220786<br>Rate = 18.57","Area = South Lanarkshire<br>Population = 424628<br>Rate = 18.84","Area = South Norfolk<br>Population = 233990<br>Rate = 16.24","Area = South Northamptonshire<br>Population = 117340<br>Rate = 23.01","Area = South Oxfordshire<br>Population = 196078<br>Rate = 19.38","Area = South Ribble<br>Population = 174292<br>Rate = 13.77","Area = South Somerset<br>Population = 294840<br>Rate = 16.28","Area = South Staffordshire<br>Population = 181438<br>Rate = 14.33","Area = South Tyneside<br>Population = 242450<br>Rate = 23.51","Area = Southampton<br>Population = 267252<br>Rate = 25.07","Area = Southend-on-Sea<br>Population = 286962<br>Rate = 16.03","Area = Southwark<br>Population = 214944<br>Rate = 19.54","Area = Spelthorne<br>Population = 169372<br>Rate = 14.17","Area = St Albans<br>Population = 192655<br>Rate = 16.61","Area = St Edmundsbury<br>Population = 173959<br>Rate = 18.97","Area = St Helens<br>Population = 255277<br>Rate = 20.37","Area = Stafford<br>Population = 206852<br>Rate = 15.47","Area = Staffordshire Moorlands<br>Population = 168658<br>Rate = 14.23","Area = Stevenage<br>Population = 99800<br>Rate = 20.04","Area = Stirling<br>Population = 130000<br>Rate = 10","Area = Stockport<br>Population = 430108<br>Rate = 13.95","Area = Stockton-on-Tees<br>Population = 260728<br>Rate = 18.41","Area = Stoke-on-Trent<br>Population = 351137<br>Rate = 20.22","Area = Strabane<br>Population = 53004<br>Rate = 11.32","Area = Stratford on Avon<br>Population = 216802<br>Rate = 11.07","Area = Stroud<br>Population = 188107<br>Rate = 16.48","Area = Suffolk Coastal<br>Population = 232558<br>Rate = 17.63","Area = Sunderland<br>Population = 408719<br>Rate = 22.02","Area = Surrey Heath<br>Population = 109240<br>Rate = 21.97","Area = Sutton<br>Population = 259032<br>Rate = 14.67","Area = Swale<br>Population = 184353<br>Rate = 22.24","Area = Swindon<br>Population = 243902<br>Rate = 18.04","Area = Tameside<br>Population = 292599<br>Rate = 17.43","Area = Tamworth<br>Population = 90180<br>Rate = 19.96","Area = Tandridge<br>Population = 118519<br>Rate = 20.25","Area = Taunton Deane<br>Population = 199637<br>Rate = 16.53","Area = Teignbridge<br>Population = 271555<br>Rate = 14.73","Area = Telford & Wrekin<br>Population = 202469<br>Rate = 20.25","Area = Tendring<br>Population = 343321<br>Rate = 16.02","Area = Test Valley<br>Population = 185582<br>Rate = 14.01","Area = Tewkesbury<br>Population = 122306<br>Rate = 17.17","Area = Thanet<br>Population = 278373<br>Rate = 14.01","Area = Three Rivers<br>Population = 131195<br>Rate = 13.72","Area = Thurrock<br>Population = 175850<br>Rate = 17.06","Area = Tonbridge and Malling<br>Population = 157828<br>Rate = 15.84","Area = Torbay<br>Population = 278441<br>Rate = 12.57","Area = Torridge<br>Population = 122164<br>Rate = 17.19","Area = Tower Hamlets<br>Population = 170512<br>Rate = 19.94","Area = Trafford<br>Population = 326433<br>Rate = 12.56","Area = Tunbridge Wells<br>Population = 151240<br>Rate = 16.53","Area = Uttlesford<br>Population = 114049<br>Rate = 19.29","Area = Vale of White Horse<br>Population = 189602<br>Rate = 16.35","Area = Wakefield<br>Population = 474006<br>Rate = 19.62","Area = Walsall<br>Population = 362035<br>Rate = 20.44","Area = Waltham Forest<br>Population = 219585<br>Rate = 16.85","Area = Wandsworth<br>Population = 241935<br>Rate = 21.08","Area = Warrington<br>Population = 268336<br>Rate = 16.77","Area = Warwick<br>Population = 188568<br>Rate = 16.97","Area = Watford<br>Population = 92593<br>Rate = 15.12","Area = Waveney<br>Population = 210105<br>Rate = 19.99","Area = Waverley<br>Population = 218845<br>Rate = 16.45","Area = Wealden<br>Population = 283726<br>Rate = 18.68","Area = Wellingborough<br>Population = 101483<br>Rate = 12.81","Area = Welwyn Hatfield<br>Population = 156390<br>Rate = 22.38","Area = West Berkshire<br>Population = 203224<br>Rate = 14.27","Area = West Devon<br>Population = 108460<br>Rate = 13.83","Area = West Dorset<br>Population = 263852<br>Rate = 15.16","Area = West Dunbartonshire<br>Population = 131004<br>Rate = 16.03","Area = West Lancashire<br>Population = 179310<br>Rate = 14.5","Area = West Lindsey<br>Population = 128146<br>Rate = 21.85","Area = West Lothian<br>Population = 189202<br>Rate = 21.67","Area = West Oxfordshire<br>Population = 172722<br>Rate = 16.79","Area = West Somerset<br>Population = 93593<br>Rate = 13.89","Area = Westminster<br>Population = 276982<br>Rate = 10.47","Area = Weymouth<br>Population = 155663<br>Rate = 18.63","Area = Wigan<br>Population = 420124<br>Rate = 19.28","Area = Wiltshire<br>Population = 727662<br>Rate = 18.69","Area = Winchester<br>Population = 166139<br>Rate = 12.64","Area = Windsor & Maidenhead<br>Population = 229142<br>Rate = 17.02","Area = Wirral<br>Population = 542139<br>Rate = 20.29","Area = Woking<br>Population = 122777<br>Rate = 23.62","Area = Wokingham<br>Population = 193861<br>Rate = 12.38","Area = Wolverhampton<br>Population = 362669<br>Rate = 20.68","Area = Worcester<br>Population = 116983<br>Rate = 24.79","Area = Worthing<br>Population = 163934<br>Rate = 16.47","Area = Wychavon<br>Population = 223048<br>Rate = 16.14","Area = Wycombe<br>Population = 234177<br>Rate = 15.8","Area = Wyre<br>Population = 228833<br>Rate = 17.48","Area = Wyre Forest<br>Population = 157668<br>Rate = 20.93","Area = York<br>Population = 314910<br>Rate = 15.56"],"key":null,"type":"scatter","mode":"markers","marker":{"autocolorscale":false,"color":"rgba(255,165,0,0.1098)","opacity":1,"size":18.1417322834646,"symbol":"circle","line":{"width":1.88976377952756,"color":"rgba(255,165,0,0.1098)"}},"hoveron":"points","showlegend":false,"xaxis":"x","yaxis":"y","hoverinfo":"text","name":""},{"x":[31332,32332,33332,34332,35332,36332,37332,38332,39332,40332,41332,42332,43332,44332,45332,46332,47332,48332,49332,50332,51332,52332,53332,54332,55332,56332,57332,58332,59332,60332,61332,62332,63332,64332,65332,66332,67332,68332,69332,70332,71332,72332,73332,74332,75332,76332,77332,78332,79332,80332,81332,82332,83332,84332,85332,86332,87332,88332,89332,90332,91332,92332,93332,94332,95332,96332,97332,98332,99332,100332,101332,102332,103332,104332,105332,106332,107332,108332,109332,110332,111332,112332,113332,114332,115332,116332,117332,118332,119332,120332,121332,122332,123332,124332,125332,126332,127332,128332,129332,130332,131332,132332,133332,134332,135332,136332,137332,138332,139332,140332,141332,142332,143332,144332,145332,146332,147332,148332,149332,150332,151332,152332,153332,154332,155332,156332,157332,158332,159332,160332,161332,162332,163332,164332,165332,166332,167332,168332,169332,170332,171332,172332,173332,174332,175332,176332,177332,178332,179332,180332,181332,182332,183332,184332,185332,186332,187332,188332,189332,190332,191332,192332,193332,194332,195332,196332,197332,198332,199332,200332,201332,202332,203332,204332,205332,206332,207332,208332,209332,210332,211332,212332,213332,214332,215332,216332,217332,218332,219332,220332,221332,222332,223332,224332,225332,226332,227332,228332,229332,230332,231332,232332,233332,234332,235332,236332,237332,238332,239332,240332,241332,242332,243332,244332,245332,246332,247332,248332,249332,250332,251332,252332,253332,254332,255332,256332,257332,258332,259332,260332,261332,262332,263332,264332,265332,266332,267332,268332,269332,270332,271332,272332,273332,274332,275332,276332,277332,278332,279332,280332,281332,282332,283332,284332,285332,286332,287332,288332,289332,290332,291332,292332,293332,294332,295332,296332,297332,298332,299332,300332,301332,302332,303332,304332,305332,306332,307332,308332,309332,310332,311332,312332,313332,314332,315332,316332,317332,318332,319332,320332,321332,322332,323332,324332,325332,326332,327332,328332,329332,330332,331332,332332,333332,334332,335332,336332,337332,338332,339332,340332,341332,342332,343332,344332,345332,346332,347332,348332,349332,350332,351332,352332,353332,354332,355332,356332,357332,358332,359332,360332,361332,362332,363332,364332,365332,366332,367332,368332,369332,370332,371332,372332,373332,374332,375332,376332,377332,378332,379332,380332,381332,382332,383332,384332,385332,386332,387332,388332,389332,390332,391332,392332,393332,394332,395332,396332,397332,398332,399332,400332,401332,402332,403332,404332,405332,406332,407332,408332,409332,410332,411332,412332,413332,414332,415332,416332,417332,418332,419332,420332,421332,422332,423332,424332,425332,426332,427332,428332,429332,430332,431332,432332,433332,434332,435332,436332,437332,438332,439332,440332,441332,442332,443332,444332,445332,446332,447332,448332,449332,450332,451332,452332,453332,454332,455332,456332,457332,458332,459332,460332,461332,462332,463332,464332,465332,466332,467332,468332,469332,470332,471332,472332,473332,474332,475332,476332,477332,478332,479332,480332,481332,482332,483332,484332,485332,486332,487332,488332,489332,490332,491332,492332,493332,494332,495332,496332,497332,498332,499332,500332,501332,502332,503332,504332,505332,506332,507332,508332,509332,510332,511332,512332,513332,514332,515332,516332,517332,518332,519332,520332,521332,522332,523332,524332,525332,526332,527332,528332,529332,530332,531332,532332,533332,534332,535332,536332,537332,538332,539332,540332,541332,542332,543332,544332,545332,546332,547332,548332,549332,550332,551332,552332,553332,554332,555332,556332,557332,558332,559332,560332,561332,562332,563332,564332,565332,566332,567332,568332,569332,570332,571332,572332,573332,574332,575332,576332,577332,578332,579332,580332,581332,582332,583332,584332,585332,586332,587332,588332,589332,590332,591332,592332,593332,594332,595332,596332,597332,598332,599332,600332,601332,602332,603332,604332,605332,606332,607332,608332,609332,610332,611332,612332,613332,614332,615332,616332,617332,618332,619332,620332,621332,622332,623332,624332,625332,626332,627332,628332,629332,630332,631332,632332,633332,634332,635332,636332,637332,638332,639332,640332,641332,642332,643332,644332,645332,646332,647332,648332,649332,650332,651332,652332,653332,654332,655332,656332,657332,658332,659332,660332,661332,662332,663332,664332,665332,666332,667332,668332,669332,670332,671332,672332,673332,674332,675332,676332,677332,678332,679332,680332,681332,682332,683332,684332,685332,686332,687332,688332,689332,690332,691332,692332,693332,694332,695332,696332,697332,698332,699332,700332,701332,702332,703332,704332,705332,706332,707332,708332,709332,710332,711332,712332,713332,714332,715332,716332,717332,718332,719332,720332,721332,722332,723332,724332,725332,726332,727332,728332,729332,730332,731332,732332,733332,734332,735332,736332,737332,738332,739332,740332,741332,742332,743332,744332,745332,746332,747332,748332,749332,750332,751332,752332,753332,754332,755332,756332,757332,758332,759332,760332,761332,762332,763332,764332,765332,766332,767332,768332,769332,770332,771332,772332,773332,774332,775332,776332,777332,778332,779332,780332,781332,782332,783332,784332,785332,786332,787332,788332,789332,790332,791332,792332,793332,794332,795332,796332,797332,798332,799332,800332,801332,802332,803332,804332,805332,806332,807332,808332,809332,810332,811332,812332,813332,814332,815332,816332,817332,818332,819332,820332,821332,822332,823332,824332,825332,826332,827332,828332,829332,830332,831332,832332,833332,834332,835332,836332,837332,838332,839332,840332,841332,842332,843332,844332,845332,846332,847332,848332,849332,850332,851332,852332,853332,854332,855332,856332,857332,858332,859332,860332,861332,862332,863332,864332,865332,866332,867332,868332,869332,870332,871332,872332,873332,874332,875332,876332,877332,878332,879332,880332,881332,882332,883332,884332,885332,886332,887332,888332,889332,890332,891332,892332,893332,894332,895332,896332,897332,898332,899332,900332,901332,902332,903332,904332,905332,906332,907332,908332,909332,910332,911332,912332,913332,914332,915332,916332,917332,918332,919332,920332,921332,922332,923332,924332,925332,926332,927332,928332,929332,930332,931332,932332,933332,934332,935332,936332,937332,938332,939332,940332,941332,942332,943332,944332,945332,946332,947332,948332,949332,950332,951332,952332,953332,954332,955332,956332,957332,958332,959332,960332,961332,962332,963332,964332,965332,966332,967332,968332,969332,970332,971332,972332,973332,974332,975332,976332,977332,978332,979332,980332,981332,982332,983332,984332,985332,986332,987332,988332,989332,990332,991332,992332,993332,994332,995332,996332,997332,998332,999332,1000332,1001332,1002332,1003332,1004332,1005332,1006332,1007332,1008332,1009332,1010332,1011332,1012332,1013332,1014332,1015332,1016332,1017332,1018332,1019332,1020332,1021332,1022332,1023332,1024332,1025332,1026332,1027332,1028332,1029332,1030332,1031332,1032332,1033332,1034332,1035332,1036332,1037332,1038332,1039332,1040332,1041332,1042332,1043332,1044332,1045332,1046332,1047332,1048332,1049332,1050332,1051332,1052332,1053332,1054332,1055332,1056332,1057332,1058332,1059332,1060332,1061332,1062332,1063332,1064332,1065332,1066332,1067332,1068332,1069332,1070332,1071332,1072332,1073332,1074332,1075332,1076332,1077332,1078332,1079332,1080332,1081332,1082332,1083332,1084332,1085332,1086332,1087332,1088332,1089332,1090332,1091332,1092332,1093332,1094332,1095332,1096332,1097332,1098332,1099332,1100332,1101332,1102332,1103332,1104332,1105332,1106332,1107332,1108332,1109332,1110332,1111332,1112332,1113332,1114332,1115332,1116332,1117332,1118332,1119332,1120332,1121332,1122332,1123332,1124332,1125332,1126332,1127332,1128332,1129332,1130332,1131332,1132332,1133332,1134332,1135332,1136332,1137332,1138332,1139332,1140332,1141332,1142332,1143332,1144332,1145332,1146332,1147332,1148332,1149332,1150332,1151332,1152332,1153332,1154332,1155332,1156332,1157332,1158332,1159332,1160332,1161332,1162332,1163332,1164332,1165332,1166332,1167332,1168332,1169332,1170332,1171332,1172332,1173332,1174332,1175332,1176332,1177332,1178332,1179332,1180332,1181332,1182332,1183332,1184332,1185332,1186332,1187332,1188332,1189332,1190332,1191332,1192332,1193332,1194332,1195332,1196332,1197332,1198332,1199332,1200332,1201332,1202332,1203332,1204332,1205332,1206332,1207332,1208332,1209332,1210332,1211332,1212332,1213332,1214332,1215332,1216332,1217332,1218332,1219332,1220332,1221332,1222332,1223332,1224332,1225332,1226332,1227332,1228332,1229332,1230332,1231332,1232332,1233332,1234332,1235332,1236332,1237332,1238332,1239332,1240332,1241332,1242332,1243332,1244332,1245332,1246332,1247332,1248332,1249332,1250332,1251332,1252332,1253332,1254332,1255332,1256332,1257332,1258332,1259332,1260332,1261332,1262332,1263332,1264332,1265332,1266332,1267332,1268332],"y":[0.000119949765845753,0.000120723064594673,0.000121461297110178,0.000122167035923744,0.000122842596873794,0.000123490071125427,0.000124111352439978,0.000124708160505363,0.00012528206098253,0.00012583448280066,0.000126366733136512,0.000126880010435688,0.000127375415771298,0.000127853962785226,0.000128316586416383,0.000128764150587084,0.000129197454991408,0.000129617241106948,0.000130024197532823,0.00013041896474141,0.000130802139318386,0.000131174277754978,0.000131535899847232,0.000131887491749565,0.000132229508723378,0.000132562377616087,0.000132886499101276,0.000133202249706703,0.000133509983653498,0.000133810034526989,0.000134102716797067,0.000134388327203851,0.000134667146022528,0.000134939438219632,0.000135205454511594,0.000135465432335191,0.000135719596738416,0.000135968161199382,0.000136211328380018,0.000136449290820618,0.000136682231580639,0.000136910324830612,0.000137133736399493,0.000137352624281385,0.000137567139105135,0.00013777742456998,0.000137983617850112,0.000138185849970744,0.000138384246158011,0.000138578926164855,0.000138770004574788,0.000138957591085312,0.000139141790772564,0.000139322704338663,0.000139500428343056,0.000139675055419088,0.000139846674476888,0.000140015370893593,0.000140181226691823,0.000140344320707257,0.000140504728746091,0.000140662523733095,0.000140817775850915,0.000140970552671234,0.000141120919278347,0.000141268938385659,0.000141414670445588,0.000141558173753297,0.000141699504544675,0.000141838717088931,0.000141975863776148,0.00014211099520012,0.000142244160236772,0.000142375406118435,0.000142504778504227,0.000142632321546795,0.000142758077955623,0.000142882089057118,0.00014300439485167,0.000143125034067856,0.000143244044213964,0.000143361461626989,0.000143477321519242,0.000143591658022717,0.000143704504231333,0.000143815892241175,0.000143925853188851,0.000144034417288051,0.000144141613864429,0.000144247471388881,0.00014435201750931,0.000144455279080964,0.000144557282195418,0.000144658052208268,0.000144757613765612,0.000144855990829368,0.000144953206701506,0.000145049284047235,0.000145144244917197,0.000145238110768733,0.000145330902486248,0.000145422640400731,0.000145513344308468,0.00014560303348899,0.000145691726722288,0.000145779442305326,0.000145866198067908,0.000145952011387892,0.00014603689920582,0.000146120878038965,0.000146203963994829,0.000146286172784125,0.000146367519733255,0.000146448019796311,0.000146527687566628,0.000146606537287892,0.000146684582864839,0.000146761837873558,0.000146838315571408,0.000146914028906576,0.000146988990527287,0.000147063212790678,0.000147136707771355,0.000147209487269645,0.000147281562819556,0.000147352945696453,0.000147423646924468,0.000147493677283655,0.000147563047316889,0.000147631767336538,0.000147699847430898,0.00014776729747042,0.000147834127113716,0.00014790034581337,0.000147965962821556,0.000148030987195467,0.000148095427802566,0.000148159293325667,0.000148222592267847,0.000148285332957204,0.000148347523551457,0.000148409172042405,0.000148470286260238,0.000148530873877714,0.000148590942414209,0.000148650499239633,0.000148709551578231,0.000148768106512262,0.000148826170985569,0.000148883751807034,0.000148940855653936,0.000148997489075203,0.000149053658494563,0.000149109370213611,0.00014916463041477,0.000149219445164181,0.000149273820414497,0.000149327762007597,0.000149381275677222,0.000149434367051539,0.000149487041655623,0.000149539304913876,0.000149591162152368,0.000149642618601124,0.000149693679396333,0.000149744349582506,0.000149794634114565,0.000149844537859885,0.000149894065600264,0.000149943222033856,0.000149992011777038,0.000150040439366232,0.000150088509259678,0.000150136225839156,0.000150183593411665,0.000150230616211057,0.000150277298399623,0.000150323644069643,0.000150369657244895,0.000150415341882117,0.00015046070187244,0.000150505741042781,0.000150550463157194,0.000150594871918198,0.000150638970968059,0.000150682763890048,0.000150726254209662,0.000150769445395818,0.000150812340862014,0.000150854943967462,0.000150897258018193,0.000150939286268137,0.000150981031920169,0.000151022498127138,0.000151063687992869,0.000151104604573133,0.000151145250876603,0.000151185629865784,0.000151225744457918,0.00015126559752587,0.00015130519189899,0.000151344530363962,0.000151383615665622,0.000151422450507767,0.000151461037553937,0.000151499379428185,0.000151537478715824,0.000151575337964163,0.000151612959683217,0.000151650346346412,0.000151687500391262,0.000151724424220043,0.000151761120200439,0.000151797590666183,0.000151833837917682,0.000151869864222622,0.000151905671816567,0.000151941262903543,0.000151976639656603,0.000152011804218389,0.000152046758701674,0.000152081505189898,0.000152116045737686,0.000152150382371361,0.000152184517089444,0.000152218451863139,0.000152252188636814,0.000152285729328469,0.000152319075830194,0.000152352230008613,0.000152385193705329,0.000152417968737352,0.000152450556897517,0.000152482959954897,0.000152515179655209,0.000152547217721206,0.000152579075853066,0.000152610755728767,0.000152642259004466,0.000152673587314853,0.000152704742273515,0.000152735725473281,0.000152766538486565,0.000152797182865703,0.000152827660143278,0.000152857971832444,0.000152888119427242,0.00015291810440291,0.000152947928216181,0.000152977592305587,0.000153007098091747,0.000153036446977654,0.000153065640348953,0.000153094679574219,0.000153123566005221,0.000153152300977196,0.000153180885809096,0.000153209321803854,0.000153237610248625,0.000153265752415033,0.000153293749559415,0.00015332160292305,0.000153349313732396,0.000153376883199312,0.000153404312521286,0.000153431602881648,0.000153458755449788,0.000153485771381364,0.000153512651818512,0.000153539397890045,0.000153566010711654,0.000153592491386105,0.000153618841003426,0.000153645060641101,0.000153671151364253,0.000153697114225824,0.000153722950266756,0.000153748660516165,0.000153774245991513,0.000153799707698779,0.00015382504663262,0.000153850263776543,0.000153875360103056,0.000153900336573833,0.000153925194139862,0.000153949933741603,0.000153974556309135,0.000153999062762302,0.000154023454010859,0.000154047730954612,0.00015407189448356,0.000154095945478029,0.00015411988480881,0.000154143713337288,0.000154167431915576,0.000154191041386637,0.000154214542584418,0.000154237936333967,0.000154261223451557,0.000154284404744808,0.000154307481012798,0.000154330453046188,0.000154353321627327,0.00015437608753037,0.000154398751521384,0.00015442131435846,0.000154443776791816,0.000154466139563904,0.000154488403409512,0.000154510569055867,0.000154532637222732,0.000154554608622506,0.000154576483960322,0.000154598263934138,0.000154619949234835,0.000154641540546306,0.000154663038545547,0.000154684443902748,0.000154705757281379,0.000154726979338275,0.000154748110723727,0.000154769152081558,0.000154790104049209,0.000154810967257823,0.000154831742332319,0.000154852429891475,0.000154873030548003,0.000154893544908626,0.000154913973574156,0.000154934317139561,0.000154954576194045,0.000154974751321114,0.000154994843098653,0.000155014852098987,0.000155034778888957,0.000155054624029985,0.000155074388078138,0.000155094071584197,0.000155113675093719,0.000155133199147103,0.000155152644279649,0.000155172011021624,0.000155191299898317,0.000155210511430105,0.00015522964613251,0.000155248704516253,0.000155267687087317,0.000155286594347001,0.000155305426791974,0.000155324184914332,0.000155342869201654,0.000155361480137048,0.000155380018199211,0.000155398483862478,0.000155416877596872,0.000155435199868155,0.000155453451137877,0.000155471631863426,0.000155489742498077,0.000155507783491035,0.000155525755287488,0.000155543658328647,0.000155561493051796,0.000155579259890336,0.000155596959273827,0.000155614591628033,0.000155632157374968,0.000155649656932932,0.000155667090716559,0.000155684459136854,0.000155701762601236,0.000155719001513578,0.000155736176274247,0.000155753287280139,0.000155770334924723,0.000155787319598078,0.000155804241686926,0.000155821101574674,0.000155837899641449,0.000155854636264133,0.000155871311816399,0.000155887926668746,0.000155904481188535,0.000155920975740022,0.000155937410684389,0.000155953786379783,0.000155970103181344,0.000155986361441238,0.000156002561508691,0.000156018703730021,0.000156034788448664,0.00015605081600521,0.000156066786737432,0.000156082700980313,0.000156098559066082,0.000156114361324234,0.000156130108081567,0.000156145799662207,0.000156161436387634,0.000156177018576713,0.000156192546545722,0.000156208020608373,0.000156223441075846,0.000156238808256811,0.000156254122457455,0.000156269383981507,0.000156284593130264,0.000156299750202617,0.000156314855495072,0.000156329909301779,0.000156344911914554,0.000156359863622901,0.000156374764714039,0.000156389615472921,0.000156404416182262,0.000156419167122557,0.000156433868572105,0.000156448520807032,0.000156463124101312,0.000156477678726787,0.000156492184953193,0.000156506643048173,0.000156521053277308,0.000156535415904126,0.000156549731190134,0.000156563999394827,0.000156578220775717,0.000156592395588347,0.00015660652408631,0.000156620606521274,0.000156634643142991,0.000156648634199327,0.00015666257993627,0.000156676480597957,0.000156690336426683,0.000156704147662928,0.000156717914545367,0.000156731637310892,0.000156745316194626,0.000156758951429943,0.000156772543248482,0.000156786091880166,0.000156799597553214,0.000156813060494163,0.00015682648092788,0.000156839859077579,0.000156853195164836,0.000156866489409606,0.000156879742030237,0.000156892953243482,0.000156906123264522,0.000156919252306973,0.000156932340582902,0.000156945388302846,0.00015695839567582,0.000156971362909336,0.000156984290209414,0.000156997177780598,0.000157010025825964,0.000157022834547144,0.000157035604144328,0.000157048334816284,0.000157061026760368,0.000157073680172541,0.000157086295247375,0.00015709887217807,0.000157111411156469,0.000157123912373061,0.000157136376017005,0.000157148802276133,0.000157161191336965,0.000157173543384721,0.000157185858603334,0.000157198137175458,0.000157210379282481,0.000157222585104539,0.000157234754820522,0.00015724688860809,0.000157258986643679,0.000157271049102516,0.000157283076158628,0.000157295067984853,0.000157307024752848,0.000157318946633104,0.00015733083379495,0.000157342686406571,0.00015735450463501,0.000157366288646183,0.000157378038604887,0.000157389754674811,0.000157401437018542,0.00015741308579758,0.000157424701172343,0.000157436283302176,0.000157447832345366,0.000157459348459142,0.000157470831799694,0.000157482282522172,0.000157493700780703,0.000157505086728395,0.000157516440517348,0.000157527762298659,0.000157539052222435,0.000157550310437801,0.000157561537092902,0.000157572732334919,0.000157583896310074,0.000157595029163636,0.000157606131039933,0.000157617202082355,0.000157628242433367,0.000157639252234514,0.000157650231626426,0.000157661180748832,0.000157672099740562,0.000157682988739555,0.00015769384788287,0.00015770467730669,0.000157715477146328,0.000157726247536239,0.000157736988610022,0.000157747700500429,0.000157758383339374,0.000157769037257935,0.000157779662386366,0.0001577902588541,0.000157800826789755,0.000157811366321146,0.000157821877575286,0.000157832360678393,0.0001578428157559,0.000157853242932457,0.000157863642331941,0.00015787401407746,0.000157884358291357,0.000157894675095223,0.000157904964609894,0.000157915226955464,0.000157925462251289,0.000157935670615991,0.000157945852167464,0.000157956007022883,0.000157966135298707,0.000157976237110682,0.000157986312573854,0.000157996361802568,0.000158006384910473,0.000158016382010535,0.000158026353215033,0.000158036298635571,0.000158046218383079,0.000158056112567821,0.000158065981299399,0.000158075824686759,0.000158085642838193,0.00015809543586135,0.000158105203863232,0.00015811494695021,0.000158124665228019,0.000158134358801768,0.000158144027775944,0.000158153672254415,0.000158163292340438,0.000158172888136661,0.000158182459745127,0.000158192007267281,0.000158201530803973,0.000158211030455464,0.000158220506321427,0.000158229958500956,0.000158239387092566,0.0001582487921942,0.000158258173903234,0.000158267532316477,0.000158276867530181,0.000158286179640039,0.000158295468741196,0.000158304734928247,0.000158313978295242,0.000158323198935696,0.000158332396942584,0.000158341572408351,0.000158350725424915,0.000158359856083669,0.000158368964475486,0.000158378050690724,0.000158387114819227,0.000158396156950331,0.000158405177172866,0.000158414175575162,0.000158423152245051,0.00015843210726987,0.000158441040736466,0.000158449952731198,0.000158458843339943,0.000158467712648096,0.000158476560740579,0.000158485387701836,0.000158494193615844,0.000158502978566113,0.00015851174263569,0.000158520485907163,0.000158529208462661,0.000158537910383861,0.00015854659175199,0.00015855525264783,0.000158563893151714,0.00015857251334354,0.000158581113302765,0.000158589693108412,0.000158598252839075,0.000158606792572915,0.000158615312387672,0.000158623812360662,0.00015863229256878,0.000158640753088507,0.000158649193995908,0.00015865761536664,0.000158666017275948,0.000158674399798676,0.000158682763009263,0.00015869110698175,0.00015869943178978,0.000158707737506603,0.000158716024205076,0.00015872429195767,0.000158732540836467,0.000158740770913168,0.000158748982259092,0.00015875717494518,0.000158765349041997,0.000158773504619737,0.00015878164174822,0.000158789760496902,0.00015879786093487,0.000158805943130851,0.000158814007153208,0.000158822053069949,0.000158830080948725,0.000158838090856833,0.00015884608286122,0.000158854057028483,0.000158862013424876,0.000158869952116305,0.000158877873168336,0.000158885776646196,0.000158893662614774,0.000158901531138625,0.00015890938228197,0.000158917216108701,0.000158925032682381,0.000158932832066246,0.00015894061432321,0.000158948379515862,0.000158956127706474,0.000158963858956999,0.000158971573329076,0.000158979270884028,0.000158986951682869,0.000158994615786301,0.000159002263254721,0.000159009894148219,0.000159017508526582,0.000159025106449295,0.000159032687975546,0.000159040253164221,0.000159047802073914,0.000159055334762924,0.000159062851289258,0.000159070351710633,0.000159077836084478,0.000159085304467935,0.000159092756917864,0.000159100193490838,0.000159107614243154,0.000159115019230827,0.000159122408509595,0.000159129782134921,0.000159137140161994,0.000159144482645731,0.00015915180964078,0.000159159121201518,0.000159166417382056,0.000159173698236241,0.000159180963817656,0.00015918821417962,0.000159195449375194,0.00015920266945718,0.000159209874478123,0.000159217064490312,0.000159224239545782,0.000159231399696318,0.000159238544993451,0.000159245675488465,0.000159252791232396,0.000159259892276034,0.000159266978669925,0.000159274050464372,0.000159281107709434,0.000159288150454934,0.000159295178750454,0.00015930219264534,0.000159309192188701,0.000159316177429413,0.000159323148416119,0.000159330105197231,0.000159337047820931,0.000159343976335172,0.000159350890787681,0.000159357791225958,0.000159364677697279,0.000159371550248698,0.000159378408927047,0.000159385253778936,0.000159392084850758,0.000159398902188688,0.000159405705838685,0.000159412495846492,0.000159419272257638,0.00015942603511744,0.000159432784471006,0.000159439520363231,0.000159446242838802,0.0001594529519422,0.000159459647717699,0.000159466330209367,0.00015947299946107,0.000159479655516471,0.00015948629841903,0.00015949292821201,0.000159499544938472,0.000159506148641282,0.000159512739363106,0.000159519317146418,0.000159525882033495,0.000159532434066423,0.000159538973287095,0.000159545499737213,0.000159552013458289,0.000159558514491648,0.000159565002878424,0.000159571478659567,0.000159577941875843,0.00015958439256783,0.000159590830775925,0.000159597256540344,0.000159603669901119,0.000159610070898103,0.000159616459570971,0.000159622835959219,0.000159629200102167,0.000159635552038956,0.000159641891808557,0.000159648219449763,0.000159654535001196,0.000159660838501304,0.000159667129988368,0.000159673409500494,0.000159679677075624,0.000159685932751527,0.000159692176565808,0.000159698408555906,0.000159704628759094,0.000159710837212479,0.000159717033953007,0.000159723219017462,0.000159729392442463,0.000159735554264473,0.000159741704519792,0.000159747843244562,0.000159753970474768,0.000159760086246237,0.000159766190594639,0.000159772283555492,0.000159778365164156,0.000159784435455839,0.000159790494465596,0.000159796542228332,0.000159802578778798,0.000159808604151596,0.00015981461838118,0.000159820621501855,0.000159826613547776,0.000159832594552953,0.000159838564551252,0.00015984452357639,0.000159850471661942,0.000159856408841338,0.000159862335147865,0.000159868250614671,0.000159874155274759,0.000159880049160992,0.000159885932306096,0.000159891804742654,0.000159897666503115,0.000159903517619788,0.000159909358124844,0.000159915188050322,0.000159921007428123,0.000159926816290012,0.000159932614667625,0.00015993840259246,0.000159944180095886,0.000159949947209139,0.000159955703963324,0.000159961450389416,0.00015996718651826,0.000159972912380574,0.000159978628006946,0.000159984333427837,0.000159990028673581,0.000159995713774388,0.000160001388760338,0.000160007053661392,0.000160012708507383,0.000160018353328021,0.000160023988152894,0.000160029613011469,0.00016003522793309,0.00016004083294698,0.000160046428082242,0.000160052013367861,0.0001600575888327,0.000160063154505508,0.000160068710414912,0.000160074256589425,0.000160079793057442,0.000160085319847243,0.000160090836986992,0.000160096344504738,0.000160101842428419,0.000160107330785855,0.000160112809604757,0.000160118278912722,0.000160123738737236,0.000160129189105673,0.000160134630045297,0.000160140061583263,0.000160145483746615,0.000160150896562289,0.000160156300057113,0.000160161694257807,0.000160167079190985,0.000160172454883152,0.000160177821360709,0.000160183178649951,0.000160188526777068,0.000160193865768146,0.000160199195649165,0.000160204516446006,0.000160209828184443,0.00016021513089015,0.000160220424588698,0.000160225709305559,0.0001602309850661,0.000160236251895593,0.000160241509819206,0.00016024675886201,0.000160251999048977,0.000160257230404981,0.000160262452954798,0.000160267666723106,0.000160272871734487,0.000160278068013428,0.000160283255584318,0.000160288434471452,0.00016029360469903,0.000160298766291158,0.000160303919271848,0.000160309063665018,0.000160314199494494,0.000160319326784008,0.000160324445557203,0.000160329555837627,0.00016033465764874,0.000160339751013908,0.000160344835956411,0.000160349912499436,0.000160354980666082,0.000160360040479358,0.000160365091962187,0.000160370135137402,0.000160375170027749,0.000160380196655887,0.000160385215044388,0.000160390225215739,0.00016039522719234,0.000160400220996505,0.000160405206650465,0.000160410184176365,0.000160415153596265,0.000160420114932144,0.000160425068205896,0.000160430013439331,0.000160434950654179,0.000160439879872086,0.000160444801114616,0.000160449714403254,0.000160454619759401,0.00016045951720438,0.000160464406759433,0.000160469288445722,0.00016047416228433,0.000160479028296259,0.000160483886502436,0.000160488736923708,0.000160493579580842,0.000160498414494532,0.00016050324168539,0.000160508061173956,0.000160512872980689,0.000160517677125976,0.000160522473630126,0.000160527262513373,0.000160532043795877,0.000160536817497723,0.00016054158363892,0.000160546342239406,0.000160551093319044,0.000160555836897624,0.000160560572994863,0.000160565301630406,0.000160570022823825,0.000160574736594621,0.000160579442962224,0.000160584141945991,0.00016058883356521,0.000160593517839097,0.0001605981947868,0.000160602864427396,0.000160607526779892,0.000160612181863226,0.000160616829696268,0.000160621470297819,0.000160626103686612,0.000160630729881312,0.000160635348900516,0.000160639960762754,0.00016064456548649,0.00016064916309012,0.000160653753591975,0.000160658337010319,0.00016066291336335,0.000160667482669203,0.000160672044945944,0.000160676600211578,0.000160681148484044,0.000160685689781215,0.000160690224120903,0.000160694751520856,0.000160699271998756,0.000160703785572225,0.000160708292258821,0.00016071279207604,0.000160717285041315,0.000160721771172017,0.000160726250485458,0.000160730722998885,0.000160735188729486,0.000160739647694389,0.000160744099910659,0.000160748545395303,0.000160752984165267,0.000160757416237438,0.000160761841628643,0.00016076626035565,0.000160770672435169,0.000160775077883849,0.000160779476718284,0.000160783868955008,0.000160788254610497,0.00016079263370117,0.000160797006243389,0.000160801372253457,0.000160805731747624,0.00016081008474208,0.000160814431252961,0.000160818771296345,0.000160823104888255,0.00016082743204466,0.000160831752781471,0.000160836067114546,0.000160840375059688,0.000160844676632645,0.00016084897184911,0.000160853260724724,0.000160857543275071,0.000160861819515685,0.000160866089462045,0.000160870353129575,0.00016087461053365,0.00016087886168959,0.000160883106612662,0.000160887345318082,0.000160891577821014,0.000160895804136571,0.000160900024279812,0.000160904238265747,0.000160908446109334,0.000160912647825481,0.000160916843429045,0.000160921032934831,0.000160925216357597,0.000160929393712048,0.000160933565012841,0.000160937730274584,0.000160941889511833,0.000160946042739098,0.000160950189970839,0.000160954331221467,0.000160958466505344,0.000160962595836785,0.000160966719230057,0.000160970836699377,0.000160974948258918,0.000160979053922803,0.000160983153705107,0.000160987247619861,0.000160991335681048,0.000160995417902602,0.000160999494298414,0.000161003564882327,0.000161007629668139,0.0001610116886696,0.000161015741900417,0.000161019789374251,0.000161023831104716,0.000161027867105383,0.000161031897389778,0.00016103592197138,0.000161039940863627,0.00016104395407991,0.000161047961633577,0.000161051963537932,0.000161055959806236,0.000161059950451704,0.000161063935487512,0.000161067914926788,0.00016107188878262,0.000161075857068053,0.000161079819796087,0.000161083776979684,0.000161087728631759,0.000161091674765188,0.000161095615392804,0.000161099550527397,0.000161103480181719,0.000161107404368477,0.000161111323100339,0.00016111523638993,0.000161119144249836,0.000161123046692601,0.000161126943730729,0.000161130835376685,0.000161134721642891,0.000161138602541731,0.000161142478085548,0.000161146348286646,0.00016115021315729,0.000161154072709704,0.000161157926956074,0.000161161775908546,0.000161165619579229,0.000161169457980191,0.000161173291123463,0.000161177119021037,0.000161180941684866,0.000161184759126866,0.000161188571358915,0.000161192378392854,0.000161196180240483,0.000161199976913568,0.000161203768423836,0.000161207554782978,0.000161211336002647,0.000161215112094459,0.000161218883069994,0.000161222648940796,0.00016122640971837,0.000161230165414187,0.000161233916039681,0.000161237661606252,0.00016124140212526,0.000161245137608033,0.000161248868065862,0.000161252593510003,0.000161256313951676,0.000161260029402066,0.000161263739872325,0.000161267445373567,0.000161271145916874,0.000161274841513291,0.000161278532173831,0.000161282217909471,0.000161285898731155,0.000161289574649792,0.000161293245676257,0.000161296911821393,0.000161300573096007,0.000161304229510874,0.000161307881076736,0.0001613115278043,0.000161315169704243,0.000161318806787205,0.000161322439063797,0.000161326066544594,0.000161329689240142,0.000161333307160951,0.000161336920317501,0.00016134052872024,0.000161344132379582,0.00016134773130591,0.000161351325509576,0.000161354915000901,0.000161358499790171,0.000161362079887644,0.000161365655303545,0.000161369226048069,0.000161372792131379,0.000161376353563607,0.000161379910354854,0.000161383462515193,0.000161387010054662,0.000161390552983273,0.000161394091311003,0.000161397625047803,0.000161401154203592,0.000161404678788259,0.000161408198811663,0.000161411714283635,0.000161415225213973,0.000161418731612448,0.000161422233488803,0.000161425730852747,0.000161429223713964,0.000161432712082108,0.000161436195966803,0.000161439675377644,0.0001614431503242,0.000161446620816007,0.000161450086862577,0.00016145354847339,0.0001614570056579,0.000161460458425532,0.000161463906785682,0.000161467350747721,0.000161470790320988,0.000161474225514797,0.000161477656338435,0.000161481082801159,0.0001614845049122,0.000161487922680761,0.000161491336116019,0.000161494745227122,0.000161498150023194,0.000161501550513328,0.000161504946706593,0.000161508338612032,0.000161511726238658,0.00016151510959546,0.000161518488691401,0.000161521863535416,0.000161525234136415,0.00016152860050328,0.000161531962644871,0.000161535320570017,0.000161538674287525,0.000161542023806175,0.00016154536913472,0.000161548710281891,0.000161552047256389,0.000161555380066893,0.000161558708722057,0.000161562033230507,0.000161565353600846,0.000161568669841651,0.000161571981961476,0.000161575289968848,0.000161578593872271,0.000161581893680223,0.000161585189401158,0.000161588481043507,0.000161591768615674,0.00016159505212604,0.000161598331582964,0.000161601606994777,0.000161604878369789,0.000161608145716285,0.000161611409042526,0.000161614668356751,0.000161617923667172,0.000161621174981981,0.000161624422309345,0.000161627665657407,0.000161630905034289,0.000161634140448086,0.000161637371906874,0.000161640599418703,0.000161643822991603,0.000161647042633578,0.00016165025835261,0.000161653470156661,0.000161656678053667,0.000161659882051543,0.000161663082158182,0.000161666278381454,0.000161669470729207,0.000161672659209266,0.000161675843829434,0.000161679024597494,0.000161682201521205,0.000161685374608305,0.000161688543866509,0.000161691709303512,0.000161694870926986,0.000161698028744583,0.000161701182763932,0.000161704332992641,0.000161707479438297,0.000161710622108466,0.000161713761010692,0.000161716896152498,0.000161720027541387,0.00016172315518484,0.000161726279090318,0.00016172939926526,0.000161732515717086,0.000161735628453193,0.000161738737480961,0.000161741842807746,0.000161744944440884,0.000161748042387693,0.000161751136655469,0.000161754227251488,0.000161757314183006,0.000161760397457259,0.000161763477081462,0.000161766553062813],"text":"75% limits (l)","key":null,"type":"scatter","mode":"lines","name":"","line":{"width":1.88976377952756,"color":"rgba(0,255,0,1)","dash":"solid"},"hoveron":"points","showlegend":false,"xaxis":"x","yaxis":"y","hoverinfo":"text"},{"x":[31332,32332,33332,34332,35332,36332,37332,38332,39332,40332,41332,42332,43332,44332,45332,46332,47332,48332,49332,50332,51332,52332,53332,54332,55332,56332,57332,58332,59332,60332,61332,62332,63332,64332,65332,66332,67332,68332,69332,70332,71332,72332,73332,74332,75332,76332,77332,78332,79332,80332,81332,82332,83332,84332,85332,86332,87332,88332,89332,90332,91332,92332,93332,94332,95332,96332,97332,98332,99332,100332,101332,102332,103332,104332,105332,106332,107332,108332,109332,110332,111332,112332,113332,114332,115332,116332,117332,118332,119332,120332,121332,122332,123332,124332,125332,126332,127332,128332,129332,130332,131332,132332,133332,134332,135332,136332,137332,138332,139332,140332,141332,142332,143332,144332,145332,146332,147332,148332,149332,150332,151332,152332,153332,154332,155332,156332,157332,158332,159332,160332,161332,162332,163332,164332,165332,166332,167332,168332,169332,170332,171332,172332,173332,174332,175332,176332,177332,178332,179332,180332,181332,182332,183332,184332,185332,186332,187332,188332,189332,190332,191332,192332,193332,194332,195332,196332,197332,198332,199332,200332,201332,202332,203332,204332,205332,206332,207332,208332,209332,210332,211332,212332,213332,214332,215332,216332,217332,218332,219332,220332,221332,222332,223332,224332,225332,226332,227332,228332,229332,230332,231332,232332,233332,234332,235332,236332,237332,238332,239332,240332,241332,242332,243332,244332,245332,246332,247332,248332,249332,250332,251332,252332,253332,254332,255332,256332,257332,258332,259332,260332,261332,262332,263332,264332,265332,266332,267332,268332,269332,270332,271332,272332,273332,274332,275332,276332,277332,278332,279332,280332,281332,282332,283332,284332,285332,286332,287332,288332,289332,290332,291332,292332,293332,294332,295332,296332,297332,298332,299332,300332,301332,302332,303332,304332,305332,306332,307332,308332,309332,310332,311332,312332,313332,314332,315332,316332,317332,318332,319332,320332,321332,322332,323332,324332,325332,326332,327332,328332,329332,330332,331332,332332,333332,334332,335332,336332,337332,338332,339332,340332,341332,342332,343332,344332,345332,346332,347332,348332,349332,350332,351332,352332,353332,354332,355332,356332,357332,358332,359332,360332,361332,362332,363332,364332,365332,366332,367332,368332,369332,370332,371332,372332,373332,374332,375332,376332,377332,378332,379332,380332,381332,382332,383332,384332,385332,386332,387332,388332,389332,390332,391332,392332,393332,394332,395332,396332,397332,398332,399332,400332,401332,402332,403332,404332,405332,406332,407332,408332,409332,410332,411332,412332,413332,414332,415332,416332,417332,418332,419332,420332,421332,422332,423332,424332,425332,426332,427332,428332,429332,430332,431332,432332,433332,434332,435332,436332,437332,438332,439332,440332,441332,442332,443332,444332,445332,446332,447332,448332,449332,450332,451332,452332,453332,454332,455332,456332,457332,458332,459332,460332,461332,462332,463332,464332,465332,466332,467332,468332,469332,470332,471332,472332,473332,474332,475332,476332,477332,478332,479332,480332,481332,482332,483332,484332,485332,486332,487332,488332,489332,490332,491332,492332,493332,494332,495332,496332,497332,498332,499332,500332,501332,502332,503332,504332,505332,506332,507332,508332,509332,510332,511332,512332,513332,514332,515332,516332,517332,518332,519332,520332,521332,522332,523332,524332,525332,526332,527332,528332,529332,530332,531332,532332,533332,534332,535332,536332,537332,538332,539332,540332,541332,542332,543332,544332,545332,546332,547332,548332,549332,550332,551332,552332,553332,554332,555332,556332,557332,558332,559332,560332,561332,562332,563332,564332,565332,566332,567332,568332,569332,570332,571332,572332,573332,574332,575332,576332,577332,578332,579332,580332,581332,582332,583332,584332,585332,586332,587332,588332,589332,590332,591332,592332,593332,594332,595332,596332,597332,598332,599332,600332,601332,602332,603332,604332,605332,606332,607332,608332,609332,610332,611332,612332,613332,614332,615332,616332,617332,618332,619332,620332,621332,622332,623332,624332,625332,626332,627332,628332,629332,630332,631332,632332,633332,634332,635332,636332,637332,638332,639332,640332,641332,642332,643332,644332,645332,646332,647332,648332,649332,650332,651332,652332,653332,654332,655332,656332,657332,658332,659332,660332,661332,662332,663332,664332,665332,666332,667332,668332,669332,670332,671332,672332,673332,674332,675332,676332,677332,678332,679332,680332,681332,682332,683332,684332,685332,686332,687332,688332,689332,690332,691332,692332,693332,694332,695332,696332,697332,698332,699332,700332,701332,702332,703332,704332,705332,706332,707332,708332,709332,710332,711332,712332,713332,714332,715332,716332,717332,718332,719332,720332,721332,722332,723332,724332,725332,726332,727332,728332,729332,730332,731332,732332,733332,734332,735332,736332,737332,738332,739332,740332,741332,742332,743332,744332,745332,746332,747332,748332,749332,750332,751332,752332,753332,754332,755332,756332,757332,758332,759332,760332,761332,762332,763332,764332,765332,766332,767332,768332,769332,770332,771332,772332,773332,774332,775332,776332,777332,778332,779332,780332,781332,782332,783332,784332,785332,786332,787332,788332,789332,790332,791332,792332,793332,794332,795332,796332,797332,798332,799332,800332,801332,802332,803332,804332,805332,806332,807332,808332,809332,810332,811332,812332,813332,814332,815332,816332,817332,818332,819332,820332,821332,822332,823332,824332,825332,826332,827332,828332,829332,830332,831332,832332,833332,834332,835332,836332,837332,838332,839332,840332,841332,842332,843332,844332,845332,846332,847332,848332,849332,850332,851332,852332,853332,854332,855332,856332,857332,858332,859332,860332,861332,862332,863332,864332,865332,866332,867332,868332,869332,870332,871332,872332,873332,874332,875332,876332,877332,878332,879332,880332,881332,882332,883332,884332,885332,886332,887332,888332,889332,890332,891332,892332,893332,894332,895332,896332,897332,898332,899332,900332,901332,902332,903332,904332,905332,906332,907332,908332,909332,910332,911332,912332,913332,914332,915332,916332,917332,918332,919332,920332,921332,922332,923332,924332,925332,926332,927332,928332,929332,930332,931332,932332,933332,934332,935332,936332,937332,938332,939332,940332,941332,942332,943332,944332,945332,946332,947332,948332,949332,950332,951332,952332,953332,954332,955332,956332,957332,958332,959332,960332,961332,962332,963332,964332,965332,966332,967332,968332,969332,970332,971332,972332,973332,974332,975332,976332,977332,978332,979332,980332,981332,982332,983332,984332,985332,986332,987332,988332,989332,990332,991332,992332,993332,994332,995332,996332,997332,998332,999332,1000332,1001332,1002332,1003332,1004332,1005332,1006332,1007332,1008332,1009332,1010332,1011332,1012332,1013332,1014332,1015332,1016332,1017332,1018332,1019332,1020332,1021332,1022332,1023332,1024332,1025332,1026332,1027332,1028332,1029332,1030332,1031332,1032332,1033332,1034332,1035332,1036332,1037332,1038332,1039332,1040332,1041332,1042332,1043332,1044332,1045332,1046332,1047332,1048332,1049332,1050332,1051332,1052332,1053332,1054332,1055332,1056332,1057332,1058332,1059332,1060332,1061332,1062332,1063332,1064332,1065332,1066332,1067332,1068332,1069332,1070332,1071332,1072332,1073332,1074332,1075332,1076332,1077332,1078332,1079332,1080332,1081332,1082332,1083332,1084332,1085332,1086332,1087332,1088332,1089332,1090332,1091332,1092332,1093332,1094332,1095332,1096332,1097332,1098332,1099332,1100332,1101332,1102332,1103332,1104332,1105332,1106332,1107332,1108332,1109332,1110332,1111332,1112332,1113332,1114332,1115332,1116332,1117332,1118332,1119332,1120332,1121332,1122332,1123332,1124332,1125332,1126332,1127332,1128332,1129332,1130332,1131332,1132332,1133332,1134332,1135332,1136332,1137332,1138332,1139332,1140332,1141332,1142332,1143332,1144332,1145332,1146332,1147332,1148332,1149332,1150332,1151332,1152332,1153332,1154332,1155332,1156332,1157332,1158332,1159332,1160332,1161332,1162332,1163332,1164332,1165332,1166332,1167332,1168332,1169332,1170332,1171332,1172332,1173332,1174332,1175332,1176332,1177332,1178332,1179332,1180332,1181332,1182332,1183332,1184332,1185332,1186332,1187332,1188332,1189332,1190332,1191332,1192332,1193332,1194332,1195332,1196332,1197332,1198332,1199332,1200332,1201332,1202332,1203332,1204332,1205332,1206332,1207332,1208332,1209332,1210332,1211332,1212332,1213332,1214332,1215332,1216332,1217332,1218332,1219332,1220332,1221332,1222332,1223332,1224332,1225332,1226332,1227332,1228332,1229332,1230332,1231332,1232332,1233332,1234332,1235332,1236332,1237332,1238332,1239332,1240332,1241332,1242332,1243332,1244332,1245332,1246332,1247332,1248332,1249332,1250332,1251332,1252332,1253332,1254332,1255332,1256332,1257332,1258332,1259332,1260332,1261332,1262332,1263332,1264332,1265332,1266332,1267332,1268332],"y":[0.000219179574041322,0.000218406275292402,0.000217668042776897,0.000216962303963331,0.000216286743013281,0.000215639268761648,0.000215017987447098,0.000214421179381712,0.000213847278904545,0.000213294857086415,0.000212762606750563,0.000212249329451387,0.000211753924115777,0.000211275377101849,0.000210812753470692,0.000210365189299991,0.000209931884895667,0.000209512098780127,0.000209105142354252,0.000208710375145665,0.000208327200568689,0.000207955062132098,0.000207593440039843,0.00020724184813751,0.000206899831163697,0.000206566962270989,0.000206242840785799,0.000205927090180372,0.000205619356233577,0.000205319305360086,0.000205026623090008,0.000204741012683224,0.000204462193864547,0.000204189901667443,0.000203923885375481,0.000203663907551884,0.000203409743148659,0.000203161178687693,0.000202918011507057,0.000202680049066457,0.000202447108306436,0.000202219015056463,0.000201995603487582,0.00020177671560569,0.00020156220078194,0.000201351915317096,0.000201145722036963,0.000200943489916332,0.000200745093729064,0.00020055041372222,0.000200359335312287,0.000200171748801763,0.000199987549114511,0.000199806635548412,0.000199628911544019,0.000199454284467987,0.000199282665410187,0.000199113968993482,0.000198948113195252,0.000198785019179818,0.000198624611140984,0.00019846681615398,0.00019831156403616,0.000198158787215841,0.000198008420608729,0.000197860401501416,0.000197714669441487,0.000197571166133778,0.0001974298353424,0.000197290622798144,0.000197153476110927,0.000197018344686955,0.000196885179650303,0.00019675393376864,0.000196624561382849,0.00019649701834028,0.000196371261931452,0.000196247250829957,0.000196124945035405,0.000196004305819219,0.000195885295673111,0.000195767878260086,0.000195652018367833,0.000195537681864358,0.000195424835655742,0.0001953134476459,0.000195203486698225,0.000195094922599024,0.000194987726022646,0.000194881868498194,0.000194777322377765,0.000194674060806111,0.000194572057691657,0.000194471287678807,0.000194371726121463,0.000194273349057708,0.000194176133185569,0.000194080055839841,0.000193985094969878,0.000193891229118342,0.000193798437400827,0.000193706699486345,0.000193615995578607,0.000193526306398085,0.000193437613164788,0.000193349897581749,0.000193263141819167,0.000193177328499183,0.000193092440681255,0.00019300846184811,0.000192925375892246,0.00019284316710295,0.00019276182015382,0.000192681320090764,0.000192601652320447,0.000192522802599183,0.000192444757022236,0.000192367502013518,0.000192291024315668,0.000192215310980499,0.000192140349359788,0.000192066127096397,0.00019199263211572,0.00019191985261743,0.000191847777067519,0.000191776394190622,0.000191705692962607,0.00019163566260342,0.000191566292570186,0.000191497572550537,0.000191429492456177,0.000191362042416655,0.000191295212773359,0.000191228994073705,0.000191163377065519,0.000191098352691608,0.000191033912084509,0.000190970046561408,0.000190906747619228,0.000190844006929872,0.000190781816335618,0.00019072016784467,0.000190659053626837,0.000190598466009361,0.000190538397472866,0.000190478840647442,0.000190419788308844,0.000190361233374813,0.000190303168901506,0.000190245588080041,0.000190188484233139,0.000190131850811872,0.000190075681392512,0.000190019969673465,0.000189964709472305,0.000189909894722894,0.000189855519472578,0.000189801577879479,0.000189748064209853,0.000189694972835536,0.000189642298231452,0.000189590034973199,0.000189538177734707,0.000189486721285951,0.000189435660490742,0.000189384990304569,0.00018933470577251,0.00018928480202719,0.000189235274286811,0.000189186117853219,0.000189137328110037,0.000189088900520843,0.000189040830627397,0.000188993114047919,0.00018894574647541,0.000188898723676018,0.000188852041487452,0.000188805695817432,0.00018875968264218,0.000188713998004958,0.000188668638014635,0.000188623598844294,0.000188578876729881,0.000188534467968877,0.000188490368919016,0.000188446575997027,0.000188403085677413,0.000188359894491257,0.000188316999025061,0.000188274395919613,0.000188232081868882,0.000188190053618938,0.000188148307966907,0.000188106841759937,0.000188065651894206,0.000188024735313942,0.000187984089010472,0.000187943710021291,0.000187903595429157,0.000187863742361205,0.000187824147988085,0.000187784809523113,0.000187745724221453,0.000187706889379308,0.000187668302333138,0.00018762996045889,0.000187591861171251,0.000187554001922912,0.000187516380203858,0.000187478993540663,0.000187441839495813,0.000187404915667032,0.000187368219686636,0.000187331749220892,0.000187295501969393,0.000187259475664453,0.000187223668070508,0.000187188076983532,0.000187152700230472,0.000187117535668686,0.000187082581185401,0.000187047834697177,0.00018701329414939,0.000186978957515714,0.000186944822797632,0.000186910888023937,0.000186877151250261,0.000186843610558606,0.000186810264056881,0.000186777109878462,0.000186744146181746,0.000186711371149723,0.000186678782989559,0.000186646379932178,0.000186614160231866,0.000186582122165869,0.00018655026403401,0.000186518584158308,0.000186487080882609,0.000186455752572222,0.00018642459761356,0.000186393614413794,0.00018636280140051,0.000186332157021372,0.000186301679743797,0.000186271368054631,0.000186241220459833,0.000186211235484166,0.000186181411670895,0.000186151747581488,0.000186122241795328,0.000186092892909421,0.000186063699538122,0.000186034660312857,0.000186005773881854,0.000185977038909879,0.000185948454077979,0.000185920018083221,0.00018589172963845,0.000185863587472042,0.00018583559032766,0.000185807736964025,0.00018578002615468,0.000185752456687763,0.000185725027365789,0.000185697737005427,0.000185670584437287,0.000185643568505711,0.000185616688068563,0.00018558994199703,0.000185563329175421,0.00018553684850097,0.000185510498883649,0.000185484279245974,0.000185458188522822,0.000185432225661251,0.000185406389620319,0.00018538067937091,0.000185355093895562,0.000185329632188296,0.000185304293254455,0.000185279076110532,0.000185253979784019,0.000185229003313242,0.000185204145747213,0.000185179406145472,0.00018515478357794,0.000185130277124773,0.000185105885876217,0.000185081608932463,0.000185057445403515,0.000185033394409046,0.000185009455078265,0.000184985626549787,0.000184961907971499,0.000184938298500438,0.000184914797302657,0.000184891403553108,0.000184868116435518,0.000184844935142268,0.000184821858874277,0.000184798886840887,0.000184776018259748,0.000184753252356705,0.000184730588365691,0.000184708025528615,0.000184685563095259,0.000184663200323171,0.000184640936477563,0.000184618770831208,0.000184596702664343,0.000184574731264569,0.000184552855926753,0.000184531075952937,0.00018450939065224,0.000184487799340769,0.000184466301341528,0.000184444895984327,0.000184423582605697,0.0001844023605488,0.000184381229163348,0.000184360187805517,0.000184339235837866,0.000184318372629252,0.000184297597554756,0.0001842769099956,0.000184256309339072,0.000184235794978449,0.000184215366312919,0.000184195022747514,0.00018417476369303,0.000184154588565961,0.000184134496788423,0.000184114487788088,0.000184094560998118,0.00018407471585709,0.000184054951808937,0.000184035268302878,0.000184015664793356,0.000183996140739972,0.000183976695607426,0.000183957328865452,0.000183938039988758,0.00018391882845697,0.000183899693754565,0.000183880635370822,0.000183861652799758,0.000183842745540074,0.000183823913095101,0.000183805154972743,0.000183786470685421,0.000183767859750027,0.000183749321687864,0.000183730856024597,0.000183712462290203,0.00018369414001892,0.000183675888749198,0.000183657708023649,0.000183639597388998,0.00018362155639604,0.000183603584599587,0.000183585681558428,0.000183567846835279,0.000183550079996739,0.000183532380613249,0.000183514748259042,0.000183497182512107,0.000183479682954143,0.000183462249170516,0.000183444880750221,0.000183427577285839,0.000183410338373497,0.000183393163612828,0.000183376052606936,0.000183359004962352,0.000183342020288997,0.000183325098200149,0.000183308238312401,0.000183291440245626,0.000183274703622942,0.000183258028070677,0.000183241413218329,0.00018322485869854,0.000183208364147053,0.000183191929202686,0.000183175553507292,0.000183159236705732,0.000183142978445837,0.000183126778378384,0.000183110636157054,0.000183094551438412,0.000183078523881865,0.000183062553149644,0.000183046638906762,0.000183030780820993,0.000183014978562841,0.000182999231805508,0.000182983540224868,0.000182967903499441,0.000182952321310362,0.000182936793341354,0.000182921319278702,0.000182905898811229,0.000182890531630264,0.00018287521742962,0.000182859955905568,0.000182844746756811,0.000182829589684458,0.000182814484392003,0.000182799430585296,0.000182784427972521,0.000182769476264174,0.000182754575173037,0.000182739724414154,0.000182724923704813,0.000182710172764519,0.000182695471314971,0.000182680819080043,0.000182666215785764,0.000182651661160288,0.000182637154933883,0.000182622696838902,0.000182608286609768,0.000182593923982949,0.000182579608696941,0.000182565340492248,0.000182551119111358,0.000182536944298728,0.000182522815800765,0.000182508733365802,0.000182494696744084,0.000182480705687748,0.000182466759950805,0.000182452859289118,0.000182439003460392,0.000182425192224147,0.000182411425341708,0.000182397702576183,0.000182384023692449,0.000182370388457132,0.000182356796638593,0.00018234324800691,0.000182329742333862,0.000182316279392913,0.000182302858959196,0.000182289480809496,0.000182276144722239,0.000182262850477469,0.000182249597856838,0.000182236386643593,0.000182223216622553,0.000182210087580103,0.000182196999304173,0.00018218395158423,0.000182170944211255,0.000182157976977739,0.000182145049677661,0.000182132162106478,0.000182119314061111,0.000182106505339931,0.000182093735742747,0.000182081005070791,0.000182068313126707,0.000182055659714534,0.0001820430446397,0.000182030467709005,0.000182017928730607,0.000182005427514014,0.00018199296387007,0.000181980537610942,0.00018196814855011,0.000181955796502354,0.000181943481283741,0.000181931202711617,0.000181918960604594,0.000181906754782536,0.000181894585066553,0.000181882451278985,0.000181870353243396,0.000181858290784559,0.000181846263728447,0.000181834271902222,0.000181822315134227,0.000181810393253971,0.000181798506092125,0.000181786653480504,0.000181774835252065,0.000181763051240892,0.000181751301282188,0.000181739585212264,0.000181727902868533,0.000181716254089495,0.000181704638714733,0.000181693056584899,0.000181681507541709,0.000181669991427933,0.000181658508087381,0.000181647057364903,0.000181635639106372,0.00018162425315868,0.000181612899369727,0.000181601577588416,0.00018159028766464,0.000181579029449274,0.000181567802794173,0.000181556607552156,0.000181545443577001,0.000181534310723439,0.000181523208847143,0.00018151213780472,0.000181501097453708,0.000181490087652561,0.000181479108260649,0.000181468159138243,0.000181457240146513,0.00018144635114752,0.000181435492004205,0.000181424662580385,0.000181413862740747,0.000181403092350836,0.000181392351277053,0.000181381639386646,0.000181370956547701,0.00018136030262914,0.000181349677500709,0.000181339081032975,0.00018132851309732,0.000181317973565929,0.000181307462311789,0.000181296979208682,0.000181286524131175,0.000181276096954618,0.000181265697555134,0.000181255325809615,0.000181244981595718,0.000181234664791853,0.000181224375277181,0.000181214112931611,0.000181203877635786,0.000181193669271085,0.000181183487719611,0.000181173332864192,0.000181163204588369,0.000181153102776393,0.000181143027313221,0.000181132978084507,0.000181122954976602,0.00018111295787654,0.000181102986672042,0.000181093041251504,0.000181083121503996,0.000181073227319254,0.000181063358587676,0.000181053515200316,0.000181043697048882,0.000181033904025726,0.000181024136023843,0.000181014392936865,0.000181004674659056,0.000180994981085307,0.000180985312111131,0.00018097566763266,0.000180966047546637,0.000180956451750414,0.000180946880141948,0.000180937332619794,0.000180927809083102,0.000180918309431611,0.000180908833565648,0.000180899381386119,0.000180889952794509,0.000180880547692875,0.000180871165983841,0.000180861807570598,0.000180852472356894,0.000180843160247036,0.000180833871145879,0.000180824604958829,0.000180815361591833,0.000180806140951379,0.000180796942944491,0.000180787767478724,0.00018077861446216,0.000180769483803406,0.000180760375411589,0.000180751289196351,0.000180742225067848,0.000180733182936744,0.000180724162714209,0.000180715164311913,0.000180706187642024,0.000180697232617205,0.00018068829915061,0.000180679387155877,0.000180670496547133,0.000180661627238979,0.000180652779146497,0.00018064395218524,0.000180635146271231,0.000180626361320962,0.000180617597251385,0.000180608853979912,0.000180600131424415,0.000180591429503214,0.000180582748135085,0.000180574087239246,0.000180565446735361,0.000180556826543535,0.00018054822658431,0.000180539646778663,0.000180531087048,0.00018052254731416,0.000180514027499403,0.000180505527526413,0.000180497047318295,0.000180488586798568,0.000180480145891167,0.000180471724520435,0.000180463322611127,0.000180454940088399,0.000180446576877812,0.000180438232905325,0.000180429908097295,0.000180421602380472,0.000180413315681999,0.000180405047929405,0.000180396799050608,0.000180388568973907,0.000180380357627983,0.000180372164941895,0.000180363990845078,0.000180355835267338,0.000180347698138855,0.000180339579390173,0.000180331478952205,0.000180323396756224,0.000180315332733867,0.000180307286817126,0.00018029925893835,0.000180291249030242,0.000180283257025856,0.000180275282858592,0.000180267326462199,0.000180259387770771,0.000180251466718739,0.00018024356324088,0.000180235677272301,0.00018022780874845,0.000180219957605105,0.000180212123778374,0.000180204307204694,0.000180196507820829,0.000180188725563866,0.000180180960371213,0.000180173212180601,0.000180165480930076,0.000180157766557999,0.000180150069003047,0.000180142388204206,0.000180134724100774,0.000180127076632354,0.000180119445738856,0.000180111831360493,0.00018010423343778,0.000180096651911529,0.000180089086722854,0.000180081537813161,0.000180074005124151,0.000180066488597817,0.000180058988176442,0.000180051503802597,0.00018004403541914,0.000180036582969211,0.000180029146396237,0.000180021725643921,0.000180014320656248,0.00018000693137748,0.000179999557752154,0.000179992199725081,0.000179984857241344,0.000179977530246295,0.000179970218685557,0.000179962922505019,0.000179955641650834,0.000179948376069419,0.000179941125707455,0.000179933890511881,0.000179926670429895,0.000179919465408952,0.000179912275396763,0.000179905100341293,0.000179897940190757,0.000179890794893625,0.00017988366439861,0.000179876548654679,0.000179869447611041,0.00017986236121715,0.000179855289422704,0.000179848232177641,0.000179841189432141,0.000179834161136621,0.000179827147241735,0.000179820147698375,0.000179813162457663,0.000179806191470956,0.000179799234689844,0.000179792292066144,0.000179785363551903,0.000179778449099394,0.000179771548661117,0.000179764662189796,0.000179757789638377,0.000179750930960028,0.000179744086108139,0.000179737255036317,0.000179730437698387,0.00017972363404839,0.000179716844040584,0.000179710067629438,0.000179703304769635,0.000179696555416069,0.000179689819523844,0.000179683097048273,0.000179676387944875,0.000179669692169376,0.000179663009677708,0.000179656340426005,0.000179649684370604,0.000179643041468045,0.000179636411675065,0.000179629794948603,0.000179623191245793,0.000179616600523969,0.000179610022740657,0.00017960345785358,0.000179596905820652,0.00017959036659998,0.000179583840149862,0.000179577326428786,0.000179570825395428,0.000179564337008652,0.000179557861227508,0.000179551398011232,0.000179544947319245,0.00017953850911115,0.000179532083346731,0.000179525669985956,0.000179519268988972,0.000179512880316104,0.000179506503927856,0.000179500139784909,0.000179493787848119,0.000179487448078518,0.000179481120437312,0.00017947480488588,0.000179468501385771,0.000179462209898707,0.000179455930386581,0.000179449662811451,0.000179443407135548,0.000179437163321267,0.000179430931331169,0.000179424711127982,0.000179418502674596,0.000179412305934068,0.000179406120869614,0.000179399947444612,0.000179393785622602,0.000179387635367283,0.000179381496642513,0.000179375369412307,0.000179369253640839,0.000179363149292436,0.000179357056331583,0.00017935097472292,0.000179344904431236,0.000179338845421479,0.000179332797658743,0.000179326761108277,0.000179320735735479,0.000179314721505895,0.000179308718385221,0.0001793027263393,0.000179296745334122,0.000179290775335823,0.000179284816310685,0.000179278868225133,0.000179272931045738,0.00017926700473921,0.000179261089272404,0.000179255184612317,0.000179249290726083,0.00017924340758098,0.000179237535144421,0.00017923167338396,0.000179225822267287,0.000179219981762231,0.000179214151836753,0.000179208332458953,0.000179202523597063,0.00017919672521945,0.000179190937294615,0.000179185159791189,0.000179179392677936,0.000179173635923751,0.000179167889497659,0.000179162153368815,0.000179156427506501,0.000179150711880129,0.000179145006459238,0.000179139311213494,0.000179133626112688,0.000179127951126737,0.000179122286225683,0.000179116631379692,0.000179110986559054,0.000179105351734181,0.000179099726875606,0.000179094111953985,0.000179088506940095,0.000179082911804833,0.000179077326519214,0.000179071751054375,0.000179066185381567,0.000179060629472163,0.00017905508329765,0.000179049546829633,0.000179044020039832,0.000179038502900084,0.000179032995382337,0.000179027497458657,0.00017902200910122,0.000179016530282318,0.000179011060974353,0.000179005601149839,0.000179000150781402,0.000178994709841778,0.000178989278303812,0.00017898385614046,0.000178978443324786,0.000178973039829962,0.000178967645629268,0.00017896226069609,0.000178956885003923,0.000178951518526366,0.000178946161237124,0.000178940813110007,0.00017893547411893,0.00017893014423791,0.000178924823441069,0.000178919511702632,0.000178914208996925,0.000178908915298377,0.000178903630581516,0.000178898354820975,0.000178893087991482,0.000178887830067869,0.000178882581025065,0.000178877340838098,0.000178872109482094,0.000178866886932277,0.000178861673163969,0.000178856468152588,0.000178851271873647,0.000178846084302757,0.000178840905415623,0.000178835735188045,0.000178830573595917,0.000178825420615227,0.000178820276222057,0.000178815140392581,0.000178810013103067,0.000178804894329872,0.000178799784049448,0.000178794682238335,0.000178789588873167,0.000178784503930664,0.000178779427387639,0.000178774359220993,0.000178769299407717,0.000178764247924888,0.000178759204749673,0.000178754169859326,0.000178749143231188,0.000178744124842687,0.000178739114671336,0.000178734112694735,0.00017872911889057,0.00017872413323661,0.00017871915571071,0.00017871418629081,0.000178709224954931,0.000178704271681179,0.000178699326447744,0.000178694389232896,0.00017868946001499,0.000178684538772459,0.000178679625483821,0.000178674720127674,0.000178669822682695,0.000178664933127642,0.000178660051441353,0.000178655177602745,0.000178650311590816,0.000178645453384639,0.000178640602963367,0.000178635760306233,0.000178630925392543,0.000178626098201685,0.000178621278713119,0.000178616466906386,0.000178611662761099,0.000178606866256949,0.000178602077373702,0.000178597296091198,0.000178592522389352,0.000178587756248155,0.000178582997647669,0.000178578246568031,0.000178573502989451,0.000178568766892212,0.000178564038256669,0.00017855931706325,0.000178554603292454,0.000178549896924851,0.000178545197941084,0.000178540506321866,0.000178535822047978,0.000178531145100275,0.000178526475459679,0.000178521813107183,0.000178517158023849,0.000178512510190807,0.000178507869589256,0.000178503236200463,0.000178498610005763,0.000178493990986559,0.000178489379124321,0.000178484774400585,0.000178480176796955,0.0001784755862951,0.000178471002876756,0.000178466426523725,0.000178461857217872,0.000178457294941131,0.000178452739675497,0.000178448191403032,0.00017844365010586,0.000178439115766172,0.000178434588366219,0.000178430067888319,0.00017842555431485,0.000178421047628254,0.000178416547811035,0.00017841205484576,0.000178407568715058,0.000178403089401617,0.00017839861688819,0.000178394151157589,0.000178389692192686,0.000178385239976416,0.000178380794491772,0.000178376355721808,0.000178371923649637,0.000178367498258432,0.000178363079531425,0.000178358667451906,0.000178354262003226,0.000178349863168791,0.000178345470932067,0.000178341085276578,0.000178336706185905,0.000178332333643686,0.000178327967633618,0.000178323608139451,0.000178319255144995,0.000178314908634114,0.00017831056859073,0.00017830623499882,0.000178301907842415,0.000178297587105604,0.000178293272772529,0.000178288964827387,0.00017828466325443,0.000178280368037965,0.000178276079162351,0.000178271796612004,0.00017826752037139,0.00017826325042503,0.0001782589867575,0.000178254729353425,0.000178250478197485,0.000178246233274413,0.000178241994568993,0.000178237762066061,0.000178233535750504,0.000178229315607263,0.000178225101621328,0.000178220893777741,0.000178216692061594,0.00017821249645803,0.000178208306952244,0.000178204123529478,0.000178199946175027,0.000178195774874234,0.000178191609612492,0.000178187450375242,0.000178183297147977,0.000178179149916236,0.000178175008665608,0.000178170873381731,0.00017816674405029,0.000178162620657019,0.000178158503187698,0.000178154391628157,0.000178150285964273,0.000178146186181968,0.000178142092267214,0.000178138004206027,0.000178133921984473,0.000178129845588661,0.000178125775004748,0.000178121710218936,0.000178117651217475,0.000178113597986658,0.000178109550512824,0.000178105508782359,0.000178101472781692,0.000178097442497297,0.000178093417915695,0.000178089399023448,0.000178085385807165,0.000178081378253498,0.000178077376349143,0.00017807338008084,0.000178069389435371,0.000178065404399563,0.000178061424960287,0.000178057451104455,0.000178053482819023,0.000178049520090988,0.000178045562907391,0.000178041611255316,0.000178037665121887,0.000178033724494271,0.000178029789359678,0.000178025859705356,0.000178021935518598,0.000178018016786736,0.000178014103497145,0.000178010195637239,0.000178006293194474,0.000178002396156346,0.00017799850451039,0.000177994618244184,0.000177990737345344,0.000177986861801527,0.000177982991600429,0.000177979126729785,0.000177975267177371,0.000177971412931002,0.000177967563978529,0.000177963720307846,0.000177959881906884,0.000177956048763612,0.000177952220866038,0.000177948398202209,0.000177944580760209,0.00017794076852816,0.000177936961494222,0.000177933159646592,0.000177929362973507,0.000177925571463239,0.000177921785104097,0.000177918003884428,0.000177914227792616,0.000177910456817081,0.000177906690946279,0.000177902930168705,0.000177899174472888,0.000177895423847394,0.000177891678280824,0.000177887937761815,0.000177884202279042,0.000177880471821213,0.000177876746377072,0.000177873025935399,0.000177869310485009,0.00017786560001475,0.000177861894513508,0.000177858193970201,0.000177854498373784,0.000177850807713244,0.000177847121977604,0.00017784344115592,0.000177839765237283,0.000177836094210818,0.000177832428065683,0.000177828766791068,0.000177825110376201,0.000177821458810339,0.000177817812082775,0.000177814170182832,0.00017781053309987,0.000177806900823278,0.000177803273342481,0.000177799650646933,0.000177796032726124,0.000177792419569574,0.000177788811166835,0.000177785207507493,0.000177781608581165,0.000177778014377499,0.000177774424886174,0.000177770840096904,0.000177767259999431,0.00017776368458353,0.000177760113839006,0.000177756547755697,0.000177752986323469,0.000177749429532221,0.000177745877371882,0.000177742329832413,0.000177738786903803,0.000177735248576072,0.000177731714839272,0.000177728185683483,0.000177724661098816,0.000177721141075412,0.000177717625603441,0.000177714114673102,0.000177710608274627,0.000177707106398273,0.000177703609034328,0.000177700116173111,0.000177696627804967,0.000177693143920272,0.000177689664509431,0.000177686189562875,0.000177682719071068,0.000177679253024498,0.000177675791413685,0.000177672334229175,0.000177668881461543,0.000177665433101393,0.000177661989139355,0.000177658549566087,0.000177655114372278,0.00017765168354864,0.000177648257085916,0.000177644834974875,0.000177641417206314,0.000177638003771056,0.000177634594659953,0.000177631189863881,0.000177627789373747,0.000177624393180482,0.000177621001275043,0.000177617613648417,0.000177614230291615,0.000177610851195674,0.000177607476351659,0.00017760410575066,0.000177600739383795,0.000177597377242204,0.000177594019317058,0.00017759066559955,0.0001775873160809,0.000177583970752355,0.000177580629605185,0.000177577292630686,0.000177573959820182,0.000177570631165018,0.000177567306656568,0.000177563986286229,0.000177560670045424,0.000177557357925599,0.000177554049918227,0.000177550746014804,0.000177547446206852,0.000177544150485917,0.000177540858843568,0.000177537571271401,0.000177534287761035,0.000177531008304111,0.000177527732892298,0.000177524461517286,0.00017752119417079,0.000177517930844549,0.000177514671530324,0.000177511416219903,0.000177508164905094,0.00017750491757773,0.000177501674229668,0.000177498434852787,0.000177495199438989,0.000177491967980201,0.000177488740468372,0.000177485516895472,0.000177482297253498,0.000177479081534465,0.000177475869730414,0.000177472661833408,0.000177469457835532,0.000177466257728893,0.000177463061505621,0.000177459869157868,0.000177456680677809,0.000177453496057641,0.000177450315289581,0.00017744713836587,0.00017744396527877,0.000177440796020566,0.000177437630583563,0.000177434468960089,0.000177431311142492,0.000177428157123143,0.000177425006894434,0.000177421860448778,0.000177418717778609,0.000177415578876384,0.000177412443734577,0.000177409312345688,0.000177406184702235,0.000177403060796757,0.000177399940621815,0.000177396824169989,0.000177393711433882,0.000177390602406114,0.00017738749707933,0.000177384395446191,0.000177381297499382,0.000177378203231606,0.000177375112635587,0.000177372025704069,0.000177368942429816,0.000177365862805613,0.000177362786824262],"text":"75% limits (u)","key":null,"type":"scatter","mode":"lines","name":"","line":{"width":1.88976377952756,"color":"rgba(0,255,0,1)","dash":"solid"},"hoveron":"points","showlegend":false,"xaxis":"x","yaxis":"y","hoverinfo":"text"},{"x":[31332,32332,33332,34332,35332,36332,37332,38332,39332,40332,41332,42332,43332,44332,45332,46332,47332,48332,49332,50332,51332,52332,53332,54332,55332,56332,57332,58332,59332,60332,61332,62332,63332,64332,65332,66332,67332,68332,69332,70332,71332,72332,73332,74332,75332,76332,77332,78332,79332,80332,81332,82332,83332,84332,85332,86332,87332,88332,89332,90332,91332,92332,93332,94332,95332,96332,97332,98332,99332,100332,101332,102332,103332,104332,105332,106332,107332,108332,109332,110332,111332,112332,113332,114332,115332,116332,117332,118332,119332,120332,121332,122332,123332,124332,125332,126332,127332,128332,129332,130332,131332,132332,133332,134332,135332,136332,137332,138332,139332,140332,141332,142332,143332,144332,145332,146332,147332,148332,149332,150332,151332,152332,153332,154332,155332,156332,157332,158332,159332,160332,161332,162332,163332,164332,165332,166332,167332,168332,169332,170332,171332,172332,173332,174332,175332,176332,177332,178332,179332,180332,181332,182332,183332,184332,185332,186332,187332,188332,189332,190332,191332,192332,193332,194332,195332,196332,197332,198332,199332,200332,201332,202332,203332,204332,205332,206332,207332,208332,209332,210332,211332,212332,213332,214332,215332,216332,217332,218332,219332,220332,221332,222332,223332,224332,225332,226332,227332,228332,229332,230332,231332,232332,233332,234332,235332,236332,237332,238332,239332,240332,241332,242332,243332,244332,245332,246332,247332,248332,249332,250332,251332,252332,253332,254332,255332,256332,257332,258332,259332,260332,261332,262332,263332,264332,265332,266332,267332,268332,269332,270332,271332,272332,273332,274332,275332,276332,277332,278332,279332,280332,281332,282332,283332,284332,285332,286332,287332,288332,289332,290332,291332,292332,293332,294332,295332,296332,297332,298332,299332,300332,301332,302332,303332,304332,305332,306332,307332,308332,309332,310332,311332,312332,313332,314332,315332,316332,317332,318332,319332,320332,321332,322332,323332,324332,325332,326332,327332,328332,329332,330332,331332,332332,333332,334332,335332,336332,337332,338332,339332,340332,341332,342332,343332,344332,345332,346332,347332,348332,349332,350332,351332,352332,353332,354332,355332,356332,357332,358332,359332,360332,361332,362332,363332,364332,365332,366332,367332,368332,369332,370332,371332,372332,373332,374332,375332,376332,377332,378332,379332,380332,381332,382332,383332,384332,385332,386332,387332,388332,389332,390332,391332,392332,393332,394332,395332,396332,397332,398332,399332,400332,401332,402332,403332,404332,405332,406332,407332,408332,409332,410332,411332,412332,413332,414332,415332,416332,417332,418332,419332,420332,421332,422332,423332,424332,425332,426332,427332,428332,429332,430332,431332,432332,433332,434332,435332,436332,437332,438332,439332,440332,441332,442332,443332,444332,445332,446332,447332,448332,449332,450332,451332,452332,453332,454332,455332,456332,457332,458332,459332,460332,461332,462332,463332,464332,465332,466332,467332,468332,469332,470332,471332,472332,473332,474332,475332,476332,477332,478332,479332,480332,481332,482332,483332,484332,485332,486332,487332,488332,489332,490332,491332,492332,493332,494332,495332,496332,497332,498332,499332,500332,501332,502332,503332,504332,505332,506332,507332,508332,509332,510332,511332,512332,513332,514332,515332,516332,517332,518332,519332,520332,521332,522332,523332,524332,525332,526332,527332,528332,529332,530332,531332,532332,533332,534332,535332,536332,537332,538332,539332,540332,541332,542332,543332,544332,545332,546332,547332,548332,549332,550332,551332,552332,553332,554332,555332,556332,557332,558332,559332,560332,561332,562332,563332,564332,565332,566332,567332,568332,569332,570332,571332,572332,573332,574332,575332,576332,577332,578332,579332,580332,581332,582332,583332,584332,585332,586332,587332,588332,589332,590332,591332,592332,593332,594332,595332,596332,597332,598332,599332,600332,601332,602332,603332,604332,605332,606332,607332,608332,609332,610332,611332,612332,613332,614332,615332,616332,617332,618332,619332,620332,621332,622332,623332,624332,625332,626332,627332,628332,629332,630332,631332,632332,633332,634332,635332,636332,637332,638332,639332,640332,641332,642332,643332,644332,645332,646332,647332,648332,649332,650332,651332,652332,653332,654332,655332,656332,657332,658332,659332,660332,661332,662332,663332,664332,665332,666332,667332,668332,669332,670332,671332,672332,673332,674332,675332,676332,677332,678332,679332,680332,681332,682332,683332,684332,685332,686332,687332,688332,689332,690332,691332,692332,693332,694332,695332,696332,697332,698332,699332,700332,701332,702332,703332,704332,705332,706332,707332,708332,709332,710332,711332,712332,713332,714332,715332,716332,717332,718332,719332,720332,721332,722332,723332,724332,725332,726332,727332,728332,729332,730332,731332,732332,733332,734332,735332,736332,737332,738332,739332,740332,741332,742332,743332,744332,745332,746332,747332,748332,749332,750332,751332,752332,753332,754332,755332,756332,757332,758332,759332,760332,761332,762332,763332,764332,765332,766332,767332,768332,769332,770332,771332,772332,773332,774332,775332,776332,777332,778332,779332,780332,781332,782332,783332,784332,785332,786332,787332,788332,789332,790332,791332,792332,793332,794332,795332,796332,797332,798332,799332,800332,801332,802332,803332,804332,805332,806332,807332,808332,809332,810332,811332,812332,813332,814332,815332,816332,817332,818332,819332,820332,821332,822332,823332,824332,825332,826332,827332,828332,829332,830332,831332,832332,833332,834332,835332,836332,837332,838332,839332,840332,841332,842332,843332,844332,845332,846332,847332,848332,849332,850332,851332,852332,853332,854332,855332,856332,857332,858332,859332,860332,861332,862332,863332,864332,865332,866332,867332,868332,869332,870332,871332,872332,873332,874332,875332,876332,877332,878332,879332,880332,881332,882332,883332,884332,885332,886332,887332,888332,889332,890332,891332,892332,893332,894332,895332,896332,897332,898332,899332,900332,901332,902332,903332,904332,905332,906332,907332,908332,909332,910332,911332,912332,913332,914332,915332,916332,917332,918332,919332,920332,921332,922332,923332,924332,925332,926332,927332,928332,929332,930332,931332,932332,933332,934332,935332,936332,937332,938332,939332,940332,941332,942332,943332,944332,945332,946332,947332,948332,949332,950332,951332,952332,953332,954332,955332,956332,957332,958332,959332,960332,961332,962332,963332,964332,965332,966332,967332,968332,969332,970332,971332,972332,973332,974332,975332,976332,977332,978332,979332,980332,981332,982332,983332,984332,985332,986332,987332,988332,989332,990332,991332,992332,993332,994332,995332,996332,997332,998332,999332,1000332,1001332,1002332,1003332,1004332,1005332,1006332,1007332,1008332,1009332,1010332,1011332,1012332,1013332,1014332,1015332,1016332,1017332,1018332,1019332,1020332,1021332,1022332,1023332,1024332,1025332,1026332,1027332,1028332,1029332,1030332,1031332,1032332,1033332,1034332,1035332,1036332,1037332,1038332,1039332,1040332,1041332,1042332,1043332,1044332,1045332,1046332,1047332,1048332,1049332,1050332,1051332,1052332,1053332,1054332,1055332,1056332,1057332,1058332,1059332,1060332,1061332,1062332,1063332,1064332,1065332,1066332,1067332,1068332,1069332,1070332,1071332,1072332,1073332,1074332,1075332,1076332,1077332,1078332,1079332,1080332,1081332,1082332,1083332,1084332,1085332,1086332,1087332,1088332,1089332,1090332,1091332,1092332,1093332,1094332,1095332,1096332,1097332,1098332,1099332,1100332,1101332,1102332,1103332,1104332,1105332,1106332,1107332,1108332,1109332,1110332,1111332,1112332,1113332,1114332,1115332,1116332,1117332,1118332,1119332,1120332,1121332,1122332,1123332,1124332,1125332,1126332,1127332,1128332,1129332,1130332,1131332,1132332,1133332,1134332,1135332,1136332,1137332,1138332,1139332,1140332,1141332,1142332,1143332,1144332,1145332,1146332,1147332,1148332,1149332,1150332,1151332,1152332,1153332,1154332,1155332,1156332,1157332,1158332,1159332,1160332,1161332,1162332,1163332,1164332,1165332,1166332,1167332,1168332,1169332,1170332,1171332,1172332,1173332,1174332,1175332,1176332,1177332,1178332,1179332,1180332,1181332,1182332,1183332,1184332,1185332,1186332,1187332,1188332,1189332,1190332,1191332,1192332,1193332,1194332,1195332,1196332,1197332,1198332,1199332,1200332,1201332,1202332,1203332,1204332,1205332,1206332,1207332,1208332,1209332,1210332,1211332,1212332,1213332,1214332,1215332,1216332,1217332,1218332,1219332,1220332,1221332,1222332,1223332,1224332,1225332,1226332,1227332,1228332,1229332,1230332,1231332,1232332,1233332,1234332,1235332,1236332,1237332,1238332,1239332,1240332,1241332,1242332,1243332,1244332,1245332,1246332,1247332,1248332,1249332,1250332,1251332,1252332,1253332,1254332,1255332,1256332,1257332,1258332,1259332,1260332,1261332,1262332,1263332,1264332,1265332,1266332,1267332,1268332],"y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,2.7600842579687e-005,2.84762846085927e-005,2.93357282025859e-005,3.01796547769589e-005,3.10085257070526e-005,3.18227833882076e-005,3.26228522279889e-005,3.34091395757409e-005,3.41820365940972e-005,3.49419190766806e-005,3.56891482158762e-005,3.64240713242415e-005,3.71470225128246e-005,3.78583233294021e-005,3.85582833594035e-005,3.92472007920754e-005,3.99253629542344e-005,4.0593046813782e-005,4.12505194549821e-005,4.18980385273573e-005,4.2535852669913e-005,4.31642019122809e-005,4.37833180542467e-005,4.43934250250292e-005,4.49947392235722e-005,4.55874698410257e-005,4.6171819166507e-005,4.6747982877157e-005,4.73161503134353e-005,4.78765047405349e-005,4.84292235967357e-005,4.89744787294607e-005,4.95124366197485e-005,5.00432585958076e-005,5.05671010362752e-005,5.10841155637618e-005,5.15944492292244e-005,5.20982446876799e-005,5.25956403657327e-005,5.30867706213656e-005,5.35717658964113e-005,5.40507528620976e-005,5.45238545580367e-005,5.49911905250017e-005,5.54528769318195e-005,5.59090266966825e-005,5.63597496031694e-005,5.68051524112435e-005,5.72453389634857e-005,5.76804102868e-005,5.81104646898197e-005,5.85355978562252e-005,5.89559029341772e-005,5.93714706220533e-005,5.97823892506673e-005,6.01887448621409e-005,6.05906212855886e-005,6.09881002097642e-005,6.13812612528153e-005,6.1770182029278e-005,6.21549382144424e-005,6.25356036062077e-005,6.29122501845433e-005,6.32849481686648e-005,6.36537660720262e-005,6.40187707552283e-005,6.43800274769348e-005,6.47375999428844e-005,6.50915503530823e-005,6.54419394472508e-005,6.57888265486148e-005,6.6132269606092e-005,6.64723252349588e-005,6.68090487560541e-005,6.71424942335842e-005,6.74727145115864e-005,6.77997612491084e-005,6.81236849541554e-005,6.84445350164563e-005,6.87623597390968e-005,6.90772063690662e-005,6.93891211267606e-005,6.96981492344853e-005,7.00043349439961e-005,7.03077215631164e-005,7.06083514814691e-005,7.09062661953551e-005,7.12015063318131e-005,7.14941116718924e-005,7.17841211731688e-005,7.20715729915316e-005,7.23565045022707e-005,7.26389523204902e-005,7.29189523208723e-005,7.31965396568174e-005,7.34717487789829e-005,7.37446134532428e-005,7.40151667780893e-005,7.42834412014975e-005,7.45494685372716e-005,7.48132799808922e-005,7.50749061248819e-005,7.53343769737073e-005,7.55917219582327e-005,7.58469699497427e-005,7.6100149273547e-005,7.63512877221845e-005,7.66004125682378e-005,7.68475505767741e-005,7.70927280174234e-005,7.73359706761077e-005,7.75773038664326e-005,7.78167524407522e-005,7.80543408009193e-005,7.82900929087311e-005,7.85240322960798e-005,7.87561820748188e-005,7.89865649463539e-005,7.92152032109673e-005,7.94421187768852e-005,7.96673331690949e-005,7.98908675379217e-005,8.01127426673718e-005,8.03329789832497e-005,8.0551596561056e-005,8.07686151336748e-005,8.09840540988544e-005,8.11979325264903e-005,8.14102691657156e-005,8.16210824518041e-005,8.18303905128941e-005,8.20382111765353e-005,8.22445619760675e-005,8.24494601568335e-005,8.2652922682233e-005,8.28549662396216e-005,8.30556072460593e-005,8.32548618539139e-005,8.34527459563224e-005,8.36492751925164e-005,8.3844464953013e-005,8.40383303846774e-005,8.42308863956605e-005,8.44221476602136e-005,8.4612128623386e-005,8.48008435056072e-005,8.49883063071579e-005,8.51745308125325e-005,8.53595305946969e-005,8.55433190192432e-005,8.57259092484457e-005,8.59073142452207e-005,8.60875467769915e-005,8.62666194194628e-005,8.64445445603065e-005,8.6621334402761e-005,8.67970009691466e-005,8.69715561042997e-005,8.71450114789274e-005,8.73173785928847e-005,8.74886687783773e-005,8.76588932030907e-005,8.78280628732485e-005,8.79961886366013e-005,8.81632811853487e-005,8.83293510589949e-005,8.84944086471417e-005,8.86584641922179e-005,8.88215277921495e-005,8.89836094029698e-005,8.9144718841373e-005,8.93048657872117e-005,8.9464059785939e-005,8.9622310250999e-005,8.97796264661643e-005,8.99360175878238e-005,9.00914926472211e-005,9.02460605526453e-005,9.03997300915743e-005,9.05525099327739e-005,9.07044086283512e-005,9.08554346157657e-005,9.10055962197976e-005,9.11549016544754e-005,9.1303359024963e-005,9.14509763294077e-005,9.15977614607502e-005,9.17437222084973e-005,9.18888662604578e-005,9.20332012044436e-005,9.21767345299357e-005,9.23194736297166e-005,9.24614258014691e-005,9.26025982493444e-005,9.27429980854966e-005,9.28826323315887e-005,9.30215079202668e-005,9.31596316966062e-005,9.32970104195285e-005,9.34336507631905e-005,9.35695593183463e-005,9.37047425936825e-005,9.38392070171276e-005,9.39729589371353e-005,9.41060046239439e-005,9.42383502708108e-005,9.43700019952232e-005,9.45009658400859e-005,9.46312477748866e-005,9.47608536968382e-005,9.48897894320005e-005,9.50180607363799e-005,9.5145673297009e-005,9.52726327330051e-005,9.539894459661e-005,9.55246143742094e-005,9.56496474873344e-005,9.57740492936429e-005,9.58978250878851e-005,9.6020980102849e-005,9.614351951029e-005,9.62654484218431e-005,9.63867718899186e-005,9.6507494908581e-005,9.66276224144131e-005,9.67471592873631e-005,9.6866110351578e-005,9.69844803762206e-005,9.71022740762734e-005,9.72194961133267e-005,9.73361510963538e-005,9.74522435824723e-005,9.75677780776913e-005,9.76827590376466e-005,9.7797190868322e-005,9.79110779267586e-005,9.80244245217516e-005,9.81372349145348e-005,9.82495133194539e-005,9.83612639046273e-005,9.84724907925963e-005,9.85831980609636e-005,9.86933897430216e-005,9.88030698283691e-005,9.89122422635183e-005,9.90209109524911e-005,9.91290797574055e-005,9.92367524990523e-005,9.93439329574616e-005,9.94506248724604e-005,9.95568319442206e-005,9.96625578337983e-005,9.97678061636633e-005,9.98725805182208e-005,9.99768844443241e-005,0.000100080721451779,0.000100184095013839,0.000100287008567694,0.000100389465514952,0.000100491469222107,0.000100593023021008,0.000100694130209314,0.000100794794050944,0.000100895017776519,0.000100994804583798,0.000101094157638108,0.000101193080072763,0.000101291574989481,0.000101389645458793,0.00010148729452044,0.000101584525183778,0.000101681340428157,0.000101777743203314,0.000101873736429744,0.000101969322999073,0.000102064505774425,0.000102159287590784,0.000102253671255342,0.000102347659547857,0.00010244125522099,0.000102534461000647,0.000102627279586311,0.000102719713651371,0.000102811765843445,0.000102903438784699,0.000102994735072162,0.000103085657278032,0.000103176207949981,0.000103266389611459,0.000103356204761983,0.000103445655877432,0.000103534745410333,0.000103623475790145,0.000103711849423532,0.000103799868694643,0.000103887535965379,0.00010397485357566,0.000104061823843688,0.000104148449066204,0.000104234731518743,0.000104320673455888,0.000104406277111512,0.000104491544699028,0.000104576478411623,0.0001046610804225,0.000104745352885111,0.000104829297933384,0.000104912917681952,0.000104996214226379,0.000105079189643376,0.000105161845991021,0.000105244185308973,0.000105326209618686,0.000105407920923612,0.00010548932120941,0.00010557041244415,0.000105651196578508,0.00010573167554597,0.00010581185126302,0.000105891725629334,0.000105971300527969,0.000106050577825552,0.000106129559372459,0.000106208247003001,0.000106286642535599,0.000106364747772964,0.000106442564502269,0.00010652009449532,0.000106597339508729,0.000106674301284077,0.000106750981548081,0.000106827382012759,0.000106903504375584,0.00010697935031965,0.000107054921513822,0.000107130219612896,0.000107205246257744,0.000107280003075473,0.000107354491679566,0.00010742871367003,0.000107502670633543,0.000107576364143595,0.000107649795760626,0.00010772296703217,0.000107795879492985,0.000107868534665197,0.000107940934058425,0.000108013079169918,0.000108084971484683,0.000108156612475614,0.000108228003603619,0.000108299146317744,0.000108370042055298,0.000108440692241974,0.000108511098291969,0.000108581261608104,0.000108651183581941,0.000108720865593899,0.000108790309013367,0.000108859515198822,0.000108928485497932,0.000108997221247675,0.000109065723774441,0.000109133994394146,0.000109202034412332,0.000109269845124275,0.00010933742781509,0.000109404783759828,0.000109471914223584,0.000109538820461591,0.000109605503719322,0.000109671965232585,0.000109738206227622,0.000109804227921202,0.000109870031520713,0.000109935618224261,0.000110000989220755,0.00011006614569,0.000110131088802788,0.000110195819720985,0.000110260339597618,0.00011032464957696,0.000110388750794618,0.000110452644377618,0.000110516331444482,0.000110579813105318,0.000110643090461897,0.000110706164607733,0.000110769036628164,0.00011083170760043,0.00011089417859375,0.000110956450669399,0.000111018524880785,0.000111080402273521,0.000111142083885502,0.000111203570746975,0.000111264863880614,0.00011132596430159,0.000111386873017642,0.000111447591029148,0.000111508119329191,0.00011156845890363,0.000111628610731167,0.000111688575783411,0.000111748355024949,0.000111807949413406,0.000111867359899514,0.00011192658742717,0.000111985632933504,0.000112044497348942,0.000112103181597262,0.000112161686595659,0.000112220013254805,0.000112278162478907,0.000112336135165768,0.000112393932206842,0.000112451554487295,0.00011250900288606,0.000112566278275894,0.000112623381523433,0.000112680313489249,0.0001127370750279,0.000112793666987991,0.000112850090212218,0.000112906345537431,0.000112962433794679,0.000113018355809262,0.000113074112400785,0.000113129704383207,0.000113185132564892,0.000113240397748655,0.000113295500731815,0.00011335044230624,0.000113405223258398,0.0001134598443694,0.000113514306415053,0.000113568610165898,0.000113622756387265,0.00011367674583931,0.000113730579277065,0.000113784257450482,0.000113837781104474,0.000113891150978961,0.000113944367808911,0.000113997432324385,0.000114050345250577,0.000114103107307856,0.000114155719211809,0.000114208181673279,0.000114260495398406,0.00011431266108867,0.000114364679440924,0.000114416551147442,0.000114468276895948,0.000114519857369663,0.000114571293247338,0.00011462258520329,0.000114673733907445,0.00011472474002537,0.000114775604218311,0.000114826327143228,0.000114876909452833,0.000114927351795622,0.000114977654815913,0.000115027819153879,0.000115077845445581,0.000115127734323005,0.000115177486414093,0.000115227102342777,0.000115276582729013,0.000115325928188811,0.000115375139334268,0.000115424216773604,0.000115473161111185,0.000115521972947564,0.000115570652879505,0.000115619201500016,0.00011566761939838,0.000115715907160183,0.000115764065367348,0.000115812094598157,0.000115859995427288,0.000115907768425841,0.000115955414161364,0.000116002933197885,0.000116050326095936,0.000116097593412588,0.00011614473570147,0.0001161917535128,0.000116238647393414,0.000116285417886791,0.000116332065533076,0.000116378590869112,0.000116424994428463,0.00011647127674144,0.000116517438335126,0.000116563479733402,0.000116609401456971,0.000116655204023385,0.000116700887947065,0.000116746453739332,0.000116791901908424,0.000116837232959526,0.000116882447394786,0.000116927545713348,0.000116972528411367,0.000117017395982036,0.000117062148915607,0.000117106787699417,0.000117151312817903,0.000117195724752632,0.000117240023982318,0.000117284210982847,0.000117328286227294,0.000117372250185948,0.000117416103326333,0.000117459846113226,0.000117503479008682,0.000117547002472049,0.000117590416959994,0.000117633722926519,0.000117676920822982,0.000117720011098119,0.000117762994198061,0.000117805870566353,0.000117848640643976,0.000117891304869363,0.000117933863678421,0.000117976317504546,0.000118018666778646,0.000118060911929153,0.00011810305338205,0.000118145091560881,0.000118187026886772,0.000118228859778451,0.00011827059065226,0.00011831221992218,0.00011835374799984,0.00011839517529454,0.000118436502213265,0.000118477729160705,0.000118518856539266,0.000118559884749094,0.000118600814188083,0.000118641645251899,0.000118682378333991,0.000118723013825609,0.000118763552115818,0.000118803993591516,0.00011884433863745,0.000118884587636226,0.000118924740968332,0.000118964799012146,0.000119004762143956,0.000119044630737972,0.000119084405166343,0.000119124085799169,0.000119163673004517,0.000119203167148435,0.000119242568594967,0.000119281877706165,0.000119321094842106,0.000119360220360904,0.000119399254618722,0.000119438197969791,0.000119477050766416,0.000119515813358997,0.000119554486096036,0.000119593069324156,0.000119631563388107,0.000119669968630787,0.000119708285393247,0.000119746514014709,0.000119784654832579,0.000119822708182454,0.00011986067439814,0.000119898553811663,0.000119936346753277,0.000119974053551484,0.000120011674533039,0.000120049210022964,0.000120086660344561,0.000120124025819424,0.000120161306767448,0.000120198503506841,0.00012023561635414,0.000120272645624216,0.000120309591630288,0.000120346454683935,0.000120383235095105,0.000120419933172129,0.000120456549221729,0.000120493083549027,0.000120529536457564,0.000120565908249299,0.00012060219922463,0.000120638409682397,0.000120674539919897,0.000120710590232891,0.000120746560915618,0.000120782452260799,0.000120818264559654,0.000120853998101908,0.0001208896531758,0.000120925230068096,0.000120960729064095,0.000120996150447644,0.00012103149450114,0.000121066761505546,0.000121101951740397,0.000121137065483812,0.000121172103012498,0.000121207064601767,0.000121241950525536,0.000121276761056345,0.000121311496465358,0.000121346157022379,0.000121380742995855,0.000121415254652888,0.000121449692259242,0.000121484056079354,0.000121518346376338,0.000121552563411998,0.000121586707446836,0.000121620778740058,0.000121654777549581,0.000121688704132048,0.000121722558742827,0.000121756341636028,0.000121790053064503,0.000121823693279861,0.00012185726253247,0.000121890761071468,0.00012192418914477,0.000121957546999079,0.000121990834879885,0.000122024053031482,0.000122057201696971,0.000122090281118268,0.00012212329153611,0.000122156233190066,0.000122189106318541,0.000122221911158785,0.000122254647946899,0.000122287316917843,0.000122319918305443,0.000122352452342398,0.000122384919260287,0.000122417319289575,0.00012244965265962,0.000122481919598684,0.000122514120333931,0.000122546255091443,0.000122578324096222,0.000122610327572195,0.000122642265742225,0.000122674138828115,0.000122705947050614,0.000122737690629424,0.000122769369783208,0.000122800984729593,0.000122832535685181,0.000122864022865549,0.000122895446485261,0.000122926806757871,0.00012295810389593,0.000122989338110991,0.000123020509613617,0.000123051618613386,0.000123082665318895,0.00012311364993777,0.000123144572676668,0.000123175433741284,0.000123206233336359,0.000123236971665682,0.000123267648932096,0.000123298265337509,0.000123328821082893,0.000123359316368291,0.000123389751392826,0.000123420126354704,0.000123450441451217,0.000123480696878755,0.000123510892832802,0.000123541029507951,0.000123571107097903,0.000123601125795474,0.000123631085792601,0.000123660987280345,0.000123690830448898,0.00012372061548759,0.000123750342584887,0.000123780011928405,0.000123809623704908,0.000123839178100316,0.00012386867529971,0.000123898115487337,0.000123927498846612,0.000123956825560126,0.000123986095809651,0.000124015309776143,0.000124044467639744,0.000124073569579794,0.00012410261577483,0.000124131606402591,0.000124160541640024,0.00012418942166329,0.000124218246647764,0.000124247016768043,0.000124275732197952,0.000124304393110542,0.0001243329996781,0.000124361552072153,0.00012439005046347,0.000124418495022066,0.000124446885917211,0.000124475223317427,0.000124503507390498,0.000124531738303472,0.000124559916222665,0.000124588041313666,0.000124616113741339,0.000124644133669832,0.000124672101262574,0.000124700016682283,0.000124727880090972,0.00012475569164995,0.000124783451519823,0.000124811159860506,0.000124838816831219,0.000124866422590496,0.000124893977296186,0.000124921481105458,0.000124948934174804,0.000124976336660043,0.000125003688716327,0.00012503099049814,0.000125058242159304,0.000125085443852987,0.000125112595731697,0.000125139697947295,0.000125166750650993,0.00012519375399336,0.000125220708124325,0.000125247613193178,0.000125274469348578,0.000125301276738555,0.000125328035510508,0.000125354745811219,0.000125381407786846,0.000125408021582932,0.000125434587344408,0.000125461105215594,0.000125487575340204,0.000125513997861349,0.000125540372921542,0.000125566700662696,0.000125592981226133,0.000125619214752585,0.000125645401382195,0.000125671541254524,0.000125697634508552,0.00012572368128268,0.000125749681714736,0.000125775635941975,0.000125801544101086,0.000125827406328189,0.000125853222758845,0.000125878993528054,0.000125904718770259,0.00012593039861935,0.000125956033208668,0.000125981622671002,0.000126007167138601,0.00012603266674317,0.000126058121615873,0.000126083531887342,0.000126108897687672,0.000126134219146429,0.00012615949639265,0.000126184729554848,0.000126209918761013,0.000126235064138616,0.000126260165814611,0.000126285223915436,0.00012631023856702,0.000126335209894782,0.000126360138023635,0.000126385023077987,0.000126409865181747,0.000126434664458324,0.000126459421030632,0.000126484135021092,0.000126508806551633,0.000126533435743697,0.000126558022718239,0.000126582567595733,0.000126607070496169,0.000126631531539062,0.000126655950843448,0.000126680328527893,0.00012670466471049,0.000126728959508863,0.000126753213040171,0.000126777425421108,0.000126801596767908,0.000126825727196345,0.000126849816821737,0.000126873865758945,0.000126897874122381,0.000126921842026006,0.000126945769583332,0.000126969656907428,0.000126993504110918,0.000127017311305986,0.000127041078604378,0.000127064806117401,0.000127088493955931,0.000127112142230409,0.000127135751050848,0.000127159320526833,0.000127182850767523,0.000127206341881652,0.000127229793977535,0.000127253207163067,0.000127276581545725,0.000127299917232571,0.000127323214330255,0.000127346472945014,0.000127369693182678,0.000127392875148669,0.000127416018948004,0.000127439124685297,0.000127462192464761,0.00012748522239021,0.000127508214565062,0.000127531169092337,0.000127554086074666,0.000127576965614285,0.000127599807813042,0.000127622612772399,0.00012764538059343,0.000127668111376827,0.000127690805222899,0.000127713462231577,0.000127736082502412,0.00012775866613458,0.000127781213226881,0.000127803723877745,0.000127826198185228,0.00012784863624702,0.000127871038160441,0.000127893404022449,0.000127915733929635,0.000127938027978229,0.000127960286264102,0.000127982508882766,0.000128004695929375,0.000128026847498729,0.000128048963685276,0.00012807104458311,0.000128093090285976,0.000128115100887271,0.000128137076480046,0.000128159017157005,0.00012818092301051,0.000128202794132581,0.0001282246306149,0.000128246432548806,0.000128268200025306,0.000128289933135068,0.000128311631968429,0.000128333296615392,0.000128354927165631,0.00012837652370849,0.000128398086332986,0.00012841961512781,0.000128441110181329,0.000128462571581587,0.000128483999416306,0.000128505393772888,0.00012852675473842,0.000128548082399667,0.000128569376843084,0.000128590638154807,0.000128611866420664,0.000128633061726169,0.000128654224156528,0.000128675353796639,0.000128696450731093,0.000128717515044175,0.000128738546819869,0.000128759546141852,0.000128780513093505,0.000128801447757905,0.000128822350217835,0.000128843220555777,0.000128864058853921,0.000128884865194161,0.000128905639658099,0.000128926382327045,0.000128947093282019,0.000128967772603753,0.000128988420372691,0.00012900903666899,0.000129029621572525,0.000129050175162884,0.000129070697519375,0.000129091188721025,0.00012911164884658,0.00012913207797451,0.000129152476183004,0.00012917284354998,0.000129193180153077,0.000129213486069663,0.000129233761376835,0.000129254006151416,0.000129274220469961,0.000129294404408756,0.000129314558043822,0.00012933468145091,0.00012935477470551,0.000129374837882845,0.000129394871057879,0.000129414874305311,0.000129434847699583,0.000129454791314876,0.000129474705225114,0.000129494589503964,0.000129514444224839,0.000129534269460896,0.000129554065285038,0.000129573831769918,0.000129593568987936,0.000129613277011245,0.000129632955911746,0.000129652605761093,0.000129672226630696,0.000129691818591716,0.000129711381715072,0.000129730916071439,0.000129750421731249,0.000129769898764694,0.000129789347241725,0.000129808767232055,0.000129828158805156,0.000129847522030268,0.000129866856976391,0.000129886163712291,0.000129905442306501,0.00012992469282732,0.000129943915342817,0.000129963109920828,0.000129982276628961,0.000130001415534594,0.000130020526704876,0.000130039610206733,0.000130058666106862,0.000130077694471735,0.000130096695367602,0.000130115668860488,0.000130134615016199,0.000130153533900316,0.000130172425578203,0.000130191290115004,0.000130210127575644,0.000130228938024833,0.000130247721527062,0.000130266478146608,0.000130285207947533,0.000130303910993687,0.000130322587348706,0.000130341237076014,0.000130359860238825,0.000130378456900143,0.000130397027122762,0.000130415570969271,0.000130434088502047,0.000130452579783265,0.000130471044874891,0.00013048948383869,0.00013050789673622,0.000130526283628839,0.0001305446445777,0.000130562979643757,0.000130581288887763,0.000130599572370272,0.000130617830151638,0.00013063606229202,0.000130654268851377,0.000130672449889473,0.000130690605465878,0.000130708735639965,0.000130726840470916,0.000130744920017719,0.000130762974339168,0.00013078100349387,0.000130799007540237,0.000130816986536496,0.000130834940540681,0.000130852869610639,0.000130870773804032,0.000130888653178334,0.000130906507790831,0.000130924337698628,0.000130942142958644,0.000130959923627614,0.00013097767976209,0.000130995411418445,0.000131013118652867,0.000131030801521366,0.000131048460079772,0.000131066094383736,0.00013108370448873,0.000131101290450049,0.000131118852322813,0.000131136390161962,0.000131153904022265,0.000131171393958314,0.000131188860024527,0.000131206302275151,0.000131223720764258,0.00013124111554575,0.000131258486673357,0.00013127583420064,0.000131293158180989,0.000131310458667624,0.000131327735713601,0.000131344989371803,0.000131362219694951,0.000131379426735596,0.000131396610546125,0.000131413771178762,0.000131430908685562,0.000131448023118422,0.000131465114529072,0.000131482182969083,0.00013149922848986,0.000131516251142652,0.000131533250978544,0.000131550228048464,0.000131567182403179,0.000131584114093299,0.000131601023169276,0.000131617909681405,0.000131634773679823,0.000131651615214513,0.000131668434335302,0.000131685231091863,0.000131702005533715,0.000131718757710222,0.000131735487670597,0.000131752195463901,0.000131768881139042,0.000131785544744779,0.000131802186329718,0.000131818805942317,0.000131835403630886,0.000131851979443584,0.000131868533428423,0.000131885065633268,0.000131901576105837,0.000131918064893701,0.000131934532044286,0.000131950977604874,0.0001319674016226,0.000131983804144457,0.000132000185217295,0.000132016544887818,0.000132032883202592,0.000132049200208038,0.000132065495950437,0.000132081770475931,0.000132098023830519,0.000132114256060062,0.000132130467210283,0.000132146657326764,0.000132162826454952,0.000132178974640155,0.000132195101927544,0.000132211208362154,0.000132227293988886,0.000132243358852503,0.000132259402997634,0.000132275426468776,0.000132291429310289,0.000132307411566403,0.000132323373281213,0.000132339314498682,0.000132355235262644,0.000132371135616798,0.000132387015604716,0.000132402875269838,0.000132418714655474,0.000132434533804807,0.000132450332760888,0.000132466111566643,0.000132481870264869,0.000132497608898236,0.000132513327509288,0.000132529026140441,0.000132544704833988,0.000132560363632094,0.000132576002576801,0.000132591621710027,0.000132607221073564,0.000132622800709084,0.000132638360658132,0.000132653900962135,0.000132669421662395,0.000132684922800094,0.000132700404416292,0.000132715866551929,0.000132731309247825,0.00013274673254468,0.000132762136483075,0.000132777521103473,0.000132792886446217,0.000132808232551533,0.00013282355945953,0.0001328388672102,0.000132854155843417,0.000132869425398942,0.000132884675916417,0.00013289990743537,0.000132915119995215,0.000132930313635251,0.000132945488394663,0.000132960644312521,0.000132975781427786,0.000132990899779302,0.000133005999405802,0.000133021080345909,0.000133036142638133,0.000133051186320872,0.000133066211432415,0.000133081218010941,0.000133096206094518,0.000133111175721105,0.000133126126928553,0.000133141059754603,0.000133155974236888,0.000133170870412935,0.000133185748320161,0.000133200607995878,0.00013321544947729,0.000133230272801495,0.000133245078005488,0.000133259865126154,0.000133274634200276,0.000133289385264531,0.000133304118355493,0.000133318833509631,0.000133333530763311,0.000133348210152795,0.000133362871714244,0.000133377515483715,0.000133392141497163,0.000133406749790444,0.000133421340399308,0.000133435913359408,0.000133450468706295,0.00013346500647542,0.000133479526702134,0.000133494029421689,0.000133508514669237,0.000133522982479833,0.000133537432888432,0.000133551865929891,0.000133566281638971,0.000133580680050333,0.000133595061198543,0.00013360942511807,0.000133623771843287,0.000133638101408471,0.000133652413847802,0.000133666709195366,0.000133680987485155,0.000133695248751064,0.000133709493026896,0.00013372372034636,0.000133737930743069,0.000133752124250546,0.000133766300902219,0.000133780460731424,0.000133794603771404,0.000133808730055313,0.00013382283961621,0.000133836932487064],"text":"99.9% limits (l)","key":null,"type":"scatter","mode":"lines","name":"","line":{"width":1.88976377952756,"color":"rgba(255,0,0,1)","dash":"dash"},"hoveron":"points","showlegend":false,"xaxis":"x","yaxis":"y","hoverinfo":"text"},{"x":[31332,32332,33332,34332,35332,36332,37332,38332,39332,40332,41332,42332,43332,44332,45332,46332,47332,48332,49332,50332,51332,52332,53332,54332,55332,56332,57332,58332,59332,60332,61332,62332,63332,64332,65332,66332,67332,68332,69332,70332,71332,72332,73332,74332,75332,76332,77332,78332,79332,80332,81332,82332,83332,84332,85332,86332,87332,88332,89332,90332,91332,92332,93332,94332,95332,96332,97332,98332,99332,100332,101332,102332,103332,104332,105332,106332,107332,108332,109332,110332,111332,112332,113332,114332,115332,116332,117332,118332,119332,120332,121332,122332,123332,124332,125332,126332,127332,128332,129332,130332,131332,132332,133332,134332,135332,136332,137332,138332,139332,140332,141332,142332,143332,144332,145332,146332,147332,148332,149332,150332,151332,152332,153332,154332,155332,156332,157332,158332,159332,160332,161332,162332,163332,164332,165332,166332,167332,168332,169332,170332,171332,172332,173332,174332,175332,176332,177332,178332,179332,180332,181332,182332,183332,184332,185332,186332,187332,188332,189332,190332,191332,192332,193332,194332,195332,196332,197332,198332,199332,200332,201332,202332,203332,204332,205332,206332,207332,208332,209332,210332,211332,212332,213332,214332,215332,216332,217332,218332,219332,220332,221332,222332,223332,224332,225332,226332,227332,228332,229332,230332,231332,232332,233332,234332,235332,236332,237332,238332,239332,240332,241332,242332,243332,244332,245332,246332,247332,248332,249332,250332,251332,252332,253332,254332,255332,256332,257332,258332,259332,260332,261332,262332,263332,264332,265332,266332,267332,268332,269332,270332,271332,272332,273332,274332,275332,276332,277332,278332,279332,280332,281332,282332,283332,284332,285332,286332,287332,288332,289332,290332,291332,292332,293332,294332,295332,296332,297332,298332,299332,300332,301332,302332,303332,304332,305332,306332,307332,308332,309332,310332,311332,312332,313332,314332,315332,316332,317332,318332,319332,320332,321332,322332,323332,324332,325332,326332,327332,328332,329332,330332,331332,332332,333332,334332,335332,336332,337332,338332,339332,340332,341332,342332,343332,344332,345332,346332,347332,348332,349332,350332,351332,352332,353332,354332,355332,356332,357332,358332,359332,360332,361332,362332,363332,364332,365332,366332,367332,368332,369332,370332,371332,372332,373332,374332,375332,376332,377332,378332,379332,380332,381332,382332,383332,384332,385332,386332,387332,388332,389332,390332,391332,392332,393332,394332,395332,396332,397332,398332,399332,400332,401332,402332,403332,404332,405332,406332,407332,408332,409332,410332,411332,412332,413332,414332,415332,416332,417332,418332,419332,420332,421332,422332,423332,424332,425332,426332,427332,428332,429332,430332,431332,432332,433332,434332,435332,436332,437332,438332,439332,440332,441332,442332,443332,444332,445332,446332,447332,448332,449332,450332,451332,452332,453332,454332,455332,456332,457332,458332,459332,460332,461332,462332,463332,464332,465332,466332,467332,468332,469332,470332,471332,472332,473332,474332,475332,476332,477332,478332,479332,480332,481332,482332,483332,484332,485332,486332,487332,488332,489332,490332,491332,492332,493332,494332,495332,496332,497332,498332,499332,500332,501332,502332,503332,504332,505332,506332,507332,508332,509332,510332,511332,512332,513332,514332,515332,516332,517332,518332,519332,520332,521332,522332,523332,524332,525332,526332,527332,528332,529332,530332,531332,532332,533332,534332,535332,536332,537332,538332,539332,540332,541332,542332,543332,544332,545332,546332,547332,548332,549332,550332,551332,552332,553332,554332,555332,556332,557332,558332,559332,560332,561332,562332,563332,564332,565332,566332,567332,568332,569332,570332,571332,572332,573332,574332,575332,576332,577332,578332,579332,580332,581332,582332,583332,584332,585332,586332,587332,588332,589332,590332,591332,592332,593332,594332,595332,596332,597332,598332,599332,600332,601332,602332,603332,604332,605332,606332,607332,608332,609332,610332,611332,612332,613332,614332,615332,616332,617332,618332,619332,620332,621332,622332,623332,624332,625332,626332,627332,628332,629332,630332,631332,632332,633332,634332,635332,636332,637332,638332,639332,640332,641332,642332,643332,644332,645332,646332,647332,648332,649332,650332,651332,652332,653332,654332,655332,656332,657332,658332,659332,660332,661332,662332,663332,664332,665332,666332,667332,668332,669332,670332,671332,672332,673332,674332,675332,676332,677332,678332,679332,680332,681332,682332,683332,684332,685332,686332,687332,688332,689332,690332,691332,692332,693332,694332,695332,696332,697332,698332,699332,700332,701332,702332,703332,704332,705332,706332,707332,708332,709332,710332,711332,712332,713332,714332,715332,716332,717332,718332,719332,720332,721332,722332,723332,724332,725332,726332,727332,728332,729332,730332,731332,732332,733332,734332,735332,736332,737332,738332,739332,740332,741332,742332,743332,744332,745332,746332,747332,748332,749332,750332,751332,752332,753332,754332,755332,756332,757332,758332,759332,760332,761332,762332,763332,764332,765332,766332,767332,768332,769332,770332,771332,772332,773332,774332,775332,776332,777332,778332,779332,780332,781332,782332,783332,784332,785332,786332,787332,788332,789332,790332,791332,792332,793332,794332,795332,796332,797332,798332,799332,800332,801332,802332,803332,804332,805332,806332,807332,808332,809332,810332,811332,812332,813332,814332,815332,816332,817332,818332,819332,820332,821332,822332,823332,824332,825332,826332,827332,828332,829332,830332,831332,832332,833332,834332,835332,836332,837332,838332,839332,840332,841332,842332,843332,844332,845332,846332,847332,848332,849332,850332,851332,852332,853332,854332,855332,856332,857332,858332,859332,860332,861332,862332,863332,864332,865332,866332,867332,868332,869332,870332,871332,872332,873332,874332,875332,876332,877332,878332,879332,880332,881332,882332,883332,884332,885332,886332,887332,888332,889332,890332,891332,892332,893332,894332,895332,896332,897332,898332,899332,900332,901332,902332,903332,904332,905332,906332,907332,908332,909332,910332,911332,912332,913332,914332,915332,916332,917332,918332,919332,920332,921332,922332,923332,924332,925332,926332,927332,928332,929332,930332,931332,932332,933332,934332,935332,936332,937332,938332,939332,940332,941332,942332,943332,944332,945332,946332,947332,948332,949332,950332,951332,952332,953332,954332,955332,956332,957332,958332,959332,960332,961332,962332,963332,964332,965332,966332,967332,968332,969332,970332,971332,972332,973332,974332,975332,976332,977332,978332,979332,980332,981332,982332,983332,984332,985332,986332,987332,988332,989332,990332,991332,992332,993332,994332,995332,996332,997332,998332,999332,1000332,1001332,1002332,1003332,1004332,1005332,1006332,1007332,1008332,1009332,1010332,1011332,1012332,1013332,1014332,1015332,1016332,1017332,1018332,1019332,1020332,1021332,1022332,1023332,1024332,1025332,1026332,1027332,1028332,1029332,1030332,1031332,1032332,1033332,1034332,1035332,1036332,1037332,1038332,1039332,1040332,1041332,1042332,1043332,1044332,1045332,1046332,1047332,1048332,1049332,1050332,1051332,1052332,1053332,1054332,1055332,1056332,1057332,1058332,1059332,1060332,1061332,1062332,1063332,1064332,1065332,1066332,1067332,1068332,1069332,1070332,1071332,1072332,1073332,1074332,1075332,1076332,1077332,1078332,1079332,1080332,1081332,1082332,1083332,1084332,1085332,1086332,1087332,1088332,1089332,1090332,1091332,1092332,1093332,1094332,1095332,1096332,1097332,1098332,1099332,1100332,1101332,1102332,1103332,1104332,1105332,1106332,1107332,1108332,1109332,1110332,1111332,1112332,1113332,1114332,1115332,1116332,1117332,1118332,1119332,1120332,1121332,1122332,1123332,1124332,1125332,1126332,1127332,1128332,1129332,1130332,1131332,1132332,1133332,1134332,1135332,1136332,1137332,1138332,1139332,1140332,1141332,1142332,1143332,1144332,1145332,1146332,1147332,1148332,1149332,1150332,1151332,1152332,1153332,1154332,1155332,1156332,1157332,1158332,1159332,1160332,1161332,1162332,1163332,1164332,1165332,1166332,1167332,1168332,1169332,1170332,1171332,1172332,1173332,1174332,1175332,1176332,1177332,1178332,1179332,1180332,1181332,1182332,1183332,1184332,1185332,1186332,1187332,1188332,1189332,1190332,1191332,1192332,1193332,1194332,1195332,1196332,1197332,1198332,1199332,1200332,1201332,1202332,1203332,1204332,1205332,1206332,1207332,1208332,1209332,1210332,1211332,1212332,1213332,1214332,1215332,1216332,1217332,1218332,1219332,1220332,1221332,1222332,1223332,1224332,1225332,1226332,1227332,1228332,1229332,1230332,1231332,1232332,1233332,1234332,1235332,1236332,1237332,1238332,1239332,1240332,1241332,1242332,1243332,1244332,1245332,1246332,1247332,1248332,1249332,1250332,1251332,1252332,1253332,1254332,1255332,1256332,1257332,1258332,1259332,1260332,1261332,1262332,1263332,1264332,1265332,1266332,1267332,1268332],"y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.000311528497307388,0.000310653055278482,0.000309793611684489,0.000308949685110116,0.000308120814180023,0.000307306556498868,0.000306506487659086,0.000305720200311334,0.000304947303292978,0.000304187420810394,0.000303440191671199,0.000302705268562834,0.000301982317374251,0.000301271016557673,0.000300571056527672,0.000299882139095,0.000299203976932841,0.000298536293073293,0.000297878820432093,0.000297231301359718,0.000296593487217162,0.000295965137974794,0.000295346021832828,0.000294735914862046,0.000294134600663503,0.000293541870046049,0.000292957520720568,0.000292381357009918,0.00029181318957364,0.00029125283514654,0.000290700116290339,0.000290154861157614,0.000289616903267327,0.000289086081291268,0.0002885622388508,0.000288045224323313,0.000287534890657851,0.000287031095199395,0.000286533699521342,0.000286042569265709,0.000285557573990664,0.000285078587024977,0.000284605485329038,0.000284138149362073,0.000283676462955256,0.000283220313190393,0.000282769590283906,0.000282324187475832,0.000281884000923589,0.000281448929600275,0.000281018875197255,0.00028059374203085,0.000280173436952898,0.000279757869265022,0.000279346950636408,0.000278940595024934,0.000278538718601487,0.000278141239677311,0.00027774807863426,0.000277359157857797,0.000276974401672633,0.000276593736280867,0.000276217089702532,0.00027584439171841,0.000275475573815049,0.000275110569131847,0.00027474931241014,0.000274391739944191,0.000274037789533993,0.000273687400439824,0.00027334051333846,0.000272997070280983,0.000272657014652116,0.000272320291131021,0.000271986845653491,0.000271656625375489,0.000271329578637967,0.00027100565493292,0.000270684804870619,0.000270366980147978,0.000270052133518009,0.000269740218760315,0.00026943119065259,0.000269125004943079,0.000268821618323959,0.000268520988405606,0.00026822307369172,0.000267927833555262,0.000267635228215183,0.000267345218713906,0.000267057766895544,0.000266772835384804,0.000266490387566585,0.000266210387566203,0.000265932800230258,0.000265657591108092,0.000265384726433832,0.000265114173108986,0.000264845898685578,0.000264579871349803,0.000264316059906183,0.000264054433762193,0.000263794962913368,0.000263537617928842,0.000263282369937332,0.000263029190613528,0.000262778052164891,0.000262528927318837,0.000262281789310301,0.000262036611869652,0.000261793369210967,0.000261552036020642,0.000261312587446323,0.000261074999086156,0.000260839246978344,0.000260605307590995,0.000260373157812256,0.000260142774940721,0.000259914136676108,0.00025968722111019,0.00025946200671798,0.000259238472349153,0.000259016597219703,0.000258796360903825,0.000258577743326019,0.0002583607247534,0.000258145285788221,0.000257931407360585,0.00025771907072136,0.000257508257435271,0.000257298949374181,0.00025709112871054,0.000256884777911008,0.000256679879730242,0.000256476417204842,0.000256274373647453,0.000256073732641016,0.000255874478033161,0.000255676593930753,0.000255480064694559,0.000255284874934062,0.000255091009502398,0.000254898453491415,0.000254707192226862,0.000254517211263689,0.000254328496381468,0.000254141033579917,0.000253954809074543,0.000253769809292378,0.000253586020867832,0.000253403430638629,0.000253222025641854,0.000253041793110084,0.000252862720467612,0.000252684795326769,0.000252508005484314,0.000252332338917929,0.000252157783782775,0.000251984328408148,0.00025181196129419,0.000251640671108698,0.000251470446683984,0.000251301277013827,0.000251133151250474,0.000250966058701726,0.00025079998882808,0.000250634931239933,0.000250470875694857,0.000250307812094926,0.000250145730484105,0.000249984621045702,0.000249824474099863,0.000249665280101136,0.000249507029636076,0.000249349713420911,0.000249193322299251,0.000249037847239854,0.00024888327933443,0.000248729609795501,0.000248576829954301,0.000248424931258724,0.000248273905271309,0.000248123743667277,0.0002479744382326,0.000247825980862112,0.000247678363557667,0.000247531578426325,0.000247385617678578,0.000247240473626617,0.000247096138682631,0.000246952605357139,0.000246809866257359,0.000246667914085606,0.000246526741637731,0.000246386341801578,0.000246246707555486,0.000246107831966808,0.000245969708190469,0.000245832329467547,0.000245695689123885,0.000245559780568729,0.000245424597293393,0.000245290132869948,0.00024515638094994,0.000245023335263131,0.000244890989616264,0.000244759337891852,0.000244628374046989,0.000244498092112189,0.000244368486190237,0.000244239550455075,0.000244111279150695,0.000243983666590066,0.00024385670715407,0.000243730395290465,0.000243604725512866,0.000243479692399741,0.000243355290593432,0.00024323151479919,0.000243108359784226,0.000242985820376785,0.000242863891465232,0.000242742567997157,0.000242621844978494,0.000242501717472662,0.000242382180599712,0.000242263229535497,0.000242144859510854,0.000242027065810802,0.000241909843773748,0.000241793188790721,0.000241677096304603,0.000241561561809384,0.000241446580849428,0.000241332149018753,0.000241218261960316,0.000241104915365324,0.00024099210497254,0.000240879826567621,0.000240768075982448,0.000240656849094479,0.000240546141826111,0.000240435950144053,0.000240326270058706,0.000240217097623557,0.000240108428934584,0.00024000026012967,0.000239892587388023,0.000239785406929614,0.000239678715014615,0.000239572507942854,0.000239466782053277,0.000239361533723412,0.000239256759368854,0.000239152455442751,0.000239048618435296,0.000238945244873236,0.000238842331319381,0.000238739874372123,0.000238637870664968,0.000238536316866067,0.000238435209677761,0.000238334545836131,0.000238234322110556,0.000238134535303277,0.000238035182248967,0.000237936259814312,0.000237837764897594,0.000237739694428283,0.000237642045366635,0.000237544814703297,0.000237447999458918,0.000237351596683761,0.000237255603457331,0.000237160016888002,0.00023706483411265,0.000236970052296292,0.000236875668631733,0.000236781680339218,0.000236688084666085,0.000236594878886428,0.000236502060300764,0.000236409626235704,0.00023631757404363,0.000236225901102376,0.000236134604814913,0.000236043682609043,0.000235953131937094,0.000235862950275616,0.000235773135125093,0.000235683684009643,0.000235594594476742,0.00023550586409693,0.000235417490463543,0.000235329471192432,0.000235241803921696,0.000235154486311415,0.000235067516043387,0.000234980890820871,0.000234894608368332,0.000234808666431187,0.000234723062775563,0.000234637795188047,0.000234552861475452,0.000234468259464575,0.000234383987001964,0.000234300041953691,0.000234216422205123,0.000234133125660696,0.000234050150243699,0.000233967493896055,0.000233885154578102,0.000233803130268389,0.000233721418963464,0.000233640018677665,0.000233558927442926,0.000233478143308567,0.000233397664341105,0.000233317488624055,0.000233237614257742,0.000233158039359106,0.000233078762061523,0.000232999780514616,0.000232921092884074,0.000232842697351476,0.000232764592114111,0.000232686775384806,0.000232609245391755,0.000232532000378346,0.000232455038602998,0.000232378358338994,0.000232301957874316,0.000232225835511491,0.000232149989567425,0.000232074418373253,0.000231999120274179,0.000231924093629331,0.000231849336811602,0.00023177484820751,0.000231700626217045,0.000231626669253532,0.00023155297574348,0.000231479544126449,0.000231406372854905,0.00023133346039409,0.000231260805221878,0.00023118840582865,0.000231116260717157,0.000231044368402392,0.000230972727411461,0.000230901336283456,0.000230830193569331,0.000230759297831777,0.000230688647645101,0.000230618241595106,0.000230548078278972,0.000230478156305135,0.000230408474293177,0.000230339030873708,0.000230269824688253,0.000230200854389143,0.0002301321186394,0.000230063616112634,0.000229995345492929,0.000229927305474743,0.0002298594947628,0.000229791912071985,0.000229724556127247,0.000229657425663491,0.000229590519425484,0.000229523836167753,0.00022945737465449,0.000229391133659453,0.000229325111965873,0.000229259308366362,0.000229193721662814,0.000229128350666321,0.000229063194197075,0.000228998251084287,0.00022893352016609,0.000228869000289458,0.000228804690310116,0.000228740589092457,0.000228676695509457,0.000228613008442593,0.000228549526781757,0.000228486249425178,0.000228423175279342,0.000228360303258911,0.000228297632286646,0.000228235161293326,0.000228172889217676,0.00022811081500629,0.000228048937613554,0.000227987256001573,0.0002279257691401,0.000227864476006461,0.000227803375585485,0.000227742466869433,0.000227681748857927,0.000227621220557884,0.000227560880983445,0.000227500729155908,0.000227440764103664,0.000227380984862126,0.000227321390473669,0.000227261979987562,0.000227202752459906,0.000227143706953571,0.000227084842538133,0.000227026158289813,0.000226967653291416,0.00022690932663227,0.000226851177408168,0.000226793204721307,0.000226735407680233,0.00022667778539978,0.000226620337001015,0.000226563061611181,0.000226505958363642,0.000226449026397826,0.000226392264859175,0.000226335672899085,0.000226279249674857,0.000226222994349644,0.000226166906092396,0.000226110984077814,0.00022605522748629,0.000225999635503868,0.000225944207322183,0.00022588894213842,0.00022583383915526,0.000225778897580835,0.000225724116628677,0.000225669495517675,0.000225615033472023,0.000225560729721177,0.00022550658349981,0.000225452594047765,0.00022539876061001,0.000225345082436593,0.000225291558782601,0.000225238188908114,0.000225184972078164,0.000225131907562691,0.000225078994636498,0.000225026232579219,0.000224973620675266,0.000224921158213796,0.000224868844488669,0.000224816678798405,0.000224764660446151,0.000224712788739634,0.000224661062991127,0.000224609482517412,0.000224558046639738,0.000224506754683785,0.00022445560597963,0.000224404599861705,0.000224353735668764,0.000224303012743847,0.000224252430434242,0.000224201988091453,0.000224151685071162,0.000224101520733197,0.000224051494441494,0.00022400160556407,0.000223951853472982,0.000223902237544298,0.000223852757158062,0.000223803411698264,0.000223754200552807,0.000223705123113472,0.00022365617877589,0.000223607366939511,0.00022355868700757,0.000223510138387059,0.000223461720488695,0.000223413432726892,0.000223365274519728,0.000223317245288918,0.000223269344459787,0.000223221571461234,0.000223173925725711,0.000223126406689191,0.000223079013791139,0.000223031746474487,0.000222984604185606,0.000222937586374275,0.000222890692493661,0.000222843922000285,0.000222797274353999,0.000222750749017963,0.000222704345458612,0.000222658063145635,0.000222611901551949,0.000222565860153673,0.000222519938430104,0.000222474135863691,0.00022242845194001,0.000222382886147743,0.000222337437978651,0.00022229210692755,0.000222246892492289,0.000222201794173727,0.000222156811475708,0.000222111943905039,0.000222067190971468,0.000222022552187658,0.000221978027069172,0.000221933615134443,0.000221889315904757,0.000221845128904228,0.000221801053659781,0.000221757089701127,0.000221713236560742,0.000221669493773849,0.000221625860878393,0.000221582337415026,0.000221538922927081,0.000221495616960557,0.000221452419064093,0.000221409328788956,0.000221366345689014,0.000221323469320722,0.000221280699243099,0.000221238035017712,0.000221195476208654,0.000221153022382529,0.00022111067310843,0.000221068427957922,0.000221026286505025,0.000220984248326194,0.000220942313000303,0.000220900480108624,0.000220858749234815,0.000220817119964895,0.000220775591887235,0.000220734164592536,0.00022069283767381,0.000220651610726371,0.000220610483347809,0.000220569455137982,0.000220528525698992,0.000220487694635176,0.000220446961553084,0.000220406326061466,0.000220365787771257,0.000220325346295559,0.000220285001249625,0.000220244752250849,0.000220204598918743,0.000220164540874929,0.000220124577743119,0.000220084709149103,0.000220044934720732,0.000220005254087906,0.000219965666882558,0.00021992617273864,0.000219886771292109,0.00021984746218091,0.000219808245044969,0.000219769119526171,0.000219730085268353,0.000219691141917284,0.000219652289120659,0.000219613526528078,0.000219574853791039,0.000219536270562919,0.000219497776498968,0.000219459371256288,0.000219421054493828,0.000219382825872366,0.000219344685054496,0.000219306631704621,0.000219268665488935,0.000219230786075412,0.000219192993133798,0.000219155286335591,0.000219117665354036,0.000219080129864111,0.000219042679542514,0.000219005314067651,0.000218968033119628,0.000218930836380234,0.000218893723532935,0.000218856694262859,0.000218819748256787,0.00021878288520314,0.00021874610479197,0.000218709406714946,0.000218672790665347,0.000218636256338048,0.000218599803429511,0.000218563431637776,0.000218527140662445,0.000218490930204678,0.000218454799967178,0.000218418749654184,0.000218382778971458,0.000218346887626276,0.000218311075327421,0.000218275341785167,0.000218239686711275,0.000218204109818979,0.00021816861082298,0.000218133189439431,0.000218097845385935,0.000218062578381529,0.000218027388146678,0.000217992274403263,0.000217957236874577,0.000217922275285308,0.000217887389361539,0.00021785257883073,0.000217817843421717,0.000217783182864696,0.00021774859689122,0.000217714085234187,0.000217679647627833,0.000217645283807722,0.000217610993510738,0.000217576776475077,0.000217542632440239,0.000217508561147017,0.000217474562337494,0.000217440635755027,0.000217406781144248,0.000217372998251047,0.000217339286822572,0.000217305646607214,0.000217272077354606,0.000217238578815608,0.000217205150742305,0.000217171792887997,0.00021713850500719,0.000217105286855593,0.000217072138190104,0.000217039058768807,0.000217006048350965,0.000216973106697009,0.000216940233568534,0.00021690742872829,0.000216874691940177,0.000216842022969232,0.000216809421581632,0.000216776887544677,0.000216744420626788,0.000216712020597501,0.000216679687227455,0.000216647420288392,0.000216615219553144,0.000216583084795632,0.000216551015790853,0.00021651901231488,0.00021648707414485,0.00021645520105896,0.000216423392836461,0.000216391649257651,0.000216359970103867,0.000216328355157482,0.000216296804201894,0.000216265317021526,0.000216233893401814,0.000216202533129204,0.000216171235991145,0.000216140001776084,0.000216108830273458,0.000216077721273689,0.00021604667456818,0.000216015689949305,0.000215984767210407,0.000215953906145791,0.000215923106550716,0.000215892368221394,0.000215861690954979,0.000215831074549566,0.000215800518804182,0.000215770023518784,0.000215739588494249,0.000215709213532371,0.000215678898435858,0.000215648643008321,0.000215618447054273,0.000215588310379124,0.000215558232789172,0.000215528214091601,0.000215498254094474,0.00021546835260673,0.000215438509438177,0.000215408724399485,0.000215378997302188,0.00021534932795867,0.000215319716182167,0.000215290161786759,0.000215260664587365,0.000215231224399739,0.000215201841040464,0.000215172514326949,0.000215143244077424,0.000215114030110933,0.000215084872247331,0.000215055770307281,0.000215026724112245,0.000214997733484484,0.000214968798247051,0.000214939918223785,0.000214911093239311,0.000214882323119032,0.000214853607689123,0.000214824946776534,0.000214796340208975,0.000214767787814922,0.000214739289423605,0.000214710844865009,0.000214682453969864,0.000214654116569648,0.000214625832496577,0.000214597601583604,0.00021456942366441,0.00021454129857341,0.000214513226145736,0.000214485206217243,0.000214457238624502,0.000214429323204792,0.000214401459796103,0.000214373648237126,0.000214345888367252,0.000214318180026569,0.000214290523055856,0.000214262917296579,0.000214235362590889,0.000214207858781617,0.000214180405712271,0.000214153003227032,0.000214125651170748,0.000214098349388936,0.000214071097727771,0.000214043896034089,0.000214016744155378,0.00021398964193978,0.000213962589236082,0.000213935585893715,0.000213908631762751,0.000213881726693897,0.000213854870538497,0.000213828063148521,0.000213801304376567,0.000213774594075856,0.000213747932100229,0.000213721318304143,0.000213694752542667,0.000213668234671481,0.000213641764546871,0.000213615342025726,0.000213588966965533,0.000213562639224379,0.000213536358660942,0.00021351012513449,0.00021348393850488,0.000213457798632551,0.000213431705378523,0.000213405658604395,0.000213379658172339,0.0002133537039451,0.000213327795785989,0.000213301933558886,0.00021327611712823,0.000213250346359021,0.000213224621116816,0.000213198941267725,0.000213173306678408,0.000213147717216073,0.000213122172748474,0.000213096673143906,0.000213071218271202,0.000213045807999733,0.000213020442199403,0.000212995120740646,0.000212969843494425,0.000212944610332227,0.000212919421126062,0.000212894275748459,0.000212869174072465,0.000212844115971639,0.000212819101320055,0.000212794129992293,0.00021276920186344,0.000212744316809088,0.000212719474705328,0.000212694675428751,0.000212669918856443,0.000212645204865983,0.000212620533335442,0.000212595904143378,0.000212571317168836,0.000212546772291342,0.000212522269390906,0.000212497808348013,0.000212473389043627,0.000212449011359182,0.000212424675176585,0.000212400380378212,0.000212376126846904,0.000212351914465967,0.000212327743119167,0.00021230361269073,0.000212279523065339,0.00021225547412813,0.000212231465764694,0.000212207497861069,0.000212183570303743,0.000212159682979647,0.000212135835776157,0.000212112028581089,0.000212088261282697,0.000212064533769674,0.000212040845931144,0.000212017197656666,0.000211993588836227,0.000211970019360242,0.000211946489119552,0.000211922998005423,0.00021189954590954,0.000211876132724008,0.00021185275834135,0.000211829422654504,0.00021180612555682,0.000211782866942061,0.000211759646704397,0.000211736464738406,0.000211713320939071,0.000211690215201778,0.000211667147422314,0.000211644117496865,0.000211621125322014,0.000211598170794738,0.000211575253812409,0.00021155237427279,0.000211529532074033,0.000211506727114676,0.000211483959293645,0.000211461228510248,0.000211438534664176,0.000211415877655498,0.000211393257384663,0.000211370673752495,0.000211348126660194,0.00021132561600933,0.000211303141701847,0.000211280703640055,0.000211258301726634,0.000211235935864626,0.000211213605957441,0.000211191311908846,0.000211169053622973,0.00021114683100431,0.0002111246439577,0.000211102492388346,0.000211080376201799,0.000211058295303965,0.000211036249601099,0.000211014238999804,0.000210992263407029,0.00021097032273007,0.000210948416876565,0.000210926545754494,0.000210904709272175,0.000210882907338269,0.000210861139861769,0.000210839406752007,0.000210817707918646,0.000210796043271683,0.000210774412721444,0.000210752816178585,0.000210731253554089,0.000210709724759265,0.000210688229705746,0.000210666768305488,0.00021064534047077,0.000210623946114187,0.000210602585148655,0.000210581257487408,0.000210559963043992,0.000210538701732268,0.000210517473466411,0.000210496278160906,0.000210475115730547,0.000210453986090436,0.000210432889155982,0.0002104118248429,0.000210390793067206,0.000210369793745223,0.000210348826793571,0.00021032789212917,0.000210306989669241,0.000210286119331298,0.000210265281033154,0.000210244474692914,0.000210223700228976,0.00021020295756003,0.000210182246605056,0.000210161567283322,0.000210140919514384,0.000210120303218085,0.00021009971831455,0.000210079164724191,0.0002100586423677,0.00021003815116605,0.000210017691040495,0.000209997261912565,0.000209976863704071,0.000209956496337095,0.000209936159733998,0.000209915853817412,0.00020989557851024,0.000209875333735659,0.000209855119417114,0.000209834935478319,0.000209814781843253,0.000209794658436165,0.000209774565181565,0.00020975450200423,0.000209734468829196,0.000209714465581764,0.000209694492187492,0.000209674548572199,0.000209654634661961,0.000209634750383111,0.000209614895662236,0.000209595070426179,0.000209575274602037,0.000209555508117157,0.000209535770899139,0.00020951606287583,0.000209496383975329,0.000209476734125982,0.000209457113256379,0.000209437521295359,0.000209417958172003,0.000209398423815636,0.000209378918155826,0.000209359441122381,0.00020933999264535,0.00020932057265502,0.000209301181081919,0.000209281817856807,0.000209262482910684,0.000209243176174784,0.000209223897580575,0.000209204647059755,0.000209185424544258,0.000209166229966247,0.000209147063258114,0.000209127924352482,0.000209108813182199,0.000209089729680342,0.000209070673780213,0.00020905164541534,0.000209032644519473,0.000209013671026587,0.000208994724870877,0.000208975805986759,0.000208956914308872,0.000208938049772071,0.000208919212311431,0.000208900401862242,0.000208881618360013,0.000208862861740467,0.000208844131939542,0.000208825428893388,0.000208806752538369,0.000208788102811061,0.00020876947964825,0.000208750882986932,0.000208732312764313,0.000208713768917805,0.000208695251385028,0.000208676760103811,0.000208658295012184,0.000208639856048385,0.000208621443150855,0.000208603056258237,0.000208584695309376,0.000208566360243319,0.000208548050999312,0.000208529767516804,0.000208511509735437,0.000208493277595055,0.000208475071035698,0.000208456889997602,0.000208438734421197,0.00020842060424711,0.000208402499416159,0.000208384419869357,0.000208366365547907,0.000208348336393205,0.000208330332346838,0.000208312353350579,0.000208294399346395,0.000208276470276436,0.000208258566083043,0.000208240686708741,0.000208222832096244,0.000208205002188447,0.000208187196928431,0.000208169416259461,0.000208151660124985,0.00020813392846863,0.000208116221234208,0.000208098538365709,0.000208080879807303,0.000208063245503339,0.000208045635398345,0.000208028049437026,0.000208010487564263,0.000207992949725113,0.00020797543586481,0.000207957945928761,0.000207940479862548,0.000207923037611924,0.000207905619122817,0.000207888224341325,0.000207870853213718,0.000207853505686435,0.000207836181706086,0.000207818881219451,0.000207801604173474,0.000207784350515272,0.000207767120192124,0.000207749913151479,0.00020773272934095,0.000207715568708314,0.000207698431201513,0.000207681316768653,0.000207664225358003,0.000207647156917993,0.000207630111397215,0.000207613088744423,0.000207596088908531,0.000207579111838611,0.000207562157483896,0.000207545225793776,0.000207528316717799,0.00020751143020567,0.000207494566207252,0.000207477724672562,0.000207460905551773,0.000207444108795212,0.000207427334353361,0.000207410582176853,0.000207393852216478,0.000207377144423174,0.000207360458748033,0.000207343795142296,0.000207327153557357,0.000207310533944758,0.000207293936256189,0.000207277360443491,0.000207260806458652,0.000207244274253807,0.000207227763781238,0.000207211274993374,0.000207194807842789,0.000207178362282201,0.000207161938264475,0.000207145535742618,0.00020712915466978,0.000207112794999257,0.000207096456684483,0.000207080139679037,0.000207063843936638,0.000207047569411144,0.000207031316056556,0.000207015083827013,0.000206998872676792,0.000206982682560311,0.000206966513432123,0.00020695036524692,0.000206934237959531,0.000206918131524921,0.000206902045898189,0.000206885981034572,0.000206869936889441,0.000206853913418299,0.000206837910576786,0.000206821928320672,0.000206805966605863,0.000206790025388393,0.000206774104624431,0.000206758204270277,0.000206742324282359,0.000206726464617237,0.000206710625231601,0.000206694806082268,0.000206679007126187,0.000206663228320432,0.000206647469622206,0.000206631730988839,0.000206616012377787,0.000206600313746634,0.000206584635053087,0.000206568976254981,0.000206553337310274,0.000206537718177048,0.000206522118813511,0.000206506539177992,0.000206490979228943,0.00020647543892494,0.00020645991822468,0.000206444417086981,0.000206428935470783,0.000206413473335146,0.00020639803063925,0.000206382607342395,0.000206367203404,0.000206351818783602,0.000206336453440859,0.000206321107335542,0.000206305780427545,0.000206290472676875,0.000206275184043658,0.000206259914488133,0.000206244663970658,0.000206229432451705,0.00020621421989186,0.000206199026251824,0.000206183851492412,0.000206168695574554,0.000206153558459289,0.000206138440107773,0.000206123340481273,0.000206108259541166,0.000206093197248943,0.000206078153566203,0.00020606312845466,0.000206048121876134,0.000206033133792557,0.00020601816416597,0.000206003212958522,0.000205988280132472,0.000205973365650187,0.00020595846947414,0.000205943591566914,0.000205928731891198,0.000205913890409786,0.00020589906708558,0.000205884261881587,0.000205869474760921,0.0002058547056868,0.000205839954622544,0.000205825221531582,0.000205810506377444,0.000205795809123765,0.00020578112973428,0.000205766468172831,0.00020575182440336,0.000205737198389912,0.000205722590096632,0.000205707999487767,0.000205693426527667,0.00020567887118078,0.000205664333411655,0.000205649813184941,0.000205635310465386,0.000205620825217838,0.000205606357407242,0.000205591906998643,0.000205577473957184,0.000205563058248104,0.000205548659836742,0.000205534278688532,0.000205519914769005,0.000205505568043788,0.000205491238478604,0.000205476926039273,0.000205462630691709,0.00020544835240192,0.000205434091136011,0.000205419846860179,0.000205405619540715,0.000205391409144006,0.000205377215636529,0.000205363038984856,0.000205348879155652,0.000205334736115671,0.000205320609831762,0.000205306500270865,0.000205292407400011],"text":"99.9% limits (u)","key":null,"type":"scatter","mode":"lines","name":"","line":{"width":1.88976377952756,"color":"rgba(255,0,0,1)","dash":"dash"},"hoveron":"points","showlegend":false,"xaxis":"x","yaxis":"y","hoverinfo":"text"},{"x":[-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,-30549.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35,1330840.35],"y":[0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538,0.000169564669943538],"text":"baseline 2e-04","key":null,"type":"scatter","mode":"lines","name":"","line":{"width":1.88976377952756,"color":"rgba(245,211,63,1)","dash":"dashdot"},"hoveron":"points","showlegend":false,"xaxis":"x","yaxis":"y","hoverinfo":"text"}],"layout":{"margin":{"t":24.5235920852359,"r":7.30593607305936,"b":44.0570084405701,"l":80.0332088003321},"plot_bgcolor":"rgba(255,255,255,1)","paper_bgcolor":"rgba(255,255,255,1)","font":{"color":"rgba(0,0,0,1)","family":"","size":14.6118721461187},"xaxis":{"domain":[0,1],"type":"linear","autorange":false,"tickmode":"array","range":[-30549.35,1330840.35],"ticktext":["$0","$500,000","$1,000,000"],"tickvals":[3.63797880709171e-012,500000,1000000],"ticks":"outside","tickcolor":"rgba(51,51,51,1)","ticklen":3.65296803652968,"tickwidth":0.66417600664176,"showticklabels":true,"tickfont":{"color":"rgba(77,77,77,1)","family":"","size":18.5969281859693},"tickangle":-0,"showline":true,"linecolor":"rgba(0,0,0,1)","linewidth":0.66417600664176,"showgrid":true,"gridcolor":"rgba(235,235,235,1)","gridwidth":0.66417600664176,"zeroline":false,"anchor":"y","title":"Population","titlefont":{"color":"rgba(253,98,94,1)","family":"","size":13.2835201328352},"hoverformat":".2f"},"yaxis":{"domain":[0,1],"type":"linear","autorange":false,"tickmode":"array","range":[1.27652392165292e-005,0.000326364100670546],"ticktext":["0.0001","0.0002","0.0003"],"tickvals":[0.0001,0.0002,0.0003],"ticks":"outside","tickcolor":"rgba(51,51,51,1)","ticklen":3.65296803652968,"tickwidth":0.66417600664176,"showticklabels":true,"tickfont":{"color":"rgba(77,77,77,1)","family":"","size":18.5969281859693},"tickangle":-0,"showline":true,"linecolor":"rgba(0,0,0,1)","linewidth":0.66417600664176,"showgrid":true,"gridcolor":"rgba(235,235,235,1)","gridwidth":0.66417600664176,"zeroline":false,"anchor":"x","title":"Ratio of Number","titlefont":{"color":"rgba(253,98,94,1)","family":"","size":13.2835201328352},"hoverformat":".2f"},"shapes":[{"type":"rect","fillcolor":null,"line":{"color":null,"width":0,"linetype":[]},"yref":"paper","xref":"paper","x0":0,"x1":1,"y0":0,"y1":1}],"showlegend":false,"legend":{"bgcolor":"rgba(255,255,255,1)","bordercolor":"transparent","borderwidth":1.88976377952756,"font":{"color":"rgba(0,0,0,1)","family":"","size":11.689497716895}},"hovermode":"closest"},"source":"A","config":{"modeBarButtonsToAdd":[],"modeBarButtonsToRemove":["toImage","sendDataToCloud","zoom2d","pan","pan2d","select2d","lasso2d","hoverClosestCartesian","hoverCompareCartesian","sendDataToCloud"],"staticPlot":false,"editable":false,"sendData":false,"showLink":false,"displaylogo":false},"base_url":"https://plot.ly"},"evals":[],"jsHooks":[]}</script><script type="application/htmlwidget-sizing" data-for="htmlwidget-6711">{"viewer":{"width":"100%","height":400,"padding":15,"fill":true},"browser":{"width":"100%","height":400,"padding":40,"fill":true}}</script>
</body>
</html>